Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,544 for units (0.05 sec)

  1. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/AbstractBuildScanPluginPerformanceTest.groovy

            baselineResults.results.addAll(rawResults.collect {
                new MeasuredOperation([totalTime: Amount.valueOf(it.totalTime.value + shift, it.totalTime.units), exception: it.exception])
            })
            return baselineResults
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/internal/singleflight/singleflight.go

    	// mutex held before the WaitGroup is done, and are read but
    	// not written after the WaitGroup is done.
    	dups  int
    	chans []chan<- Result
    }
    
    // Group represents a class of work and forms a namespace in
    // which units of work can be executed with duplicate suppression.
    type Group struct {
    	mu sync.Mutex       // protects m
    	m  map[string]*call // lazily initialized
    }
    
    // Result holds the results of Do, so they can be passed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 20:49:56 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // allow you to define the test pattern without knowing what the type
    // parameters are.  The defined pattern can be instantiated with
    // different types any number of times, in any number of translation
    // units.
    //
    // If you are designing an interface or concept, you can define a
    // suite of type-parameterized tests to verify properties that any
    // valid implementation of the interface/concept should have.  Then,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		putDelimitedString(l)
    		values := sample.NumLabel[l]
    		putNumber(uint64(len(values)))
    		for _, v := range values {
    			putNumber(uint64(v))
    		}
    		units := sample.NumUnit[l]
    		putNumber(uint64(len(units)))
    		for _, v := range units {
    			putDelimitedString(v)
    		}
    	}
    
    	return sampleKey(buf.String())
    }
    
    type sampleKey string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/helper.go

    	for _, spec := range info.Spec.CustomMetrics {
    		udmMap[spec.Name] = &specVal{
    			ref: statsapi.UserDefinedMetricDescriptor{
    				Name:  spec.Name,
    				Type:  statsapi.UserDefinedMetricType(spec.Type),
    				Units: spec.Units,
    			},
    			valType: spec.Format,
    		}
    	}
    	for _, stat := range info.Stats {
    		for name, values := range stat.CustomMetrics {
    			specVal, ok := udmMap[name]
    			if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    				cgc.removeOldestN(ctx, unit, len(unit)) // Remove all.
    				delete(evictUnits, key)
    			}
    		}
    	}
    
    	// Enforce max containers per evict unit.
    	if gcPolicy.MaxPerPodContainer >= 0 {
    		cgc.enforceMaxContainersPerEvictUnit(ctx, evictUnits, gcPolicy.MaxPerPodContainer)
    	}
    
    	// Enforce max total number of containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

    // `xla_call_module_op` is a quantizable unit, then a `QuantizationResult` will
    // be returned with its `name` field set to the callee's name. The `method`
    // field will be set to `NoQuantization` because remaining `xla_call_module_op`s
    // means they are not quantized. Returns `std::nullopt` if `xla_call_module_op`
    // is not a quantizable unit.
    std::optional<QuantizationResult> GetQuantizationResult(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/iexport.go

    // index table, which allows efficient random access of individual
    // declarations and inline function bodies. In turn, this allows
    // avoiding unnecessary work for compilation units that import large
    // packages.
    //
    //
    // The top-level data format is structured as:
    //
    //     Header struct {
    //         Tag        byte   // 'i'
    //         Version    uvarint
    //         StringSize uvarint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    This is the fastest isolation mode because it requires the least overhead to set up and execute the work item.
    However, it will use a single shared classloader for all units of work.
    This means that each unit of work can affect one another through static class state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Queues.java

       * @param buffer where to add the transferred elements
       * @param numElements the number of elements to be waited for
       * @param timeout how long to wait before giving up, in units of {@code unit}
       * @param unit a {@code TimeUnit} determining how to interpret the timeout parameter
       * @return the number of elements transferred
       * @throws InterruptedException if interrupted while waiting
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top