Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 374 for satisfies (0.2 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/meta.go

    func (obj *TypeMeta) GetObjectKind() schema.ObjectKind { return obj }
    
    // SetGroupVersionKind satisfies the ObjectKind interface for all objects that embed TypeMeta
    func (obj *TypeMeta) SetGroupVersionKind(gvk schema.GroupVersionKind) {
    	obj.APIVersion, obj.Kind = gvk.ToAPIVersionAndKind()
    }
    
    // GroupVersionKind satisfies the ObjectKind interface for all objects that embed TypeMeta
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/resolve/scenarios/VersionRangeResolveTestScenarios.groovy

            versions: [PREFER_11, RANGE_10_11, PREFER_13, RANGE_10_14],
            expected: "11"
        ).and(
            versions: [PREFER_7_8, FIXED_12],  // No version satisfies the range [7,8]
            expected: FAILED
        ).and(
            versions: [PREFER_14_16, FIXED_12], // No version satisfies the range [14,16]
            expected: FAILED
        ).and(
            versions: [PREFER_12, RANGE_10_11],
            expected: "11",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractValidatingLockingIntegrationTest.groovy

    """
    
            lockfileFixture.createLockfile('lockedConf',['org:foo:1.0'], unique)
    
            when:
            fails 'checkDeps'
    
            then:
            failure.assertHasCause """Cannot find a version of 'org:foo' that satisfies the version constraints:
       Dependency path ':depLock:unspecified' --> 'org:foo:1.+'
       Dependency path ':depLock:unspecified' --> 'org:foo:{strictly 1.1}'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/and.go

    	for _, t := range a.Tags {
    		if _, has := x[t.Key]; has {
    			return true
    		}
    		x[t.Key] = struct{}{}
    	}
    
    	return false
    }
    
    // BySize returns true when sz satisfies a
    // ObjectSizeLessThan/ObjectSizeGreaterthan or a logical AND of these predicates
    // Note: And combines size and other predicates like Tags, Prefix, etc. This
    // method applies exclusively to size predicates only.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/RejectedModuleMessageBuilder.java

            if (hasRejectAll) {
                sb.append("Module '").append(module.getId()).append("' has been rejected:\n");
            } else {
                sb.append("Cannot find a version of '").append(module.getId()).append("' that satisfies the version constraints:\n");
            }
    
            Set<EdgeState> allEdges = new LinkedHashSet<>();
            allEdges.addAll(module.getIncomingEdges());
            allEdges.addAll(module.getUnattachedDependencies());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. pkg/test/framework/label/filter.go

    		return Selector{}, fmt.Errorf("conflicting selector specification: %q", s)
    	}
    
    	return NewSelector(present, absent), nil
    }
    
    // Selects returns true, if the given label set satisfies the Selector.
    func (f *Selector) Selects(inputs Set) bool {
    	return !inputs.containsAny(f.absent) && inputs.containsAll(f.present)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. cmd/post-policy_test.go

    	contentTypeHdr = strings.Replace(contentTypeHdr, "multipart/form-data", "multipart/form-datA", 1)
    	req.Header.Set("Content-Type", contentTypeHdr)
    	req.Header.Set("User-Agent", "Mozilla")
    
    	// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    	// Call the ServeHTTP to execute the handler.
    	apiRouter.ServeHTTP(rec, req)
    
    	ctx, cancel := context.WithCancel(GlobalContext)
    	defer cancel()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. src/runtime/pprof/label.go

    // This is an initial implementation, but it will be replaced with something
    // that admits incremental immutable modification more efficiently.
    type labelMap map[string]string
    
    // String satisfies Stringer and returns key, value pairs in a consistent
    // order.
    func (l *labelMap) String() string {
    	if l == nil {
    		return ""
    	}
    	keyVals := make([]string, 0, len(*l))
    
    	for k, v := range *l {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

            when:
            allowAllRepositoryInteractions()
            fails ':checkDeps'
    
            then:
            failure.assertHasCause """Cannot find a version of 'org:databind' that satisfies the version constraints:"""
    
            where:
            dep1           | v1      | dep2           | v2
            'org:core'     | '2.9.4' | 'org:databind' | '2.7.9'
            'org:databind' | '2.7.9' | 'org:core'     | '2.9.4'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  10. docs/bucket/lifecycle/README.md

    the prefix `user-uploads/` as soon as the latest object satisfies the expiration criteria. 
    
    > NOTE: If the latest object is a delete marker then filtering based on `Filter.Tags` is ignored and 
    > if the DELETE marker modTime satisfies the `Expiration.Days` then all versions of the object are 
    > immediately purged.
    
    ```
    {
        "Rules": [
            {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top