Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 448 for hasLink (0.14 sec)

  1. platforms/core-execution/build-cache-packaging/build.gradle.kts

        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Package build cache results"
    
    dependencies {
    
        api(project(":build-cache-base"))
        api(project(":files"))
        api(project(":hashing"))
        api(project(":snapshots"))
    
        api(libs.guava)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(libs.commonsCompress)
        implementation(libs.commonsIo)
        implementation(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 864 bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/ImplementationSnapshotTest.groovy

     */
    
    package org.gradle.internal.snapshot.impl
    
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashable
    import org.gradle.internal.hash.Hasher
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.hash.TestHashCodes
    import spock.lang.Specification
    
    class ImplementationSnapshotTest extends Specification {
    
        static final SHARED_UNTRACKABLE_LAMBDA = TestLambdas.createUntrackableLambda()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:07 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/DefaultCacheAwareExternalResourceAccessorTest.groovy

    import org.gradle.api.internal.file.temp.TemporaryFileProvider
    import org.gradle.cache.internal.ProducerGuard
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.resource.ExternalResource
    import org.gradle.internal.resource.ExternalResourceName
    import org.gradle.internal.resource.ExternalResourceReadResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/ZipEntryContextHasher.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint.hashing;
    
    import org.gradle.internal.hash.HashCode;
    
    import javax.annotation.Nullable;
    import java.io.IOException;
    
    /**
     * Hashes a zip entry (e.g. a class file in a jar, a manifest file, a properties file)
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/ResourceFilter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.changedetection.state;
    
    import org.gradle.internal.fingerprint.hashing.ConfigurableNormalizer;
    import org.gradle.internal.hash.Hasher;
    
    import java.util.function.Supplier;
    
    public interface ResourceFilter extends ConfigurableNormalizer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/ResourceHasher.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint.hashing;
    
    /**
     * Hashes resources (e.g., a class file in a jar or a class file in a directory)
     */
    public interface ResourceHasher extends ConfigurableNormalizer, RegularFileSnapshotContextHasher, ZipEntryContextHasher {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 880 bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @NonNullApi
    package org.gradle.internal.fingerprint.hashing;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 713 bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/RegularImmutableMap.java

       * double the index of the entry in entrySet.asList.)
       *
       * The basic data structure is described in https://en.wikipedia.org/wiki/Open_addressing.
       * The pointer to a key is stored in hashTable[Hashing.smear(key.hashCode()) % table.length],
       * save that if that location is already full, we try the next index, and the next, until we
       * find an empty table position.  Since the table has a power-of-two size, we use
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/DefaultArtifactMetadataSource.java

    import org.gradle.internal.component.model.DefaultIvyArtifactName;
    import org.gradle.internal.component.model.IvyArtifactName;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hashing;
    import org.gradle.internal.resolve.result.BuildableModuleComponentMetaDataResolveResult;
    import org.gradle.internal.resolve.result.BuildableModuleVersionListingResolveResult;
    import org.slf4j.Logger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top