Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,005 for patched (0.28 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

            def pattern = Pattern.compile("Transforming " + fileName + ".* with (.*)")
            for (def line : output.readLines()) {
                def matcher = pattern.matcher(line)
                if (matcher.matches()) {
                    transforms.add(matcher.group(1))
                }
            }
            return transforms
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    		objToUpdate, patchErr = p.mechanism.createNewObject(ctx)
    	} else {
    		objToUpdate, patchErr = p.mechanism.applyPatchToCurrentObject(ctx, currentObject)
    	}
    
    	if patchErr != nil {
    		return nil, patchErr
    	}
    
    	objToUpdateHasUID, err := hasUID(objToUpdate)
    	if err != nil {
    		return nil, err
    	}
    	if objToUpdateHasUID && !currentObjectHasUID {
    		accessor, err := meta.Accessor(objToUpdate)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. src/internal/coverage/encodemeta/encode.go

    func (b *CoverageMetaDataBuilder) Emit(w io.WriteSeeker) ([16]byte, error) {
    	// Emit header.  Length will initially be zero, we'll
    	// back-patch it later.
    	var digest [16]byte
    	copy(digest[:], b.h.Sum(nil))
    	mh := coverage.MetaSymbolHeader{
    		// hash and length initially zero, will be back-patched
    		PkgPath:    uint32(b.pkgpath),
    		PkgName:    uint32(b.pkgname),
    		ModulePath: uint32(b.modpath),
    		NumFiles:   uint32(b.stab.Nentries()),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 17:16:10 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/fake/fake_customresourcedefinition.go

    	_, err := c.Fake.Invokes(action, &v1beta1.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 v1.PatchOptions, subresources ...string) (result *v1beta1.CustomResourceDefinition, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/discovery/token/token_test.go

    		cfg                      *kubeadmapi.Discovery
    		configMap                *fakeConfigMap
    		delayedJWSSignaturePatch bool
    		expectedError            bool
    	}{
    		{
    			// This is the default behavior. The JWS signature is patched after the cluster-info ConfigMap is created
    			name:        "valid: retrieve a valid kubeconfig with CA verification and delayed JWS signature",
    			tokenID:     "123456",
    			tokenSecret: "abcdef1234567890",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/regexp/syntax/compile.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syntax
    
    import "unicode"
    
    // A patchList is a list of instruction pointers that need to be filled in (patched).
    // Because the pointers haven't been filled in yet, we can reuse their storage
    // to hold the list. It's kind of sleazy, but works well in practice.
    // See https://swtch.com/~rsc/regexp/regexp1.html for inspiration.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/discovery/token/token.go

    				klog.V(1).Infof("[discovery] Retrying due to error: %v", lastError)
    				return false, nil
    			}
    			// Even if the ConfigMap is available the JWS signature is patched-in a bit later.
    			if _, ok := cm.Data[bootstrapapi.JWSSignatureKeyPrefix+token.ID]; !ok {
    				lastError = errors.Errorf("could not find a JWS signature in the cluster-info ConfigMap"+
    					" for token ID %q", token.ID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    		Do(ctx).
    		Error()
    }
    
    // Patch applies the patch and returns the patched customResourceDefinition.
    func (c *customResourceDefinitions) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1beta1.CustomResourceDefinition, err error) {
    	result = &v1beta1.CustomResourceDefinition{}
    	err = c.client.Patch(pt).
    		Resource("customresourcedefinitions").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    		Timeout(timeout).
    		Body(&opts).
    		Do(ctx).
    		Error()
    }
    
    // Patch applies the patch and returns the patched example.
    func (c *examples) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1.Example, err error) {
    	result = &v1.Example{}
    	err = c.client.Patch(pt).
    		Namespace(c.ns).
    		Resource("examples").
    		Name(name).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. pkg/controller/history/controller_history_test.go

    				if err != nil {
    					return true, nil, err
    				}
    				patched, err := legacyscheme.Scheme.ConvertToVersion(obj, apps.SchemeGroupVersion)
    				if err != nil {
    					return true, nil, err
    				}
    				return true, patched, err
    			default:
    				return false, nil, nil
    			}
    
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
Back to top