Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 354 for patching (0.23 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                    if (!containsModule(moduleName)) {
                        /*
                         * Not patching an existing module. This case should be unusual. If it nevertheless
                         * happens, add on class-path or module-path if allowed, or keep patching otherwise.
                         * The latter case (keep patching) is okay if the main module will be defined later.
                         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    					})
    				election.Run(clusterStopCh)
    				return nil
    			})
    		}
    		// Set up injection webhook patching for remote clusters we are controlling.
    		// The config cluster has this patching set up elsewhere. We may eventually want to move it here.
    		// We can not use leader election for webhook patching because each revision needs to patch its own
    		// webhook.
    		if shouldLead && !configCluster && m.caBundleWatcher != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. pkg/webhooks/validation/controller/controller.go

    	WatchedNamespace string
    
    	// File path to the x509 certificate bundle used by the webhook server
    	// and patched into the webhook config.
    	CABundleWatcher *keycertbundle.Watcher
    
    	// Revision for control plane performing patching on the validating webhook.
    	Revision string
    
    	// Name of the service running the webhook server.
    	ServiceName string
    }
    
    // Validate the options that exposed to end users
    func (o Options) Validate() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. pkg/registry/core/replicationcontroller/storage/storage_test.go

    	test.TestWatch(
    		validController,
    		// matching labels
    		[]labels.Set{
    			{"a": "b"},
    		},
    		// not matching labels
    		[]labels.Set{
    			{"a": "c"},
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{
    			{"status.replicas": "0"},
    			{"metadata.name": "foo"},
    			{"status.replicas": "0", "metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 06:57:01 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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. 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)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                /**
                 * IR for code fragment is not fully correct until `patchCodeFragmentIr` is over.
                 * Because of that we run IR plugins manually after patching and don't pass any extension to fir2ir conversion in `runFir2Ir` method
                 */
                irGeneratorExtensions = emptyList()
            )
    
            patchCodeFragmentIr(targetFir2IrResult)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top