Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,352 for notC (0.05 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. 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)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
       * <p>This method is not type-safe, as it may be called on elements that are not mutually
       * comparable.
       *
       * @throws ClassCastException if the elements are not mutually comparable
       * @throws NullPointerException if any of {@code elements} is null
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

    namespace mlir {
    namespace TF {
    namespace {
    
    // A collection of Resource IDs. Note that `kUnknownResourceId` is smaller than
    // all other resource IDs which are nonnegative (see check above) so it will
    // always be the first element of a `ResourceIdSet` (we make use of this).
    using ResourceIdSet = llvm::SmallSet<ResourceId, 8>;
    
    // Note that we cannot simply define a `static const llvm::SmallSet` here
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    						nc := NewNamespaceController(client, m.caBundleWatcher)
    						// Start informers again. This fixes the case where informers for namespace do not start,
    						// as we create them only after acquiring the leader lock
    						// Note: stop here should be the overall pilot stop, NOT the leader election stop. We are
    						// basically lazy loading the informer, if we stop it when we lose the lock we will never
    						// recreate it again.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. JavadocStyleGuide.md

    ```java
    /**
     * argument is a specifier that is relative to the url argument.
     * <p>
     * This method always returns immediately, whether or not the
     */
    ```
    
    HTML tags for other block-level elements, such as `<ul>` or `<table>`, are not preceded with `<p>`.
    
    ### 1.1.4 Symbols
    
    Entities for the less than symbol (<) and the greater than symbol (>) should be written as `&lt`; and `&gt;`. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pilot/pkg/model/service.go

    	TargetPortName string
    }
    
    type ServiceInfo struct {
    	*workloadapi.Service
    	// LabelSelectors for the Service. Note these are only used internally, not sent over XDS
    	LabelSelector
    	// PortNames provides a mapping of ServicePort -> port names. Note these are only used internally, not sent over XDS
    	PortNames map[int32]ServicePortName
    	// Source is the type that introduced this service.
    	Source kind.Kind
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. pilot/pkg/xds/delta.go

    	// Envoy asks for it or not (See https://github.com/envoyproxy/envoy/issues/33607 for more details).
    	// Without this logic, there are cases where the clusters we send could stay warming forever,
    	// expecting an EDS response. Note that in SotW, Envoy sends an EDS request after the delayed
    	// CDS request; however, this is not guaranteed in delta, and has been observed to cause issues
    	// with EDS and SDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

                    return "java-compilation-error";
                case WARNING:
                case MANDATORY_WARNING:
                    return "java-compilation-warning";
                case NOTE:
                    return "java-compilation-note";
                case OTHER:
                    return "java-compilation-problem";
                default:
                    return "unknown-java-compilation-problem";
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top