Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,005 for predates (0.15 sec)

  1. guava/src/com/google/common/collect/FilteredMultimapValues.java

            Predicates.<Entry<K, V>>and(
                multimap.entryPredicate(), Maps.<V>valuePredicateOnEntries(Predicates.in(c))));
      }
    
      @Override
      public boolean retainAll(Collection<?> c) {
        return Iterables.removeIf(
            multimap.unfiltered().entries(),
            // explicit <Entry<K, V>> is required to build with JDK6
            Predicates.<Entry<K, V>>and(
                multimap.entryPredicate(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

        def "creates snapshot for string"() {
            expect:
            def snapshot = snapshotter.snapshot("abc")
            snapshot instanceof StringValueSnapshot
            snapshot == snapshotter.snapshot("abc")
            snapshot != snapshotter.snapshot("other")
        }
    
        def "creates snapshot for isolated string"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

         * Creates a dependency scope configuration which can change roles.
         */
        Configuration dependencyScopeUnlocked(String name);
    
        /**
         * Creates a dependency scope configuration which can change role and executes the provided
         * {@code action} against the configuration.
         */
        Configuration dependencyScopeUnlocked(String name, Action<? super Configuration> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskOutputs.java

         * the results of the task will not be cached.</p>
         *
         * <p>You may add multiple such predicates. The results of the task are not cached if any of the predicates return {@code false},
         * or if any of the predicates passed to {@link #doNotCacheIf(String, Spec)} returns {@code true}. If {@code cacheIf()} is not specified,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 11:37:21 UTC 2019
    - 7.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionFactory.java

        /**
         * Creates an empty {@link ConfigurableFileCollection} instance.
         */
        ConfigurableFileCollection configurableFiles(String displayName);
    
        /**
         * Creates an empty {@link ConfigurableFileCollection} instance.
         */
        ConfigurableFileCollection configurableFiles();
    
        /**
         * Creates a {@link ConfigurableFileTree} instance with no base dir specified.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. pkg/controlplane/reconcilers/helpers_test.go

    	}
    	for i := 0; i < len(creates) || i < len(expectedCreates); i++ {
    		var expected, actual runtime.Object
    		if i < len(creates) {
    			actual = creates[i].GetObject()
    		}
    		if i < len(expectedCreates) {
    			expected = expectedCreates[i]
    		}
    		if !apiequality.Semantic.DeepEqual(expected, actual) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:23 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    nullValue() - Static method in class org.hamcrest.core.IsNull Creates a matcher that matches if examined object is null. nullValue(Class<T>) - Static method in class org.hamcrest.core.IsNull Creates a matcher that matches if examined object is null. nullValue() - Static method in class org.hamcrest.CoreMatchers Creates a matcher that matches if examined object is null. nullValue(Class<T>) - Static method in class org.hamcrest.CoreMatchers Creates a matcher that matches if examined object is null. O or(Matcher<?...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/java/org/gradle/architecture/test/TempDirectoryCreationControlTest.java

    
        public static ArchCondition<JavaClass> callMethodWithName(String ownerName, String methodName) {
            return callMethodWhere(JavaCall.Predicates.target(HasOwner.Predicates.With.<JavaClass>owner(name(ownerName)))
                .and(JavaCall.Predicates.target(name(methodName))))
                .as("call method %s.%s", ensureSimpleName(ownerName), methodName);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultIsolatableFactoryTest.groovy

        def snapshotter = new DefaultValueSnapshotter([], classLoaderHasher)
        def isolatableFactory = new DefaultIsolatableFactory(classLoaderHasher, managedFactoryRegistry)
    
        def "creates isolated string"() {
            expect:
            def original = "abc"
            def isolated = isolatableFactory.isolate(original)
            isolated instanceof StringValueSnapshot
            isolated.isolate().is(original)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/collection_ops_util.h

    // Creates a ReadVariableOp on a local variable.
    Value ReadLocalVariable(Value local_var, OpBuilder builder, Location loc);
    
    // Creates an AssignVariableOp on a local variable.
    TF::AssignVariableOp WriteLocalVariable(Value local_var, Value value,
                                            OpBuilder builder, Location loc);
    
    // Adds two values, or creates a logical-or if they are boolean type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top