Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,399 for _Merge (0.14 sec)

  1. api/openapi-spec/README.md

            }
        }
    }
    ```
    
    ### `x-kubernetes-patch-strategy` and `x-kubernetes-patch-merge-key`
    
    Some of the definitions may have these extensions. For more information about PatchStrategy and PatchMergeKey see
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 15 01:29:23 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/structuredmerge.go

    	"k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    	"sigs.k8s.io/structured-merge-diff/v4/merge"
    	"sigs.k8s.io/structured-merge-diff/v4/typed"
    )
    
    type structuredMergeManager struct {
    	typeConverter   TypeConverter
    	objectConverter runtime.ObjectConvertor
    	objectDefaulter runtime.ObjectDefaulter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:55:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/Manifest.java

         */
        Manifest writeTo(Object path);
    
        /**
         * Specifies other manifests to be merged into this manifest. A merge path can either be another instance of
         * {@link org.gradle.api.java.archives.Manifest} or a file path as interpreted by {@link org.gradle.api.Project#file(Object)}.
         *
         * The merge is not happening instantaneously. It happens either before writing or when {@link #getEffectiveManifest()}
         * is called.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. pkg/kubelet/config/mux.go

    	// merger if you wish to consume changes incrementally.  Must be reentrant when more than
    	// one source is defined.
    	Merge(source string, update interface{}) error
    }
    
    // mux is a class for merging configuration from multiple sources.  Changes are
    // pushed via channels and sent to the merge function.
    type mux struct {
    	// Invoked when an update is sent to a source.
    	merger merger
    
    	// Sources and their lock.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 20:02:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/covdata/tool_test.go

    	}
    
    	// Merge the two dirs into a final result.
    	ins := fmt.Sprintf("-i=%s,%s", indir1, indir2)
    	out := fmt.Sprintf("-o=%s", outdir)
    	margs := []string{ins, out}
    	lines := runToolOp(t, s, "merge", margs)
    	if len(lines) != 0 {
    		t.Errorf("merge run produced %d lines of unexpected output", len(lines))
    		dumplines(lines)
    	}
    
    	// We expect the merge tool to produce exactly two files: a meta
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis_test.cc

      ops::Switch sw_0 = CreateSwitch(root, "0");
      ops::Switch sw_1 = CreateSwitch(root, "1");
    
      ops::Merge m0(root.WithOpName("m0"), {sw_0.output_false, sw_1.output_false});
      ops::Merge m1(root.WithOpName("m1"), {sw_1.output_false, sw_0.output_false});
      ops::Merge m2(root.WithOpName("m2"), {sw_0.output_false, sw_1.output_true});
      ops::Merge m3(root.WithOpName("m3"), {sw_1.output_true, sw_0.output_false});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. .gitattributes

    # Always check-out / check-in files with LF line endings.
    * text=auto eol=lf
    
    hack/verify-flags/known-flags.txt merge=union
    test/test_owners.csv merge=union
    
    **/zz_generated.*.go linguist-generated=true
    **/types.generated.go linguist-generated=true
    **/generated.pb.go linguist-generated=true
    **/generated.proto
    **/types_swagger_doc_generated.go linguist-generated=true
    api/openapi-spec/*.json linguist-generated=true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 22 11:36:07 UTC 2022
    - 459 bytes
    - Viewed (0)
  8. cmd/site-replication-metrics.go

    	}
    }
    
    func (rt *RTimedMetrics) merge(o RTimedMetrics) (n RTimedMetrics) {
    	n.SinceUptime.Bytes = atomic.LoadInt64(&rt.SinceUptime.Bytes) + atomic.LoadInt64(&o.SinceUptime.Bytes)
    	n.SinceUptime.Count = atomic.LoadInt64(&rt.SinceUptime.Count) + atomic.LoadInt64(&o.SinceUptime.Count)
    
    	n.LastMinute = n.LastMinute.merge(rt.LastMinute)
    	n.LastMinute = n.LastMinute.merge(o.LastMinute)
    	n.LastHour = n.LastHour.merge(rt.LastHour)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/patchhandler_test.go

    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	request.Header.Set("Content-Type", "application/merge-patch+json; charset=UTF-8")
    	response, err := client.Do(request)
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	dump, _ := httputil.DumpResponse(response, true)
    	t.Log(string(dump))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 10:11:56 UTC 2022
    - 5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	return toSort, nil
    }
    
    // Returns a (recursive) strategic merge patch, a parallel deletion list if necessary and
    // another list to set the order of the list
    // Only list of primitives with merge strategy will generate a parallel deletion list.
    // These two lists should yield modified when applied to original, for lists with merge semantics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
Back to top