Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 874 for patched (0.24 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tests/integration/pilot/webhook_test.go

    			return fmt.Errorf("webhook #%v: wrong failure policy. c %v wanted %v",
    				i, *wh.FailurePolicy, kubeApiAdmission.Fail)
    		}
    		if len(wh.ClientConfig.CABundle) == 0 {
    			return fmt.Errorf("webhook #%v: caBundle not patched", i)
    		}
    	}
    	return nil
    }
    
    func verifyRejectsInvalidConfig(t framework.TestContext, configRevision string, shouldReject bool) {
    	t.Helper()
    	const istioNamespace = "istio-system"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 01 13:31:34 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. pkg/webhooks/webhookpatch.go

    // WebhookCertPatcher listens for webhooks on specified revision and patches their CA bundles
    type WebhookCertPatcher struct {
    	// revision to patch webhooks for
    	revision    string
    	webhookName string
    
    	queue controllers.Queue
    
    	// File path to the x509 certificate bundle used by the webhook server
    	// and patched into the webhook config.
    	CABundleWatcher *keycertbundle.Watcher
    
    	webhooks kclient.Client[*v1.MutatingWebhookConfiguration]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top