Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 131 for Inits (0.07 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		//   Option a: Set HostConfig.CpuPercent. The units are whole percent of the total CPU capacity of the system, meaning the resolution
    		//      is different based on the number of cores.
    		//   Option b: Set HostConfig.NanoCpus integer <int64> - CPU quota in units of 10e-9 CPUs. Moby scales this to the Windows job object
    		//      resolution of 1-10000, so it's higher resolution than option a.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/qos_container_manager_linux.go

    */
    
    package cm
    
    import (
    	"fmt"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    
    	"k8s.io/apimachinery/pkg/util/wait"
    
    	units "github.com/docker/go-units"
    	libcontainercgroups "github.com/opencontainers/runc/libcontainer/cgroups"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    
    	"k8s.io/kubernetes/pkg/api/v1/resource"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. 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)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/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: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top