Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for Unreserve (4.39 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		}
    	}
    
    	if schema.XPreserveUnknownFields != nil && !*schema.XPreserveUnknownFields {
    		allErrs.SchemaErrors = append(allErrs.SchemaErrors, field.Invalid(fldPath.Child("x-kubernetes-preserve-unknown-fields"), *schema.XPreserveUnknownFields, "must be true or undefined"))
    	}
    
    	if schema.XMapType != nil && schema.Type != "object" {
    		if len(schema.Type) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    	}
    	l.symPkg[i] = pkg
    }
    
    // SymLocalentry returns an offset in bytes of the "local entry" of a symbol.
    //
    // On PPC64, a value of 1 indicates the symbol does not use or preserve a TOC
    // pointer in R2, nor does it have a distinct local entry.
    func (l *Loader) SymLocalentry(i Sym) uint8 {
    	return l.localentry[i]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * <p>
         * Example:
         *
         * <pre>
         * project.sync {
         *    from 'my/shared/dependencyDir'
         *    into 'build/deps/compile'
         * }
         * </pre>
         * Note that you can preserve output that already exists in the destination directory:
         * <pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    func (proxier *Proxier) newServiceInfo(port *v1.ServicePort, service *v1.Service, bsvcPortInfo *proxy.BaseServicePortInfo) proxy.ServicePort {
    	info := &serviceInfo{BaseServicePortInfo: bsvcPortInfo}
    	preserveDIP := service.Annotations["preserve-destination"] == "true"
    	// Annotation introduced to enable optimized loadbalancing
    	winProxyOptimization := !(strings.ToUpper(service.Annotations["winProxyOptimization"]) == "DISABLED")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    			// If the file already exists, the semantics of
    			// the Unix open system call is to preserve the
    			// existing permissions. If we pass CREATE_ALWAYS
    			// and FILE_ATTRIBUTE_READONLY to CreateFile,
    			// and the file already exists, CreateFile will
    			// change the file permissions.
    			// Avoid that to preserve the Unix semantics.
    			h, e := CreateFile(pathp, access, sharemode, sa, TRUNCATE_EXISTING, FILE_ATTRIBUTE_NORMAL, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    class MarkForCompilationPassImpl {
     public:
      struct DebugOptions {
        // If true, do not respect the results of deadness analysis.
        bool ignore_deadness_checks;
    
        // If true, do not do safety checks to preserve TensorFlow's resource
        // variable concurrency semantics.
        bool ignore_resource_variable_checks;
    
        // If true, do not respect the _XlaCompile=false attribute.
        bool ignore_xla_compile_attr;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters_test.go

    			node:    &v1.Node{},
    			maxPods: 110,
    			machineInfo: &cadvisorapiv1.MachineInfo{
    				NumCores:       2,
    				MemoryCapacity: 1024,
    			},
    			nodeAllocatableReservation: v1.ResourceList{
    				// reserve 1 unit for each resource
    				v1.ResourceCPU:              *resource.NewMilliQuantity(1, resource.DecimalSI),
    				v1.ResourceMemory:           *resource.NewQuantity(1, resource.BinarySI),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/runtime/map.go

    			}
    		}
    		// Unlink the overflow buckets & clear key/elem to help GC.
    		if h.flags&oldIterator == 0 && t.Bucket.Pointers() {
    			b := add(h.oldbuckets, oldbucket*uintptr(t.BucketSize))
    			// Preserve b.tophash because the evacuation
    			// state is maintained there.
    			ptr := add(b, dataOffset)
    			n := uintptr(t.BucketSize) - dataOffset
    			memclrHasPointers(ptr, n)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // The precedence is $setElementOrder > order in patch list > order in live list.
    // This function will delete the item after merging it to prevent process it again in the future.
    // Ref: https://git.k8s.io/design-proposals-archive/cli/preserve-order-in-strategic-merge-patch.md
    func mergePatchIntoOriginal(original, patch map[string]interface{}, schema LookupPatchMeta, mergeOptions MergeOptions) error {
    	for key, patchV := range patch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    have been imported from a V1 TensorFlow graph, where feeds/fetches/targets are
    not provided at certain stages of IR transformation (e.g. pre-placement).
    
    Option `ops-to-preserve` allows to specify ops that should not be pruned,
    regardless of their reachability.
    
    For example, the following:
    
    ```mlir
    func @graph(%arg0: tensor<i32>, %arg1: tensor<i32>) -> tensor<i32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top