Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for patching (0.14 sec)

  1. src/cmd/go/internal/work/exec.go

    	// incompatibility between ETXTBSY and threads on modern Unix systems.
    	// See golang.org/issue/22220.
    	// We still call updateBuildID to update a.buildID, which is important
    	// for test result caching, but passing rewrite=false (final arg)
    	// means we don't actually rewrite the binary, nor store the
    	// result into the cache. That's probably a net win:
    	// less cache space wasted on large binaries we are not likely to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    				t.Fatalf("Unexpected error: %v", err)
    			}
    			milestones = nil
    			registry.Decorator = tc.decorator
    			ttlFailDone = false
    			registry.TTLFunc = tc.ttl
    			// force storage to use a cached object with a non-matching resourceVersion to guarantee a live lookup + retry
    			created.(*example.Pod).ResourceVersion += "0"
    			registry.Storage.Storage = &staleGuaranteedUpdateStorage{Interface: registry.Storage.Storage, cachedObj: created}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    				if in.GetProvider() == nil || in.GetProvider().GetName() == "" {
    					errs = appendErrors(errs, fmt.Errorf("`provider.name` must not be empty"))
    				}
    			}
    			// TODO(yangminzhu): Add support for more matching rules.
    			for _, rule := range in.GetRules() {
    				check := func(invalid bool, name string) error {
    					if invalid {
    						return fmt.Errorf("%s is currently not supported with CUSTOM action", name)
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    // invariant tf.While/tf.WhileRegion. If operand and result types are the same,
    // that type is returned. If operand and result types are of the same rank, a
    // compatible type with matching dimensions is used. Otherwise functions/regions
    // arguments are returned but with the handle type from the operand type.
    llvm::SmallVector<Type, 4> GetWhileCompatibleTypes(
        TypeRange operand_types, TypeRange result_types,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	// The values in moduledata are filled out by relocations
    	// pointing to the addresses of these special symbols.
    	// Typically these symbols have no size and are not laid
    	// out with their matching section.
    	//
    	// However on darwin, dyld will find the special symbol
    	// in the first loaded module, even though it is local.
    	//
    	// (An hypothesis, formed without looking in the dyld sources:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top