Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,005 for patched (0.12 sec)

  1. cmd/kubeadm/app/util/patches/patches_test.go

    			expectedPatchSets: []*patchSet{
    				{
    					targetName: "etcd",
    					patchType:  types.StrategicMergePatchType,
    					patches:    []string{patchData},
    				},
    				{
    					targetName: "kube-apiserver",
    					patchType:  types.JSONPatchType,
    					patches:    []string{patchData},
    				},
    				{
    					targetName: "kube-scheduler",
    					patchType:  types.MergePatchType,
    					patches:    []string{patchData},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/name_flags_test.go

    			outputFormat:   "name",
    			operation:      "patched",
    			expectedOutput: "pod/foo",
    		},
    		{
    			name:          "operation and no valid \"name\" output does not match a printer",
    			operation:     "patched",
    			outputFormat:  "invalid",
    			dryRun:        true,
    			expectNoMatch: true,
    		},
    		{
    			name:           "operation and empty output still matches name printer",
    			expectedOutput: "pod/foo patched",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_wild.txt

    ! go get -u=patch example.../b@upgrade
    stderr '^go: no modules to query for example\.\.\./b@upgrade because first path element contains a wildcard$'
    
    
    # Patching . causes a patch to example.net/a, which introduces a new match
    # for example.net/b/..., which is itself patched and causes another upgrade to
    # example.net/a, which is then patched again.
    
    go get -u=patch . example.../b@upgrade
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  4. operator/pkg/patch/patch.go

    		}
    	}
    
    	return ret.String(), errs.ToError()
    }
    
    // applyPatches applies the given patches against the given object. It returns the resulting patched YAML if successful,
    // or a list of errors otherwise.
    func applyPatches(base *object.K8sObject, patches []*v1alpha1.K8SObjectOverlay_PathValue) (outYAML string, errs util.Errors) {
    	bo := make(map[any]any)
    	by, err := base.YAML()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/patches/patches.go

    		for _, patch := range patchSet.patches {
    			patchBytes := []byte(patch)
    
    			// Patch based on the patch type.
    			switch patchSet.patchType {
    
    			// JSON patch.
    			case types.JSONPatchType:
    				var patchObj jsonpatch.Patch
    				patchObj, err = jsonpatch.DecodePatch(patchBytes)
    				if err == nil {
    					patchedData, err = patchObj.Apply(patchedData)
    				}
    
    			// Merge patch.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. README.fips.md

    # MinIO FIPS Builds
    
    MinIO creates FIPS builds using a patched version of the Go compiler (that uses BoringCrypto, from BoringSSL, which is [FIPS 140-2 validated](https://csrc.nist.gov/csrc/media/projects/cryptographic-module-validation-program/documents/security-policies/140sp2964.pdf)) published by the Golang Team [here](https://github.com/golang/go/tree/dev.boringcrypto/misc/boring).
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 869 bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster.go

    			if patched := cp.patch(nil, defaultCluster.build()); patched != nil {
    				resources = append(resources, patched)
    				if features.EnableCDSCaching {
    					cb.cache.Add(&clusterKey, cb.req, patched)
    				}
    			}
    			for _, ss := range subsetClusters {
    				if patched := cp.patch(nil, ss); patched != nil {
    					resources = append(resources, patched)
    					if features.EnableCDSCaching {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesJavaPatchModuleIntegrationTest.groovy

    class SamplesJavaPatchModuleIntegrationTest extends AbstractIntegrationSpec {
    
        @Rule Sample sample = new Sample(temporaryFolder, 'testing/patch-module')
    
        def setup() {
            executer.withRepositoryMirrors()
        }
    
        def "can compile and run patched module whitebox tests with #dsl dsl"() {
            when:
            executer.inDirectory(sample.dir.file(dsl))
            succeeds('build')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/configmap.go

    }
    
    func (mc *meshConfig) PatchMeshConfig(t resource.Context, patch string) error {
    	return mc.UpdateMeshConfig(t, func(mc *meshconfig.MeshConfig) error {
    		return protomarshal.ApplyYAML(patch, mc)
    	}, cleanup.Always)
    }
    
    func (mc *meshConfig) PatchMeshConfigOrFail(ctx resource.Context, t test.Failer, patch string) {
    	t.Helper()
    	if err := mc.PatchMeshConfig(ctx, patch); err != nil {
    		t.Fatal(err)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. doc/next/7-ports.md

    Go 1.23 is the last release that requires Linux kernel version 2.6.32 or later. Go 1.24 will require Linux kernel version 3.17 or later, with an exception that systems running 3.10 or later will continue to be supported if the kernel has been patched to support the getrandom system call.
    
    ### OpenBSD {#openbsd}
    
    <!-- go.dev/issue/55999, CL 518629, CL 518630 -->
    Go 1.23 adds experimental support for OpenBSD on 64-bit RISC-V (`GOOS=openbsd`, `GOARCH=riscv64`).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top