Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 102 for hasLink (0.13 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpBuildCacheServer.groovy

    package org.gradle.test.fixtures.server.http
    
    import com.google.common.base.Preconditions
    import org.eclipse.jetty.servlet.FilterHolder
    import org.eclipse.jetty.webapp.WebAppContext
    import org.gradle.internal.hash.Hashing
    import org.gradle.test.fixtures.file.TestDirectoryProvider
    import org.gradle.test.fixtures.file.TestFile
    import org.junit.rules.ExternalResource
    
    import javax.servlet.DispatcherType
    import javax.servlet.Filter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td

    def AreTheSameValue : Constraint<
      CPred<"$0 == $1">>;
    
    // Checks if the value has rank.
    def HasRank : Constraint<
      CPred<"$0.getType().cast<ShapedType>().hasRank()">>;
    
    // Checks if the value has rank of `n`.
    class HasRankOf<int n> : Constraint<
      CPred<"$0.getType().cast<ShapedType>().hasRank() && "
            "$0.getType().cast<ShapedType>().getRank() == " # n>,
      "Checks if the value has rank of 'n'.">;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 04:55:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. cmd/erasure-sets_test.go

    		{"SHØRT", 49},
    		{"There are far too many object names, and far too few bucket names!", 8},
    		{"a/b/c/", 159},
    		{"/a/b/c", 96},
    		{string([]byte{0xff, 0xfe, 0xfd}), 147},
    	}
    
    	// Tests hashing order to be consistent.
    	for i, testCase := range testCases {
    		if sipHashElement := hashKey("SIPMOD", testCase.objectName, 200, testUUID); sipHashElement != testCase.sipHash {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 12 07:21:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-example-client/build.gradle.kts

        implementation(projects.buildOperations)
        implementation(projects.concurrent)
        implementation(projects.fileTemp)
        implementation(projects.files)
        implementation(projects.functional)
        implementation(projects.hashing)
        implementation(projects.stdlibJavaExtensions)
        implementation(projects.persistentCache)
        implementation(projects.snapshots)
    
        implementation(libs.commonsIo)
        implementation(libs.guava)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/fingerprint/impl/AbsolutePathFileCollectionFingerprinter.java

    import org.gradle.internal.execution.model.InputNormalizer;
    import org.gradle.internal.fingerprint.DirectorySensitivity;
    import org.gradle.internal.fingerprint.FileNormalizer;
    import org.gradle.internal.fingerprint.hashing.FileSystemLocationSnapshotHasher;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.BuildSession.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/scripts/BuildScriptCompilationAndInstrumentation.java

    import org.gradle.internal.file.TreeType;
    import org.gradle.internal.fingerprint.CurrentFileCollectionFingerprint;
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.hash.Hashing;
    import org.gradle.internal.snapshot.ValueSnapshot;
    
    import javax.annotation.Nullable;
    import javax.annotation.OverridingMethodsMustInvokeSuper;
    import java.io.File;
    import java.util.Map;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/export_utils.h

    // ShapeContainerT is any type with the following methods:
    //   bool hasRank()
    //   ArrayRef<int64_t> getShape()
    // This includes mlir::TF::ShapeAttr and mlir::ShapedType.
    template <typename ShapeContainerT>
    void SetTensorShapeProto(ShapeContainerT shape, TensorShapeProto* proto) {
      if (shape.hasRank()) {
        for (int64_t dim : shape.getShape()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. testing/internal-testing/build.gradle.kts

            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(project(":base-services"))
        api(project(":concurrent"))
        api(project(":hashing"))
        api(project(":stdlib-java-extensions"))
        api(project(":native"))
    
        api(libs.groovy)
        api(libs.groovyXml)
        api(libs.hamcrest)
        api(libs.hamcrestCore)
        api(libs.junit)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/HashingTest.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.collect.Hashing.smear;
    
    import com.google.common.annotations.GwtCompatible;
    import junit.framework.TestCase;
    
    /** Tests for {@code Hashing}. */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class HashingTest extends TestCase {
      public void testSmear() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/software/resources-gcs/build.gradle.kts

    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":resources"))
    
        api(libs.gcs)
        api(libs.jsr305)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":hashing"))
        implementation(project(":logging-api"))
    
        implementation(libs.commonsLang)
        implementation(libs.googleApiClient)
        implementation(libs.googleHttpClientGson)
        implementation(libs.googleHttpClient)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top