Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for infeasible (0.29 sec)

  1. src/encoding/xml/typeinfo.go

    		// empty rather than to the field name.
    		finfo.name = tag
    		return finfo, nil
    	}
    
    	if tag == "" {
    		// If the name part of the tag is completely empty, get
    		// default from XMLName of underlying struct if feasible,
    		// or field name otherwise.
    		if xmlname := lookupXMLName(f.Type); xmlname != nil {
    			finfo.xmlns, finfo.name = xmlname.xmlns, xmlname.name
    		} else {
    			finfo.name = f.Name
    		}
    		return finfo, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. pkg/generated/openapi/zz_generated.openapi.go

    "PercentageOfNodesToScore is the percentage of all nodes that once found feasible for running a pod, the scheduler stops its search for more feasible nodes in the cluster. This helps improve scheduler's performance. Scheduler always tries to find at least \"minFeasibleNodesToFind\" feasible nodes no matter what the value of this flag is. Example: if the cluster size is 500 nodes and the value of this flag is 30, then scheduler stops finding further feasible nodes once it finds 150 feasible ones. When the value is...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

       *   putIfZero.
       *
       * - Allow putIfAbsent and replace to distinguish between zero and absent, but don't implement
       *   remove(K, long). Without any two-phase operations it becomes feasible for all remaining
       *   operations to distinguish between zero and absent. If we do this, then perhaps we should add
       *   replace(key, long).
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apps__v1_openapi.json

      Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\n   the specified VolumeAttributesClass not existing.\n - InProgress\n   InProgress indicates that the volume is being modified.\n - Infeasible\n  Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\n\t  resolve the error, a valid VolumeAttributesClass needs to be specified.\nNote: New statuses can be added in the future. Consumers should check for unknown...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/signing_plugin.adoc

    ----
    signing.keyId=24875D73
    signing.password=secret
    signing.secretKeyRingFile=/Users/me/.gnupg/secring.gpg
    ----
    
    If specifying this information (especially `signing.password`) in the user `gradle.properties` file is not feasible for your environment, you can supply the information via the command line:
    ----
    > gradle sign -Psigning.secretKeyRingFile=/Users/me/.gnupg/secring.gpg -Psigning.password=secret -Psigning.keyId=24875D73
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  6. src/log/slog/handler.go

    	defer func() {
    		if r := recover(); r != nil {
    			// If it panics with a nil pointer, the most likely cases are
    			// an encoding.TextMarshaler or error fails to guard against nil,
    			// in which case "<nil>" seems to be the feasible choice.
    			//
    			// Adapted from the code in fmt/print.go.
    			if v := reflect.ValueOf(v.any); v.Kind() == reflect.Pointer && v.IsNil() {
    				s.appendString("<nil>")
    				return
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/preemption/preemption.go

    	for node, nodeStatus := range unschedulableNodeStatus {
    		nodeStatuses[node] = nodeStatus
    	}
    	return candidates, nodeStatuses, err
    }
    
    // callExtenders calls given <extenders> to select the list of feasible candidates.
    // We will only check <candidates> with extenders that support preemption.
    // Extenders which do not support preemption may later prevent preemptor from being scheduled on the nominated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    == Improve the performance of older Gradle releases
    
    Some projects cannot easily upgrade to a current Gradle version. While you should
    always upgrade Gradle to a recent version when possible, we recognize that it isn't always
    feasible for certain niche situations. In those select cases, check out these recommendations
    to optimize older versions of Gradle.
    
    === Enable the Daemon
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/api__v1_openapi.json

      Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\n   the specified VolumeAttributesClass not existing.\n - InProgress\n   InProgress indicates that the volume is being modified.\n - Infeasible\n  Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\n\t  resolve the error, a valid VolumeAttributesClass needs to be specified.\nNote: New statuses can be added in the future. Consumers should check for unknown...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  10. cmd/object-api-utils.go

    			compressedOffset += part.Size
    		} else {
    			firstPartIdx = i
    			skipLength = cumulativeActualSize - part.ActualSize
    			break
    		}
    	}
    	partSkip = offset - skipLength
    
    	// Load index and skip more if feasible.
    	if partSkip > 0 && len(oi.Parts) > firstPartIdx && len(oi.Parts[firstPartIdx].Index) > 0 {
    		_, isEncrypted := crypto.IsEncrypted(oi.UserDefined)
    		if isEncrypted {
    			dec, err := decrypt(oi.Parts[firstPartIdx].Index)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top