Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for hasLink (0.28 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.cc

        size *= std::max(kDefaultCheapCost, dim);
      }
    
      return size;
    }
    
    int64_t InferTensorSize(const CostContext& context, mlir::TensorType type) {
      if (type.hasRank()) return GetRankedTensorSize(type);
      return context.default_unranked_tensor_size;
    }
    
    // The cost function for tf.LookupTableFindV2.
    int64_t InferLookupTableFindV2Cost(const CostContext& context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/AbstractModule.groovy

        TestFile getSha1File(TestFile file) {
            getHashFile(file, Hashing.sha1())
        }
    
        TestFile sha1File(TestFile file) {
            hashFile(file, Hashing.sha1())
        }
    
        TestFile getSha256File(TestFile file) {
            getHashFile(file, Hashing.sha256())
        }
    
        TestFile sha256File(TestFile file) {
            hashFile(file, Hashing.sha256())
        }
    
        TestFile getSha512File(TestFile file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/build.gradle.kts

    description = "Tools to take immutable, comparable snapshots of files and other things"
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
    
        api(libs.guava)
        api(libs.jsr305)
    
        implementation(libs.slf4jApi)
    
        testImplementation(project(":process-services"))
        testImplementation(project(":resources"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-base/build.gradle.kts

    }
    
    description = "Common shared build cache classes"
    
    dependencies {
        implementation(projects.stdlibJavaExtensions)
    
        api(projects.files)
        api(projects.hashing)
    
        testImplementation(testFixtures(projects.hashing))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 329 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/alg.go

    // license that can be found in the LICENSE file.
    
    package types
    
    import "cmd/compile/internal/base"
    
    // AlgKind describes the kind of algorithms used for comparing and
    // hashing a Type.
    type AlgKind int8
    
    //go:generate stringer -type AlgKind -trimprefix A alg.go
    
    const (
    	AUNK   AlgKind = iota
    	ANOEQ          // Types cannot be compared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpArtifact.groovy

                sha1File.assertIsFile()
                assert HashCode.fromString(sha1File.text) == Hashing.sha1().hashFile(getFile())
            }
            if (server.supportsHash(HttpServer.SupportedHash.MD5)) {
                def md5File = getMd5File()
                md5File.assertIsFile()
                assert HashCode.fromString(md5File.text) == Hashing.md5().hashFile(getFile())
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/build.gradle.kts

        api(project(":build-cache-packaging"))
        api(project(":build-cache-spi"))
        api(project(":build-operations"))
        api(project(":enterprise-operations"))
        api(project(":files"))
        api(project(":hashing"))
        api(project(":snapshots"))
    
        api(libs.jsr305)
    
        api(projects.stdlibJavaExtensions)
        implementation(libs.commonsIo)
        api(libs.guava)
        implementation(libs.slf4jApi)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/impl/DefaultCachingStateFactory.java

    import org.gradle.internal.execution.history.BeforeExecutionState;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.hash.Hashing;
    import org.slf4j.Logger;
    
    public class DefaultCachingStateFactory implements CachingStateFactory {
        private final Logger logger;
    
        public DefaultCachingStateFactory(Logger logger) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top