Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 180 for batches (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            """
        }
    
        abstract String getDebug()
    
        abstract String getFree()
    
        abstract String getRelease()
    
        abstract String getPaid()
    
        def "selects configuration in target project which matches the configuration attributes"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
            buildFile << """
                $typeDefs
    
                project(':a') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    					matched = false
    					break
    				} else if l != v {
    					matched = false
    					break
    				}
    			}
    
    			// Empty selector matches everything
    			if len(paramRef.Selector.MatchExpressions) == 0 && len(paramRef.Selector.MatchLabels) == 0 {
    				matched = true
    			}
    
    			if !matched {
    				continue
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_utils_test.go

    	podName := ""
    
    	statefulClaimRegex := regexp.MustCompile(fmt.Sprintf(".*-(%s-[0-9]+)$", set.Name))
    	matches := statefulClaimRegex.FindStringSubmatch(claim.Name)
    	if len(matches) != 2 {
    		return podName
    	}
    	return matches[1]
    }
    
    // ownerRefsChanged returns true if newRefs does not match originalRefs.
    func ownerRefsChanged(originalRefs, newRefs []metav1.OwnerReference) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// pattern: { term }
      /// term:
      ///   '*': matches any sequence of non-'/' characters
      ///   '?': matches a single non-'/' character
      ///   '[' [ '^' ] { match-list } ']':
      ///        matches any single character (not) on the list
      ///   c: matches character c (c != '*', '?', '\\', '[')
      ///   '\\' c: matches character c
      /// character-range:
      ///   c: matches character c (c != '\\', '-', ']')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    //
    // "NotOlderThan" matches data at least as new as the provided resourceVersion.
    // "Exact" matches data at the exact resourceVersion provided.
    //
    // See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for
    // details.
    type ResourceVersionMatch string
    
    const (
    	// ResourceVersionMatchNotOlderThan matches data at least as new as the provided
    	// resourceVersion.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                }
            }
        }
    
        @Issue("GRADLE-2555")
        void "batched up conflicts with conflicted parent and child"() {
            /*
            Dependency tree:
    
            a->c1
            b->c2->x1
            d->x1
            f->x2
    
            Everything is resolvable but not x2
    
            Scenario:
             - We have batched up conflicts
             - root of one conflicted version is also conflicted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  7. plugin/pkg/admission/resourcequota/admission_test.go

    	decimatedActions := []testcore.Action{}
    	// list and watch resource quota is done to maintain our cache, so that's expected.  Remove them from results
    	for i := range in {
    		if in[i].Matches("list", "resourcequotas") || in[i].Matches("watch", "resourcequotas") {
    			continue
    		}
    
    		decimatedActions = append(decimatedActions, in[i])
    	}
    	return decimatedActions
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    func LoadPackages(ctx context.Context, opts PackageOpts, patterns ...string) (matches []*search.Match, loadedPackages []string) {
    	if opts.Tags == nil {
    		opts.Tags = imports.Tags()
    	}
    
    	patterns = search.CleanPatterns(patterns)
    	matches = make([]*search.Match, 0, len(patterns))
    	allPatternIsRoot := false
    	for _, pattern := range patterns {
    		matches = append(matches, search.NewMatch(pattern))
    		if pattern == "all" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          attr_name: str,
          attr_val: _AttrValType,
          node_name: str = '',
      ) -> bool:
        """Determine whether there is a node whose operation name matches `op_name`.
    
        If `attr_name` is given, additionally check if the `attr_val` matches with
        the attribute value of the op.
    
        Args:
          nodes: Iterable of NodeDefs.
          op_name: Name of the op to match.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route.go

    		out.Headers = append(out.Headers, matcher)
    	}
    
    	if in.Scheme != nil {
    		matcher := translateHeaderMatch(HeaderScheme, in.Scheme)
    		out.Headers = append(out.Headers, matcher)
    	}
    
    	for name, stringMatch := range in.QueryParams {
    		matcher := translateQueryParamMatch(name, stringMatch)
    		out.QueryParameters = append(out.QueryParameters, matcher)
    	}
    
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
Back to top