Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for Matcher (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	}
    	status := &metav1.Status{Status: metav1.StatusSuccess, Details: details}
    	return status, nil
    }
    
    // Watch makes a matcher for the given label and field, and calls
    // WatchPredicate. If possible, you should customize PredicateFunc to produce
    // a matcher that matches by key. SelectionPredicate does this for you
    // automatically.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			}
    		}
    		// namespaced watchers not scoped by name
    		for _, watcher := range c.watchers.allWatchers[namespacedName{namespace: namespace}] {
    			c.watchersBuffer = append(c.watchersBuffer, watcher)
    		}
    	}
    	if len(name) > 0 {
    		// cluster-wide watchers scoped by name
    		for _, watcher := range c.watchers.allWatchers[namespacedName{name: name}] {
    			c.watchersBuffer = append(c.watchersBuffer, watcher)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            for (def plannedNode : plannedNodes) {
                def matchers = nodeMatchers.findAll { it.matchNode(plannedNode) }
                assert matchers.size() == 1, "Expected exactly one matcher for node ${plannedNode.nodeIdentity}, but found ${matchers.size()}"
                def nodeMatcher = matchers[0]
                def nodeId = getTypedNodeId(plannedNode.nodeIdentity)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  4. src/testing/testing.go

    // The argument to the -run, -bench, and -fuzz command-line flags is an unanchored regular
    // expression that matches the test's name. For tests with multiple slash-separated
    // elements, such as subtests, the argument is itself slash-separated, with
    // expressions matching each name element in turn. Because it is unanchored, an
    // empty expression matches any string.
    // For example, using "matching" to mean "whose name contains":
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    The second argument of `rename()` works on the same principles as the `{javaApi}/java/util/regex/Matcher.html#appendReplacement(java.lang.StringBuffer,%20java.lang.String)[Matcher.appendReplacement()]` method.
    
    .Regular expressions in Groovy build scripts
    --
    There are two common issues people come across when using regular expressions in this context:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    	Namespace string
    	Match     string
    	Matches   []string
    	GwMatches []types.NamespacedName
    	Dest      string
    	Port      int
    	PortMatch int
    	Time      string
    }
    
    func (args vsArgs) Config(t *testing.T, variant string) string {
    	if args.Time == "" {
    		args.Time = TimeBase
    	}
    
    	if args.Matches == nil {
    		args.Matches = []string{args.Match}
    	}
    	if variant == "httproute" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			t.Errorf("Unexpected object watched: %s, expected %s", a, e)
    		}
    		watched++
    	}
    	// We expect at least N events to be delivered, depending on the implementation.
    	// For now, this number is smallest for Cacher and it equals 10 (size of the out buffer).
    	if watched < 10 {
    		t.Errorf("Unexpected number of events: %v, expected: %v", watched, totalPods)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	collectionDeleter, isCollectionDeleter := storage.(rest.CollectionDeleter)
    	updater, isUpdater := storage.(rest.Updater)
    	patcher, isPatcher := storage.(rest.Patcher)
    	watcher, isWatcher := storage.(rest.Watcher)
    	connecter, isConnecter := storage.(rest.Connecter)
    	storageMeta, isMetadata := storage.(rest.StorageMetadata)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

        }) {is_stateless = false} : (tensor<i1>) -> tensor<*xf32>
    ```
    ### `-tf-functional-to-executor-conversion`
    
    _Transform from func op to TF executor dialect._
    
    ### `-tf-fused-kernel-matcher`
    
    _Matches computations corresponding to optimized fused kernels_
    
    ### `-tf-gpu-op-fusion`
    
    _Fusion optimization for GPU targets_
    
    This pass is performing fusion specific to GPU targets. This is an ad-hoc
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context_test.go

    				}
    				return
    			}
    			if len(filter.Patches[networking.EnvoyFilter_CLUSTER]) != tt.expectedClusterPatches {
    				t.Errorf("Expect %d envoy filter cluster patches, but got %d", tt.expectedClusterPatches, len(filter.Patches[networking.EnvoyFilter_CLUSTER]))
    			}
    			if len(filter.Patches[networking.EnvoyFilter_LISTENER]) != tt.expectedListenerPatches {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top