Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for unpacked (0.32 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ArchiveTaskPermissionsIntegrationTest.groovy

            and:
            buildFile << """
                task unpack(type: Copy) {
                    from $treeMethod("$archName")
                    into 'unpacked'
                }
                """
    
            when:
            run "unpack"
            and:
            then:
            file("unpacked/testdir").mode == 0753
            file("unpacked/testdir/reference.txt").mode == 0762
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 11 06:18:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. 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)
  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. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.h

                                         ArrayAttr explicit_paddings,
                                         Value &padding, int num_dims = 4);
    
    // Given value that is in 8bit type, but holds 4bit data in unpacked format,
    // pack to nibble format along pack_dim.
    // If the pack_dim size is odd, add 1-size 0 padding and then pack.
    Value PackOperand(OpBuilder &builder, Location loc, Value value, int pack_dim);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/state/Managed.java

         */
        @Nullable
        Object unpackState();
    
        /**
         * Is this object graph immutable? Returns false if this object may be mutable, in which case the state should be unpacked and isolated.
         */
        boolean isImmutable();
    
        /**
         * Returns the public type of this managed instance. Currently is used to identify the implementation.
         */
        Class<?> publicType();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MergeProviderTest.groovy

            when:
            provider.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            provider.calculateExecutionTimeValue()
    
            then:
            0 * _ // no side effects when values are not unpacked
    
            when:
            def result = provider.getOrNull()
    
            then:
            result == ["left", "right"]
            1 * leftSideEffect.execute("left")
    
            then: // ensure ordering
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/antmigration/SamplesAntImportIntegrationTest.groovy

            def dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
            succeeds('javadocJar', 'unpackJavadocs')
    
            then: "The HTML Javadoc files are unpacked to the 'dist' directory"
            dslDir.file('build/dist/org/example/app/HelloApp.html').isFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("antMigration/multiProject")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/TypeMetadataWalker.java

     * Nested {@code Map}s, {@code Iterable}s are resolved as child properties.
     * Nested iterables and maps can be further nested, i.e. {@code Map<String, Iterable<Iterable<String>>>} is supported.
     * Nested {@link Provider}s are unpacked, and the provided type is traversed transparently.
     */
    public interface TypeMetadataWalker<T, V extends TypeMetadataWalker.TypeMetadataVisitor<T>> {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderStartParameterConverter.java

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    
    class ProviderStartParameterConverter {
    
        private List<TaskExecutionRequest> unpack(final List<InternalLaunchable> launchables) {
            // Important that the launchables are unpacked on the client side, to avoid sending back any additional internal state that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

    // your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked.
    // The next step is to copy (using pkg/conversion) into the internal struct. The runtime
    // package's DefaultScheme has conversion functions installed which will unpack the
    // JSON stored in RawExtension, turning it into the correct object type, and storing it
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top