Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,221 for patching (0.32 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/subresources_test.go

    			}
    
    			scaleClient, err := fixtures.CreateNewVersionedScaleClient(noxuDefinition, config, v.Name)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			t.Logf("Patching .status.num to 999")
    			patch := []byte(`{"spec": {"num":999}, "status": {"num":999}}`)
    			patchedNoxuInstance, err := noxuResourceClient.Patch(context.TODO(), "foo", types.MergePatchType, patch, metav1.PatchOptions{}, "status")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:35:34 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    	noxuInstanceToCreate := fixtures.NewNoxuInstance(ns, "foo")
    	_, err = noxuNamespacedResourceClient.Create(context.TODO(), noxuInstanceToCreate, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	t.Logf("Patching .num.num2 to 999")
    	patch := []byte(`{"num": {"num2":999}}`)
    	patchedNoxuInstance, err := noxuNamespacedResourceClient.Patch(context.TODO(), "foo", types.MergePatchType, patch, metav1.PatchOptions{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. gradlew

    #         * various built-in commands including «command», «set», and «ulimit».
    #
    #   Important for patching:
    #
    #   (2) This script targets any POSIX shell, so it avoids extensions provided
    #       by Bash, Ksh, etc; in particular arrays are avoided.
    #
    #       The "traditional" practice of packing multiple parameters into a
    #       space-separated string is a well documented source of bugs and security
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #         * various built-in commands including «command», «set», and «ulimit».
    #
    #   Important for patching:
    #
    #   (2) This script targets any POSIX shell, so it avoids extensions provided
    #       by Bash, Ksh, etc; in particular arrays are avoided.
    #
    #       The "traditional" practice of packing multiple parameters into a
    #       space-separated string is a well documented source of bugs and security
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	namespaces      kclient.Client[*corev1.Namespace]
    	tagWatcher      revisions.TagWatcher
    	revision        string
    }
    
    // Patcher is a function that abstracts patching logic. This is largely because client-go fakes do not handle patching
    type patcher func(gvr schema.GroupVersionResource, name string, namespace string, data []byte, subresources ...string) error
    
    // classInfo holds information about a gateway class
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    Composite (include) builds are great for separating build logic (i.e., convention plugins) or testing systems (i.e., patching a library)
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [[sec:java_testing_modular_patching]]
    === Whitebox test execution with module patching
    
    Another approach for whitebox testing is to stay in the module world by _patching_ the tests into the module under test.
    This way, module boundaries stay in place, but the tests themselves become part of the module under test and can then access the module's internals.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/config.go

    	DumpKubernetesManifests bool
    
    	// IstiodlessRemotes makes remote clusters run without istiod, using webhooks/ca from the primary cluster.
    	// TODO we could set this per-cluster if istiod was smarter about patching remotes.
    	IstiodlessRemotes bool
    
    	// OperatorOptions overrides default operator configuration.
    	OperatorOptions map[string]string
    
    	// EnableCNI indicates the test should have CNI enabled.
    	EnableCNI bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/idempotency.go

    			*lastError = errors.Wrapf(err, "error patching Node %q", n.Name)
    			if apierrors.IsTimeout(err) || apierrors.IsConflict(err) || apierrors.IsServerTimeout(err) || apierrors.IsServiceUnavailable(err) {
    				return false, nil
    			}
    			return false, *lastError
    		}
    
    		return true, nil
    	}
    }
    
    // PatchNode tries to patch a node using patchFn for the actual mutating logic.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set.go

    	// client interface
    	kubeClient clientset.Interface
    	// control returns an interface capable of syncing a stateful set.
    	// Abstracted out for testing.
    	control StatefulSetControlInterface
    	// podControl is used for patching pods.
    	podControl controller.PodControlInterface
    	// podLister is able to list/get pods from a shared informer's store
    	podLister corelisters.PodLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top