Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,558 for Patches (0.27 sec)

  1. CHANGELOG/CHANGELOG-1.19.md

    ### Failing Test
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.16.md

    - Fix: initial delay in mounting azure disk & file ([#93052](https://github.com/kubernetes/kubernetes/pull/93052), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider and Storage]
    - Fixed a performance issue applying json patches to deeply nested objects ([#93813](https://github.com/kubernetes/kubernetes/pull/93813), [@liggitt](https://github.com/liggitt)) [SIG API Machinery, CLI, Cloud Provider and Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/cni-watcher.go

    	const maxStaleRetries = 10
    	const msInterval = 10
    	retries := 0
    	var ambientPod *corev1.Pod
    	var err error
    
    	// The plugin already consulted the k8s API - but on this end handler caches may be stale, so retry a few times if we get no pod.
    	// if err is returned, we couldn't find the pod
    	// if nil is returned, we found it but ambient is not enabled
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    	if matched && s.Field != nil {
    		matched = (matched && s.Field.Matches(f))
    	}
    	return matched
    }
    
    // MatchesSingleNamespace will return (namespace, true) if and only if s.Field matches on the object's
    // namespace.
    func (s *SelectionPredicate) MatchesSingleNamespace() (string, bool) {
    	if len(s.Continue) > 0 || s.Field == nil {
    		return "", false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/meta/priority.go

    // when multiple matches are possible
    type PriorityRESTMapper struct {
    	// Delegate is the RESTMapper to use to locate all the Kind and Resource matches
    	Delegate RESTMapper
    
    	// ResourcePriority is a list of priority patterns to apply to matching resources.
    	// The list of all matching resources is narrowed based on the patterns until only one remains.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

        <class>
          <name>Contributor</name>
          <description>Description of a person who has contributed to the project, but who does not have
            commit privileges. Usually, these contributions come in the form of patches submitted.</description>
          <version>3.0.0+</version>
          <fields>
            <field>
              <name>name</name>
              <version>3.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/testing/testing.go

    	}
    	r.watchers[gvr][ns] = append(r.watchers[gvr][ns], fakewatcher)
    	return fakewatcher, nil
    }
    
    func (r *VolumeReactor) getWatches(gvr schema.GroupVersionResource, ns string) []*watch.RaceFreeFakeWatcher {
    	watches := []*watch.RaceFreeFakeWatcher{}
    	if r.watchers[gvr] != nil {
    		if w := r.watchers[gvr][ns]; w != nil {
    			watches = append(watches, w...)
    		}
    		if ns != metav1.NamespaceAll {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. prow/config/calico.yaml

                                packets that are from other Calico-controlled \tendpoints
                                that do not have the label \"my_label\". \n \tNotSelector
                                = \"has(my_label)\" matches packets that are not from
                                Calico-controlled \tendpoints that do have the label \"my_label\".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. tests/fuzz/regression_test.go

    		bytes, err := os.ReadFile(path)
    		if err != nil {
    			return err
    		}
    		matched := pattern.FindAllString(string(bytes), -1)
    		for _, m := range matched {
    			// Add the match, with trailing ( and previous `func ` stripped
    			matches = append(matches, m[5:len(m)-1])
    		}
    		return nil
    	})
    	if err != nil {
    		return nil, err
    	}
    	return matches, nil
    }
    
    func TestFuzzers(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. pkg/quota/v1/evaluator/core/services.go

    	return admission.Create == operation || admission.Update == operation
    }
    
    // Matches returns true if the evaluator matches the specified quota with the provided input item
    func (p *serviceEvaluator) Matches(resourceQuota *corev1.ResourceQuota, item runtime.Object) (bool, error) {
    	return generic.Matches(resourceQuota, item, p.MatchingResources, generic.MatchesNoScopeFunc)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
Back to top