Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 239 for hasLink (0.21 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelReferenceNode.java

        }
    
        @Override
        public boolean hasLink(String name, Predicate<? super MutableModelNode> predicate) {
            return target != null && target.hasLink(name, predicate);
        }
    
        @Override
        public boolean hasLink(String name) {
            return target != null && target.hasLink(name);
        }
    
        @Override
        public <T> T getPrivateData(ModelType<T> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

    import org.gradle.model.internal.type.ModelType;
    
    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Set;
    
    public interface ModelNode {
    
        boolean hasLink(String name);
    
        boolean hasLink(String name, ModelType<?> type);
    
        // Note: order is crucial here. Nodes are traversed through these states in the order defined below
        enum State {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

            return this.executedRules == null ? Collections.<ModelRuleDescriptor>emptyList() : this.executedRules;
        }
    
        @Override
        public boolean hasLink(String name, ModelType<?> type) {
            return hasLink(name, withType(type));
        }
    
        @Override
        public Iterable<? extends MutableModelNode> getLinks(ModelType<?> type) {
            return getLinks(withType(type));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RegistrySpec.groovy

                []
            }
    
            @Override
            int getLinkCount() {
                return 0
            }
    
            @Override
            boolean hasLink(String name) {
                return false
            }
    
            @Override
            boolean hasLink(String name, Predicate<? super MutableModelNode> predicate) {
                return false
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/cmd/go/scriptconds_test.go

    	add("GOEXPERIMENT", script.PrefixCondition("GOEXPERIMENT <suffix> is enabled", hasGoexperiment))
    	add("go-builder", script.BoolCondition("GO_BUILDER_NAME is non-empty", testenv.Builder() != ""))
    	add("link", lazyBool("testenv.HasLink()", testenv.HasLink))
    	add("msan", sysCondition("-msan", platform.MSanSupported, true))
    	add("mustlinkext", script.Condition("platform always requires external linking", mustLinkExt))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/model/collection/internal/BridgedCollections.java

                                    // Ignore tasks created after not closed
                                    return;
                                }
                                if (!containerNode.hasLink(name)) {
                                    ModelRegistration itemRegistration = ModelRegistrations
                                        .unmanagedInstanceOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 20 10:28:05 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/MutableModelNode.java

         * requested type available.
         */
        void defineRulesFor(NodePredicate predicate, ModelActionRole role, ModelAction action);
    
        boolean hasLink(String name, Predicate<? super MutableModelNode> predicate);
    
        @Nullable
        MutableModelNode getLink(String name);
    
        int getLinkCount(Predicate<? super MutableModelNode> predicate);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Hashing.java

     *
     * @author Kevin Bourrillion
     * @author Jesse Wilson
     * @author Austin Appleby
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class Hashing {
      private Hashing() {}
    
      /*
       * These should be ints, but we need to use longs to force GWT to do the multiplications with
       * enough precision.
       */
      private static final long C1 = 0xcc9e2d51;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 05 00:40:25 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Hashing.java

     *
     * @author Kevin Bourrillion
     * @author Jesse Wilson
     * @author Austin Appleby
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class Hashing {
      private Hashing() {}
    
      /*
       * These should be ints, but we need to use longs to force GWT to do the multiplications with
       * enough precision.
       */
      private static final long C1 = 0xcc9e2d51;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 05 00:40:25 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/hash/ChecksumBenchmark.java

        byte result = 0x01;
        // Trick the JVM to prevent it from using the hash function non-polymorphically
        result ^= Hashing.crc32().hashInt(reps).asBytes()[0];
        result ^= Hashing.adler32().hashInt(reps).asBytes()[0];
        for (int i = 0; i < reps; i++) {
          result ^= hashFunction.hashBytes(testBytes).asBytes()[0];
        }
        return result;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 13 16:19:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top