Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 412 for patched (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/testdata/script/mod_get_patch.txt

    # patched versions result in a higher-than-patch upgrade.
    
    cp go.mod.orig go.mod
    ! go get -u=patch all
    stderr '^go: example.net/a@v0.1.1 \(matching all@patch\) requires example.net/b@v0.2.0, not example.net/b@v0.1.1 \(matching all@patch\)$'
    cmp go.mod go.mod.orig
    
    
    # On the other hand, "-u=patch ./..." should patch-upgrade dependencies until
    # they reach a fixed point, even if that results in higher-than-patch upgrades.
    
    go get -u=patch ./...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/fake/fake_customresourcedefinition.go

    	_, err := c.Fake.Invokes(action, &v1.CustomResourceDefinitionList{})
    	return err
    }
    
    // Patch applies the patch and returns the patched customResourceDefinition.
    func (c *FakeCustomResourceDefinitions) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1.CustomResourceDefinition, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top