Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,232 for notC (0.07 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	swapControllerAvailabilityOnce.Do(func() {
    		const warn = "Failed to detect the availability of the swap controller, assuming not available"
    		p := "/sys/fs/cgroup/memory/memory.memsw.limit_in_bytes"
    		if isCgroup2UnifiedMode() {
    			// memory.swap.max does not exist in the cgroup root, so we check /sys/fs/cgroup/<SELF>/memory.swap.max
    			_, unified, err := cgroups.ParseCgroupFileUnified("/proc/self/cgroup")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    You can signify that a task is not to be cached by adding the `@DisableCachingByDefault` annotation to it.
    You can also give a human-readable reason for not caching the task by default.
    The annotation can be used on its own, or together with `@CacheableTask`.
    
    NOTE: This annotation is only for documenting the reason behind not caching the task by default.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. cmd/object-api-datatypes.go

    	{"BETWEEN_256_KB_AND_512_KB", 256 * humanize.KiByte, 512*humanize.KiByte - 1}, // not exported, for support use only
    	{"BETWEEN_512_KB_AND_1_MB", 512 * humanize.KiByte, humanize.MiByte - 1},       // not exported, for support use only
    	{"BETWEEN_1024B_AND_1_MB", humanize.KiByte, humanize.MiByte - 1},
    	{"BETWEEN_1_MB_AND_10_MB", humanize.MiByte, humanize.MiByte*10 - 1},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. pkg/model/proxy.go

    	// Labels specifies the set of workload instance (ex: k8s pod) labels associated with this node.
    	// It contains both StaticLabels and pod labels if any, it is a superset of StaticLabels.
    	// Note: it is not meant to be used during xds generation.
    	Labels map[string]string `json:"LABELS,omitempty"`
    
    	// StaticLabels specifies the set of labels from `ISTIO_METAJSON_LABELS`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. pilot/pkg/xds/workload_test.go

    	// We expect a removal because the policy was deleted
    	// Note that policy1 was not removed because its config was not updated (i.e. this is a partial push)
    	deletePeerAuthentication(s, "policy2", "ns")
    	expectAddedAndRemoved(ads.ExpectResponse(), nil, []string{"ns/converted_peer_authentication_policy2"})
    
    	// Irrelevant update (pod is in the default namespace and not "ns") shouldn't push
    	createPod(s, "pod", "sa", "127.0.0.1", "node")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    Invoking the `check` task on the above configured build should show output similar to:
    
    [listing]
    ----
    include::{snippetsPath}/testing/test-suite-plugin/tests/checkTaskOutput.out[]
    ----
    
    Note that the `integrationTest` test suite does not run until after the `test` test suite completes.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      Value BacktrackValue(Value value);
    
     private:
      // Returns the analysis for the given region (analyzing the region if it has
      // not yet been analyzed).
      const InfoT& GetOrCreateAnalysis(Region& region) {
        auto it = info_map_.find(&region);
        if (it == info_map_.end()) {
          // Note: Keep object construction and insertion separate. If we use
          // emplace() to construct and insert in a single shot, when analyzing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/resolver.go

    	// so far. Used to avoid duplicate entries in pkg.imports. Allocate and populate
    	// it (pkg.imports may not be empty if we are checking test files incrementally).
    	// Note that pkgImports is keyed by package (and thus package path), not by an
    	// importKey value. Two different importKey values may map to the same package
    	// which is why we cannot use the check.impMap here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/unsafe/unsafe.go

    //
    // Note that both conversions must appear in the same expression, with only
    // the intervening arithmetic between them:
    //
    //	// INVALID: uintptr cannot be stored in variable
    //	// before conversion back to Pointer.
    //	u := uintptr(p)
    //	p = unsafe.Pointer(u + offset)
    //
    // Note that the pointer must point into an allocated object, so it may not be nil.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         * Tells whether to run the compiler in its own process. Note that this does
         * not necessarily mean that a new process will be created for each compile task.
         * Defaults to {@code false}.
         */
        @Input
        public boolean isFork() {
            return fork;
        }
    
        /**
         * Sets whether to run the compiler in its own process. Note that this does
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top