Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 194 for hasLink (0.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

        auto input_type = mlir::cast<ShapedType>(op.getInput().getType());
        auto output_type = mlir::cast<ShapedType>(op.getOutput().getType());
    
        if (!input_type.hasRank() || !output_type.hasRank()) return failure();
    
        // The pattern attempts to reduce the rank of the input to BroadcastTo.
        // Thus, we fail to match if the consuming reshape rank is larger.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. docs/en/docs/project-generation.md

        - 🤖 An automatically generated frontend client.
        - 🦇 Dark mode support.
    - 🐋 [Docker Compose](https://www.docker.com) for development and production.
    - 🔒 Secure password hashing by default.
    - 🔑 JWT token authentication.
    - 📫 Email based password recovery.
    - ✅ Tests with [Pytest](https://pytest.org).
    - 📞 [Traefik](https://traefik.io) as a reverse proxy / load balancer.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 21 21:12:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/build.gradle.kts

        api(project(":build-operations"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":diagnostics"))
        api(project(":file-collections"))
        api(project(":files"))
        api(project(":hashing"))
        api(project(":stdlib-java-extensions"))
        api(project(":logging"))
        api(project(":model-core"))
        api(project(":native"))
        api(project(":platform-base"))
        api(project(":workers"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/HashMultiset.java

    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Multiset implementation that uses hashing for key and entry access.
     *
     * @author Kevin Bourrillion
     * @author Jared Levy
     * @since 2.0
     */
    @GwtCompatible(serializable = true, emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/AbsolutePathFingerprintingStrategy.java

    import org.gradle.internal.fingerprint.FileSystemLocationFingerprint;
    import org.gradle.internal.fingerprint.FingerprintHashingStrategy;
    import org.gradle.internal.fingerprint.FingerprintingStrategy;
    import org.gradle.internal.fingerprint.hashing.FileSystemLocationSnapshotHasher;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.FileSystemSnapshot;
    
    import java.util.Map;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. cmd/erasure-metadata-utils_test.go

    	}
    
    	// Tests hashing order to be consistent.
    	for i, testCase := range testCases {
    		hashedOrder := hashOrder(testCase.objectName, 16)
    		if !reflect.DeepEqual(testCase.hashedOrder, hashedOrder) {
    			t.Errorf("Test case %d: Expected \"%v\" but failed \"%v\"", i+1, testCase.hashedOrder, hashedOrder)
    		}
    	}
    
    	// Tests hashing order to fail for when order is '-1'.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/native/language-native/build.gradle.kts

        api(project(":core"))
        api(project(":core-api"))
        api(project(":dependency-management"))
        api(project(":files"))
        api(project(":file-collections"))
        api(project(":file-temp"))
        api(project(":hashing"))
        api(project(":stdlib-java-extensions"))
        api(project(":model-core"))
        api(project(":persistent-cache"))
        api(project(":platform-base"))
        api(project(":platform-native"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. src/runtime/hash64.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Hashing algorithm inspired by
    // wyhash: https://github.com/wangyi-fudan/wyhash
    
    //go:build amd64 || arm64 || loong64 || mips64 || mips64le || ppc64 || ppc64le || riscv64 || s390x || wasm
    
    package runtime
    
    import (
    	"runtime/internal/math"
    	"unsafe"
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 17:39:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/BasicZincScalaCompilerIntegrationTest.groovy

     */
    
    package org.gradle.scala.compile
    
    import org.gradle.integtests.fixtures.MultiVersionIntegrationSpec
    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.internal.hash.Hashing
    import org.gradle.test.fixtures.file.ClassFile
    import org.gradle.util.internal.VersionNumber
    import org.junit.Assume
    import org.junit.Rule
    
    import static org.gradle.scala.ScalaCompilationFixture.scalaDependency
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        testFixturesImplementation(project(":internal-testing"))
        testFixturesImplementation(project(":internal-integ-testing"))
    
        testFixturesImplementation(testFixtures(project(":hashing")))
    
        testFixturesImplementation(libs.kotlinCompilerEmbeddable)
    
        testFixturesImplementation(libs.junit)
        testFixturesImplementation(libs.mockitoKotlin)
        testFixturesImplementation(libs.jacksonKotlin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top