Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for unpackcmd (0.33 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/DefaultToolingModelParameterCarrierFactory.kt

                return viewBuilder.build(parameter)!!
            }
    
            override fun getHash(): HashCode {
                val unpacked = ToolingParameterProxy.unpackProperties(parameter)
                return Hashing.hashHashable(valueSnapshotter.snapshot(unpacked))
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

            // Unpack into temporary directory (but on same file system as our target directory location)
            File unpackFolder = unpack(jdkArchive);
            try {
                // Get the folder that is the real root of the unpacked JDK, skipping any archive root folder
                UnpackedRoot unpackedRoot = determineUnpackedRoot(unpackFolder);
    
                validateMetadataMatchesSpec(spec, uri, unpackedRoot.metadata);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.groovy

                        "({languageVersion=99, vendor=matching('exotic'), implementation=vendor-specific}) from '$archiveUri', " +
                        "due to: Unpacked JDK archive does not contain a Java home: " + temporaryFolder.testDirectory.file("user-home", ".tmp", "jdks", "toolchain"))
        }
    
        def "can download with basic authentication"() {
            settingsFile <<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

            def jansiLibraryLocator = new JansiStorageLocator()
            def jansiStorage = jansiLibraryLocator.locate(nativeDir)
            library = jansiStorage.targetLibFile
        }
    
        def "native services libs are unpacked to gradle user home dir"() {
            given:
            executer.withArguments('-q')
    
            when:
            succeeds("help")
    
            then:
            nativeDir.directory
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

        }
    
        /**
         * The distribution base specifies whether the unpacked wrapper distribution should be stored in the project or in
         * the gradle user home dir.
         */
        @Input
        public PathBase getDistributionBase() {
            return distributionBase;
        }
    
        /**
         * The distribution base specifies whether the unpacked wrapper distribution should be stored in the project or in
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/components/post_calibration_component.mlir

    // RUN:   -split-input-file | FileCheck %s --check-prefix=CHECK-NO-UNPACK
    
    // Tests that a simple dot_general (lifted as a function) with CustomAggregators
    // around it is quantized. The resulting graph has quantized types unpacked into
    // int ops.
    func.func @main(%arg0: tensor<1x1024xf32>) -> tensor<1x3xf32> {
      %0 = "tf.Const"() <{value = dense<0.5> : tensor<1024x3xf32>}> : () -> tensor<1024x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/UndefinedBuildExecutionIntegrationTest.groovy

            def dirContents = dir.list()
            if (dirContents) {
                printFileTree(dir)
            }
            // caches: Gradle user home caches, not present in project .gradle caches directory
            // native: unpacked native platform libraries, not present in project .gradle caches directory
            // .tmp: Temporary folder for worker classpath files and configuration caching report intermediate files, not present in project .gradle caches directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

      quantization_config.mutable_static_range_ptq_preset()
          ->set_enable_per_channel_quantized_weight(
              quantization_options.enable_per_channel_quantization());
      // When targeting server TPUs quantized types should be unpacked into
      // integer ops.
      quantization_config.mutable_pipeline_config()->set_unpack_quantized_types(
          true);
      *quantization_config.mutable_debugger_config() =
          quantization_options.debugger_config();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            then:
            keySetValue == ["some key", "other key"].toSet()
            // provider of the value in the Map entry does not need to be unpacked
            0 * sideEffect1.execute("some value")
            // provider of the whole map on the other hand must be unpacked and propagates the side effect
            1 * sideEffect2.execute(["other key": "other value"])
            0 * _
    
            where:
            getter      | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            _ * visitor.visitNested() >> true
            1 * visitor.visitInputProperty('nested.name$0', _, false)
            1 * visitor.visitInputProperty('nested.name$1', _, false)
        }
    
        def "providers are unpacked"() {
            def task = project.tasks.create("myTask", TaskWithNestedObject)
            task.nested = project.provider { new NestedBean() }
    
            when:
            visitProperties(task)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top