Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 650 for opform (0.2 sec)

  1. staging/src/k8s.io/api/node/v1beta1/types_swagger_doc_generated.go

    	"overhead":   "overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-nod...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/node/v1beta1/generated.proto

      // For example, a handler called "runc" might specify that the runc OCI
      // runtime (using native Linux containers) will be used to run the containers
      // in a pod.
      // The handler must be lowercase, conform to the DNS Label (RFC 1123) requirements,
      // and is immutable.
      optional string handler = 2;
    
      // overhead represents the resource overhead associated with running a pod for a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcess.java

                        throw new ExecException(format("Never received a connection from %s.", execHandle));
                    }
                }
            } finally {
                lock.unlock();
            }
    
            // Inform the exec handle to clear the startup context, so that it can be garbage collected
            // This may contain references to tasks, projects, and builds which we don't want to keep around
            execHandle.removeStartupContext();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/node/v1alpha1/types_swagger_doc_generated.go

    	"overhead":       "overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/node/v1alpha1/generated.proto

      // For example, a handler called "runc" might specify that the runc OCI
      // runtime (using native Linux containers) will be used to run the containers
      // in a pod.
      // The runtimeHandler must be lowercase, conform to the DNS Label (RFC 1123)
      // requirements, and is immutable.
      optional string runtimeHandler = 1;
    
      // overhead represents the resource overhead associated with running a pod for a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/node/v1beta1/types.go

    	// For example, a handler called "runc" might specify that the runc OCI
    	// runtime (using native Linux containers) will be used to run the containers
    	// in a pod.
    	// The handler must be lowercase, conform to the DNS Label (RFC 1123) requirements,
    	// and is immutable.
    	Handler string `json:"handler" protobuf:"bytes,2,opt,name=handler"`
    
    	// overhead represents the resource overhead associated with running a pod for a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/CaseFormat.java

        this.wordSeparator = wordSeparator;
      }
    
      /**
       * Converts the specified {@code String str} from this format to the specified {@code format}. A
       * "best effort" approach is taken; if {@code str} does not conform to the assumed format, then
       * the behavior of this method is undefined but we make a reasonable effort at converting anyway.
       */
      public final String to(CaseFormat format, String str) {
        checkNotNull(format);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/node/v1/types.go

    	// For example, a handler called "runc" might specify that the runc OCI
    	// runtime (using native Linux containers) will be used to run the containers
    	// in a pod.
    	// The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements,
    	// and is immutable.
    	Handler string `json:"handler" protobuf:"bytes,2,opt,name=handler"`
    
    	// overhead represents the resource overhead associated with running a pod for a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/node/v1alpha1/types.go

    	// For example, a handler called "runc" might specify that the runc OCI
    	// runtime (using native Linux containers) will be used to run the containers
    	// in a pod.
    	// The runtimeHandler must be lowercase, conform to the DNS Label (RFC 1123)
    	// requirements, and is immutable.
    	RuntimeHandler string `json:"runtimeHandler" protobuf:"bytes,1,opt,name=runtimeHandler"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/fuse_comparisons.go

    		return false
    	}
    
    	// If the first (true) successors match then we have a disjunction (||).
    	// If the second (false) successors match then we have a conjunction (&&).
    	for i, op := range [2]Op{OpOrB, OpAndB} {
    		if p.Succs[i].Block() != b.Succs[i].Block() {
    			continue
    		}
    
    		// TODO(mundaym): should we also check the cost of executing b?
    		// Currently we might speculatively execute b even if b contains
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top