Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 401 for satisfies (0.35 sec)

  1. 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)
  2. 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)
  3. src/cmd/compile/internal/types2/instantiate.go

    			*cause = check.sprintf("%s does not %s %s (%s)", V, verb, T, detail)
    		}
    		return false
    	}
    
    	// Every type satisfies the empty interface.
    	if Ti.Empty() {
    		return true
    	}
    	// T is not the empty interface (i.e., the type set of T is restricted)
    
    	// An interface V with an empty type set satisfies any interface.
    	// (The empty set is a subset of any set.)
    	Vi, _ := Vu.(*Interface)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    		},
    		{
    			name: "satisfies with requiredDuringSchedulingIgnoredDuringExecution in PodAffinity using In operator that matches the existing pod",
    			pod:  st.MakePod().Namespace(defaultNamespace).Labels(podLabel2).PodAffinityIn("service", "region", []string{"securityscan", "value2"}, st.PodAffinityWithRequiredReq).Obj(),
    			pods: []*v1.Pod{pod},
    			node: &node1,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyCallsTracker.java

     * matches a method or property and has not been intercepted yet. <p>
     *
     * If it satisfies, then the third party may mark the call as intercepted with {@link InstrumentedGroovyCallsTracker#markCurrentCallAsIntercepted}, so that other
     * parties will not be able to match the call.
     */
    @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. src/errors/errors.go

    // file system that does not support hard links.
    //
    // Functions and methods should not return this error but should instead
    // return an error including appropriate context that satisfies
    //
    //	errors.Is(err, errors.ErrUnsupported)
    //
    // either by directly wrapping ErrUnsupported or by implementing an [Is] method.
    //
    // Functions and methods should document the cases in which an error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 19:45:41 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode.go

    		// floats in the smallest width that preserves value so that equivalent float32 and
    		// float64 values encode to identical bytes, as they do in a JSON
    		// encoding. Satisfies one of the "Core Deterministic Encoding Requirements".
    		ShortestFloat: cbor.ShortestFloat16,
    
    		// ShortestFloat doesn't apply to NaN or Inf values. Inf values are losslessly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/go/types/instantiate.go

    			*cause = check.sprintf("%s does not %s %s (%s)", V, verb, T, detail)
    		}
    		return false
    	}
    
    	// Every type satisfies the empty interface.
    	if Ti.Empty() {
    		return true
    	}
    	// T is not the empty interface (i.e., the type set of T is restricted)
    
    	// An interface V with an empty type set satisfies any interface.
    	// (The empty set is a subset of any set.)
    	Vi, _ := Vu.(*Interface)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Iterables.java

            ? ((Collection<?>) removeFrom).retainAll(checkNotNull(elementsToRetain))
            : Iterators.retainAll(removeFrom.iterator(), elementsToRetain);
      }
    
      /**
       * Removes, from an iterable, every element that satisfies the provided predicate.
       *
       * <p>Removals may or may not happen immediately as each element is tested against the predicate.
       * The behavior of this method is not specified if {@code predicate} is dependent on {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

                    onlyIfSpec = onlyIfSpec.and(onlyIfClosure, "Task satisfies onlyIf closure");
                }
            });
        }
    
        @Override
        public void onlyIf(final Spec<? super Task> spec) {
            taskMutator.mutate("Task.onlyIf(Spec)", new Runnable() {
                @Override
                public void run() {
                    onlyIfSpec = onlyIfSpec.and(spec, "Task satisfies onlyIf spec");
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top