Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for checkOuts (0.21 sec)

  1. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/RepositorySystemSupplier.java

    import org.eclipse.aether.spi.artifact.decorator.ArtifactDecoratorFactory;
    import org.eclipse.aether.spi.artifact.generator.ArtifactGeneratorFactory;
    import org.eclipse.aether.spi.checksums.ProvidedChecksumsSource;
    import org.eclipse.aether.spi.checksums.TrustedChecksumsSource;
    import org.eclipse.aether.spi.connector.RepositoryConnectorFactory;
    import org.eclipse.aether.spi.connector.checksum.ChecksumAlgorithmFactory;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemSupplier.java

    import org.eclipse.aether.spi.artifact.decorator.ArtifactDecoratorFactory;
    import org.eclipse.aether.spi.artifact.generator.ArtifactGeneratorFactory;
    import org.eclipse.aether.spi.checksums.ProvidedChecksumsSource;
    import org.eclipse.aether.spi.checksums.TrustedChecksumsSource;
    import org.eclipse.aether.spi.connector.RepositoryConnectorFactory;
    import org.eclipse.aether.spi.connector.checksum.ChecksumAlgorithmFactory;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 45.5K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerDependencyMappingIntegrationTest.groovy

                public class Lib1 {
                    public class func thing() { }
                }
    """
            lib1Repo.commit("v1")
            lib1Repo.createBranch("release")
            lib1Repo.checkout("release")
            executer.inDirectory(lib1Repo.workTree).withTasks("generateSwiftPmManifest").run()
            lib1Repo.commit("v2")
    
            settingsFile << """
                sourceControl {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilder.java

            private ChecksumBuilder(ChecksumKind kind) {
                this.kind = kind;
            }
    
            /**
             * Sets the origin, if not set already. This is
             * mostly used for automatic generation of checksums
             */
            void withOrigin(String origin) {
                if (this.origin == null) {
                    this.origin = origin;
                }
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/README.md

    *   Graph partitioning based on the hardware costs modeling.
    *   It supports general import/export where you can hook your own
        importer/exporter from any format to MLIR and export MLIR to anything.
    
    For more details, please checkout the
    [TAC workflow](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/compiler/mlir/lite/experimental/tac/README.md#tac-workflow)
    section
    
    ## How to use
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  6. cmd/erasure-healing-common.go

    //
    // 2. __offline__            - err == errDiskNotFound
    //
    // 3. __availableWithParts__ - has the latest copy of xl.meta and has all
    //                             parts with checksums matching; returned by disksWithAllParts
    //
    // 4. __outdated__           - returned by outDatedDisk, provided []StorageAPI
    //                             returned by diskWithAllParts is passed for latestDisks.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. cmd/encryption-v1.go

    		mac.Write([]byte(baseKey))
    		return sio.DecryptBuffer(nil, input, sio.Config{Key: mac.Sum(nil), CipherSuites: fips.DARECiphers()})
    	}
    }
    
    // decryptChecksums will attempt to decode checksums and return it/them if set.
    // if part > 0, and we have the checksum for the part that will be returned.
    func (o *ObjectInfo) decryptPartsChecksums(h http.Header) {
    	data := o.Checksum
    	if len(data) == 0 {
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2_test.go

    		Erasure: ErasureInfo{
    			Algorithm:    ReedSolomon.String(),
    			DataBlocks:   4,
    			ParityBlocks: 2,
    			BlockSize:    10000,
    			Index:        1,
    			Distribution: []int{1, 2, 3, 4, 5, 6, 7, 8},
    			Checksums: []ChecksumInfo{{
    				PartNumber: 1,
    				Algorithm:  HighwayHash256S,
    				Hash:       nil,
    			}},
    		},
    		MarkDeleted:      false,
    		Data:             data,
    		NumVersions:      1,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  9. cluster/images/etcd/Makefile

    		docker run --rm --interactive -v $${etcd_release_tmp_dir}:/etcdbin golang:$(GOLANG_VERSION)$(DOCKER_VOL_OPTS) /bin/bash -c \
    			"git clone https://github.com/etcd-io/etcd $$etcd_build_dir \
    			&& cd $$etcd_build_dir \
    			&& git checkout v$${version} \
    			&& $(arch_prefix) GOARCH=$(ARCH) ./build.sh \
    			&& cp -f bin/$(ARCH)/etcd* bin/etcd* /etcdbin; echo 'done'"; \
    		$(BIN_INSTALL) $$etcd_release_tmp_dir/etcd $$etcd_release_tmp_dir/etcdctl $(TEMP_DIR)/; \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    You can install Gradle Build Tool on Linux, macOS, or Windows.
    The installation can be done manually or using a package manager like https://sdkman.io/[SDKMAN!] or https://brew.sh/[Homebrew].
    
    You can find all Gradle releases and their checksums on the link:{website}/releases[releases page].
    
    [[sec:prerequisites]]
    == Prerequisites
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top