Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 486 for gold (0.04 sec)

  1. pkg/volume/util/util_test.go

    			volume: createVolumeSpecWithMountOption("good-mount-opts", "", v1.PersistentVolumeSpec{
    				PersistentVolumeSource: v1.PersistentVolumeSource{
    					NFS: &v1.NFSVolumeSource{Server: "localhost", Path: "/srv", ReadOnly: false},
    				},
    			}),
    			expectedMountList: []string{},
    			systemOptions:     nil,
    		},
    		"vol-with-sys-opts": {
    			volume: createVolumeSpecWithMountOption("good-mount-opts", "ro,nfsvers=3", v1.PersistentVolumeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. src/internal/trace/gc.go

    		// time at which procs changed.
    		time int64
    		// n is the number of procs at that point.
    		n int
    	}
    	out := [][]MutatorUtil{}
    	stw := 0
    	ps := []perP{}
    	inGC := make(map[GoID]bool)
    	states := make(map[GoID]GoState)
    	bgMark := make(map[GoID]bool)
    	procs := []procsCount{}
    	seenSync := false
    
    	// Helpers.
    	handleSTW := func(r Range) bool {
    		return flags&UtilSTW != 0 && isGCSTW(r)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashSet.java

      /**
       * Creates a {@code CompactHashSet} instance, with a high enough "initial capacity" that it
       * <i>should</i> hold {@code expectedSize} elements without growth.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
       * @return a new, empty {@code CompactHashSet} with enough capacity to hold {@code expectedSize}
       *     elements without resizing
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    Caching those tasks would even waste good resources by storing all those redundant results in the cache.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

                    classpath = files()
                }"""}
    
                ${requiredSourceCompatibility()}
            """.stripIndent()
        }
    
        def "analyze good code"() {
            goodCode()
    
            expect:
            succeeds("check")
            file("build/reports/pmd/main.xml").exists()
            file("build/reports/pmd/test.xml").exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. .teamcity/performance-tests-ci.json

          "coverage" : {
            "per_day" : [ "linux", "macOs", "windows" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.cold daemon",
        "groups" : [ {
          "testProject" : "largeEmptyMultiProjectDeclarativeDsl",
          "coverage" : {
            "per_day" : [ "linux", "macOs", "windows" ]
          }
        } ]
      }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  7. src/internal/trace/event.go

    		switch s.Resource.Kind {
    		case ResourceGoroutine:
    			id := s.Resource.Goroutine()
    			old, new := s.Goroutine()
    			fmt.Fprintf(&sb, " GoID=%d %s->%s", id, old, new)
    		case ResourceProc:
    			id := s.Resource.Proc()
    			old, new := s.Proc()
    			fmt.Fprintf(&sb, " ProcID=%d %s->%s", id, old, new)
    		}
    		if s.Stack != NoStack {
    			fmt.Fprintln(&sb)
    			fmt.Fprintln(&sb, "TransitionStack=")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/UnsignedBytes.java

           *
           * And, no, defining (final or not) local variables out of the loop still isn't as good
           * because the null check on the theUnsafe object remains inside the loop and
           * BYTE_ARRAY_BASE_OFFSET doesn't get constant-folded.
           *
           * The compiler can treat static final fields as compile-time constants and can constant-fold
           * them while (final or not) local variables are run time values.
           */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/CompactHashMap.java

      /**
       * Creates a {@code CompactHashMap} instance, with a high enough "initial capacity" that it
       * <i>should</i> hold {@code expectedSize} elements without growth.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
       * @return a new, empty {@code CompactHashMap} with enough capacity to hold {@code expectedSize}
       *     elements without resizing
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

      // Move transposes to the beginning of the block and try to fold them.
      pm.addPass(std::make_unique<MoveTransposesPass>(
          MoveTransposeDirection::kBegin, !options.skip_fold_transpose_in_ops));
    
      // Move transposes to the end of the block and try to fold them.
      pm.addPass(std::make_unique<MoveTransposesPass>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top