Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for hasLink (0.1 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/FileSystemExtensions.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.extensions.core
    
    import org.gradle.internal.file.FileType
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import java.io.File
    import java.util.Arrays
    
    
    fun fileSystemEntryType(file: File): FileType =
        when {
            !file.exists() -> FileType.Missing
            file.isDirectory -> FileType.Directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/build.gradle.kts

    }
    
    moduleIdentity.createBuildReceipt()
    
    dependencies {
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.fileTemp)
        api(projects.serviceProvider)
        api(project(":hashing"))
        api(project(":build-operations"))
        api(libs.inject)
        api(libs.jsr305)
        api(libs.guava)
    
        implementation(projects.io)
        implementation(projects.time)
    
        implementation(libs.asm)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/DefaultToolingModelParameterCarrierFactory.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.models
    
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.snapshot.ValueSnapshotter
    import org.gradle.tooling.internal.adapter.ProtocolToModelAdapter
    import org.gradle.tooling.internal.consumer.connection.ToolingParameterProxy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top