Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,004 for patching (0.3 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. pkg/controller/controller_ref_manager.go

    }
    
    // ReleasePod sends a patch to free the pod from the control of the controller.
    // It returns the error if the patching fails. 404 and 422 errors are ignored.
    func (m *PodControllerRefManager) ReleasePod(ctx context.Context, pod *v1.Pod) error {
    	logger := klog.FromContext(ctx)
    	logger.V(2).Info("Patching pod to remove its controllerRef", "pod", klog.KObj(pod), "gvk", m.controllerKind, "controller", m.Controller.GetName())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/registry/apps/statefulset/storage/storage_test.go

    	test.TestWatch(
    		validNewStatefulSet(),
    		// matching labels
    		[]labels.Set{
    			{"a": "b"},
    		},
    		// not matching labels
    		[]labels.Set{
    			{"a": "c"},
    			{"foo": "bar"},
    		},
    
    		// matching fields
    		[]fields.Set{
    			{"metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "bar"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. 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)
  7. pkg/registry/apps/replicaset/storage/storage_test.go

    	test.TestWatch(
    		validNewReplicaSet(),
    		// matching labels
    		[]labels.Set{
    			{"a": "b"},
    		},
    		// not matching labels
    		[]labels.Set{
    			{"a": "c"},
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{
    			{"status.replicas": "5"},
    			{"metadata.name": "foo"},
    			{"status.replicas": "5", "metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  8. 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)
  9. pkg/registry/apps/deployment/storage/storage_test.go

    	test.TestWatch(
    		validNewDeployment(),
    		// matching labels
    		[]labels.Set{},
    		// not matching labels
    		[]labels.Set{
    			{"a": "c"},
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{
    			{"metadata.name": name},
    		},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "bar"},
    			{"name": name},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  10. 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)
Back to top