代码搜索:Making

找到约 2,505 项符合「Making」的源代码

代码结果 2,505
www.eeworm.com/read/100085/15885684

in makefile.in

# # $Id: Makefile.in,v 1.14 1998/02/17 09:51:45 mdejonge Exp $ # # $Source: /home/mdejonge/CVS/projects/modem/Makefile.in,v $ # $Revision: 1.14 $ # Author: Merijn de Jonge # Email: mdejonge@w
www.eeworm.com/read/275831/10794117

rb 07 - making sure a sorted array stays sorted.rb

class SortedArray < Array def initialize(*args, &sort_by) @sort_by = sort_by || Proc.new { |x,y| x y } super(*args) sort! &sort_by end def insert(i, v) # The next line cou
www.eeworm.com/read/127767/14335959

txt e348. making a collection read-only.txt

Making a collection read-only involves wrapping the collection in another object whose mutation methods all throw UnsupportedOperationException. List stuff = Arrays.asList(new String[]{"a", "b"}
www.eeworm.com/read/127767/14337314

txt e553. making the browser visit a url.txt

// See also e551 The Quintessential Applet try { URL url = new URL(getDocumentBase(), "http://hostname.com/page.html"); applet.getAppletContext().showDocument(url); }
www.eeworm.com/read/127767/14337342

txt e641. making a component a drop target.txt

public class DropTargetComponent extends JComponent implements DropTargetListener { public DropTargetComponent() { new DropTarget(this, this); } public void dra
www.eeworm.com/read/127767/14337557

txt e625. making a gridbaglayout fill the container.txt

By default, a gridbag layout arranges its components in the smallest area that satisfies the preferred sizes of the components. If the container is larger than this area, the cluster of components is
www.eeworm.com/read/127767/14337629

txt e561. making a frame non-resizable.txt

By default, a frame can be resized by the user. Use setResizable(false) to freeze a frame's size. Frame frame = new Frame(); frame.setResizable(false); // Get the current resizab