Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 374 for satisfies (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ScriptDependencyResolveIntegrationTest.groovy

                    }
                }
            """
    
            expect:
            fails 'help'
            failureCauseContains('Cannot find a version of \'org.apache.logging.log4j:log4j-core\' that satisfies the version constraints')
        }
    
        @Issue("gradle/gradle#19300")
        def 'allows to upgrade log4j to 3.x one day'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top