Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 73 for Inits (0.03 sec)

  1. pkg/apis/core/v1/helper/helpers.go

    	return resource.ParseQuantity(pageSize)
    }
    
    // HugePageUnitSizeFromByteSize returns hugepage size has the format.
    // `size` must be guaranteed to divisible into the largest units that can be expressed.
    // <size><unit-prefix>B (1024 = "1KB", 1048576 = "1MB", etc).
    func HugePageUnitSizeFromByteSize(size int64) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

                }
    
                @Override
                public void progress(BuildOperationDescriptor descriptor, long progress, long total, String units, String status) {
                    LOGGER.info("Progress: {} ({} / {} {} - {})", descriptor.getDisplayName(), progress, total, units, status);
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    	Error   *apiservercel.Error
    	// If true, the compiled expression contains a reference to the identifier "oldSelf".
    	UsesOldSelf bool
    	// Represents the worst-case cost of the compiled expression in terms of CEL's cost units, as used by cel.EstimateCost.
    	MaxCost uint64
    	// MaxCardinality represents the worse case number of times this validation rule could be invoked if contained under an
    	// unbounded map or list in an OpenAPIv3 schema.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

        return WalkResult::advance();
      });
    }
    
    // Populates non-quantized ops from `module_op` to `results`. After going
    // through the quantization passes, non-quantized quantizable units remain as
    // `TF::XlaCallModuleOp` with a callee's prefix of `composite_`.
    void PopulateNonQuantizedResults(ModuleOp module_op,
                                     QuantizationResults& results) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    This allows Gradle to fully utilize the resources available and complete builds faster.
    
    [[worker_api]]
    == The Worker API
    The Worker API provides the ability to break up the execution of a task action into discrete units of work and then execute that work concurrently and asynchronously.
    
    == Worker API example
    The best way to understand how to use the API is to go through the process of converting an existing custom task to use the Worker API:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    	// The ID of the sandbox.
    	id string
    	// Creation time for the sandbox.
    	createTime time.Time
    	// If true, the sandbox is ready or still has containers.
    	active bool
    }
    
    // evictUnit is considered for eviction as units of (UID, container name) pair.
    type evictUnit struct {
    	// UID of the pod.
    	uid types.UID
    	// Name of the container in the pod.
    	name string
    }
    
    type containersByEvictUnit map[evictUnit][]containerGCInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. guava-gwt/pom.xml

                Let's take the warnings for one module, c.g.c.base.testModule, as an example:
    
                  [INFO] Validating units:
                  [INFO]    Ignored 53 units with compilation errors in first pass.
                  [INFO] Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/gradient_checker.cc

      struct BaseUnitsForType<TYPE> {                                   \
        static const std::vector<TYPE>& values() {                      \
          static std::vector<TYPE>* units = new std::vector<TYPE> INIT; \
          return *units;                                                \
        }                                                               \
      }
    
    SET_BASE_UNITS_FOR_TYPE(float, {1});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	}
    	// Add numeric tags
    	if format == nil {
    		format = defaultLabelFormat
    	}
    	for k, nvals := range numLabel {
    		units := numUnit[k]
    		for i, v := range nvals {
    			var t *Tag
    			if len(units) > 0 {
    				t = numericTags.findOrAddTag(format(v, units[i]), units[i], v)
    			} else {
    				t = numericTags.findOrAddTag(format(v, k), k, v)
    			}
    			if flat {
    				t.FlatDiv += dw
    				t.Flat += w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top