Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for diamonds (0.44 sec)

  1. staging/src/k8s.io/api/README.md

    ## Purpose
    
    This library is the canonical location of the Kubernetes API definition. Most likely interaction with this repository is as a dependency of client-go.
    
    It is published separately to avoid diamond dependency problems for users who
    depend on more than one of `k8s.io/client-go`, `k8s.io/apimachinery`,
    `k8s.io/apiserver`...
    
    ## Recommended Use
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. src/encoding/json/example_test.go

    		Name   string
    		Number int
    	}
    	roads := []Road{
    		{"Diamond Fork", 29},
    		{"Sheep Creek", 51},
    	}
    
    	b, err := json.Marshal(roads)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	var out bytes.Buffer
    	json.Indent(&out, b, "=", "\t")
    	out.WriteTo(os.Stdout)
    	// Output:
    	// [
    	// =	{
    	// =		"Name": "Diamond Fork",
    	// =		"Number": 29
    	// =	},
    	// =	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  3. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    des.br desa.id desi design design.aero design.museum det.br deta.app deta.dev detroit.museum dev dev-myqnapcloud.com dev.br dev.static.land dev.vu development.run devices.resinstaging.io df.gov.br df.leg.br dgca.aero dh.bytemark.co.uk dhl diadem.cloud diamonds dielddanuorri.no diet digick.jp digital dinosaur.museum direct direct.quickconnect.cn direct.quickconnect.to directory discordsays.com discordsez.com discount discourse.group discourse.team discover discovery.museum dish diskstation.eu diskstation.me...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    stdout 'test/dep$'
    
    # Here we have 3 main packages, a, b, and nopgo, where a and b each has
    # its own default.pgo profile, and nopgo has none.
    # All 3 main packages import dep and dep2, both of which then import dep3
    # (a diamond-shape import graph).
    -- go.mod --
    module test
    go 1.20
    -- a/a.go --
    package main
    import _ "test/dep"
    import _ "test/dep2"
    func main() {}
    -- a/a_test.go --
    package main
    import "testing"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      First came ten soldiers carrying clubs; these were all shaped
    like the three gardeners, oblong and flat, with their hands and
    feet at the corners:  next the ten courtiers; these were
    ornamented all over with diamonds, and walked two and two, as the
    soldiers did.  After these came the royal children; there were
    ten of them, and the little dears came jumping merrily along hand
    in hand, in couples:  they were all ornamented with hearts.  Next
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/branchelim_test.go

    			boolType := c.config.Types.Bool
    			intType := c.config.Types.Int32
    
    			// The control flow here is totally bogus,
    			// but a dead cycle seems like the only plausible
    			// way to arrive at a diamond CFG that is also a loop.
    			fun := c.Fun("entry",
    				Bloc("entry",
    					Valu("start", OpInitMem, types.TypeMem, 0, nil),
    					Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 24 15:51:15 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      First came ten soldiers carrying clubs; these were all shaped
    like the three gardeners, oblong and flat, with their hands and
    feet at the corners:  next the ten courtiers; these were
    ornamented all over with diamonds, and walked two and two, as the
    soldiers did.  After these came the royal children; there were
    ten of them, and the little dears came jumping merrily along hand
    in hand, in couples:  they were all ornamented with hearts.  Next
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
       * use the {@code HashSet} constructor directly, taking advantage of <a
       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       */
      public static <E extends @Nullable Object> HashSet<E> newHashSet() {
        return new HashSet<>();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top