Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for diamonds (0.1 sec)

  1. android/guava/src/com/google/common/collect/Lists.java

       * use the {@code ArrayList} {@linkplain ArrayList#ArrayList() constructor} directly, taking
       * advantage of <a href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       */
      @GwtCompatible(serializable = true)
      public static <E extends @Nullable Object> ArrayList<E> newArrayList() {
        return new ArrayList<>();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Lists.java

       * use the {@code ArrayList} {@linkplain ArrayList#ArrayList() constructor} directly, taking
       * advantage of <a href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       */
      @GwtCompatible(serializable = true)
      public static <E extends @Nullable Object> ArrayList<E> newArrayList() {
        return new ArrayList<>();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  3. src/archive/tar/writer_test.go

    				Mode:     0640,
    				Uid:      73025,
    				Gid:      5000,
    				Uname:    "dsymonds",
    				Gname:    "eng",
    				ModTime:  time.Unix(1246508266, 0),
    			}, nil},
    			testWrite{"Kilts", 5, nil},
    
    			testHeader{Header{
    				Typeflag: TypeReg,
    				Name:     "small2.txt",
    				Size:     11,
    				Mode:     0640,
    				Uid:      73025,
    				Uname:    "dsymonds",
    				Gname:    "eng",
    				Gid:      5000,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    			}
    			c := b.Preds[0].Block()
    			d := b.Preds[1].Block()
    
    			// Find their common predecessor block (the one that branches based on wb on/off).
    			// It might be a diamond pattern, or one of the blocks in the diamond pattern might
    			// be missing.
    			var decisionBlock *ssa.Block
    			if len(c.Preds) == 1 && c.Preds[0].Block() == d {
    				decisionBlock = d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. src/net/mail/message.go

    	// mailbox = name-addr / addr-spec
    	// group = display-name ":" [group-list] ";" [CFWS]
    
    	// addr-spec has a more restricted grammar than name-addr,
    	// so try parsing it first, and fallback to name-addr.
    	// TODO(dsymonds): Is this really correct?
    	spec, err := p.consumeAddrSpec()
    	if err == nil {
    		var displayName string
    		p.skipSpace()
    		if !p.empty() && p.peek() == '(' {
    			displayName, err = p.consumeDisplayNameComment()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top