Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 120 for Unpack (0.16 sec)

  1. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/CommonsTarPacker.java

                PackerUtils.packEntry(input, tarOutput, buffer);
                tarOutput.closeArchiveEntry();
            }
            tarOutput.close();
        }
    
        @Override
        public void unpack(DataSource input, DataTargetFactory targetFactory) throws IOException {
            TarArchiveInputStream tarInput = new TarArchiveInputStream(input.openInput());
            while (true) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/wrapper-workflow.graffle

    D2146Styl{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf100 {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\qc\partightenfactor0 \f0\fs28 \cf0 2. Store and \ unpack \ distribution}WrapNOBounds{{127.0625, 182.78434999999999}, {91, 47}}ClassShapedGraphicFi{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf100 {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;}...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPackerPermissionTest.groovy

            def unixMode = Integer.parseInt(mode, 8)
    
            when:
            pack output, prop(FILE, sourceOutputFile)
    
            then:
            1 * filePermissionAccess.getUnixMode(sourceOutputFile) >> unixMode
            _ * sourceOutputFile._
            0 * _
    
            when:
            def input = new ByteArrayInputStream(output.toByteArray())
            unpack input, prop(FILE, targetOutputFile)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/build.gradle.kts

                outputFile = "${sourceSets.main.get().output.resourcesDir}/output.js"
                sourceMap = true
            }
        }
        val unpackKotlinJsStdlib by registering {
            group = "build"
            description = "Unpack the Kotlin JavaScript standard library"
            val outputDir = file("$buildDir/$name")
            inputs.property("compileClasspath", configurations.compileClasspath.get())
            outputs.dir(outputDir)
            doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/ZipPacker.java

                zipOutput.putNextEntry(entry);
                PackerUtils.packEntry(input, zipOutput, buffer);
                zipOutput.closeEntry();
            }
            zipOutput.close();
        }
    
        @Override
        public void unpack(DataSource input, DataTargetFactory targetFactory) throws IOException {
            ZipInputStream zipInput = new ZipInputStream(input.openInput());
            while (true) {
                ZipEntry entry = zipInput.getNextEntry();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxy.java

         */
        public static Map<String, Object> unpackProperties(Object parameter) {
            if (parameter == null) {
                throw new IllegalArgumentException("Cannot unpack properties from null");
            }
    
            Class<?> parameterInterface = getConsumerParameterInterface(parameter);
    
            // Intentionally including methods from the potential super-interfaces,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:27:26 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/JTarPacker.java

                tarOutput.putNextEntry(entry);
                PackerUtils.packEntry(input, tarOutput, buffer);
            }
            tarOutput.close();
        }
    
        @Override
        public void unpack(DataSource input, DataTargetFactory targetFactory) throws IOException {
            TarInputStream tarInput = new TarInputStream(input.openInput());
            while (true) {
                TarEntry entry = tarInput.getNextEntry();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/ServicesCodec.kt

        override fun encodingForType(type: Class<*>): Encoding? {
            // TODO - perhaps query the isolate owner to see whether the value is in fact a service
            val serviceType = serviceType(GeneratedSubclasses.unpack(type))
            return if (serviceType != null) {
                OwnerServiceEncoding(serviceType)
            } else {
                null
            }
        }
    
        private
        fun serviceType(type: Class<*>): Class<*>? {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-shared/src/integTest/groovy/org/gradle/integtests/TarSlipIntegrationTest.groovy

            def entryNames = new TarFile(evilTar).withCloseable {
                it.entries.collect { it.name }
            }
    
            expect:
            entryNames == ['../../tmp/evil.sh']
        }
    
        def "Copy task refuses to unpack evil tar"() {
            executer.withStacktraceEnabled()
    
            given:
            buildFile << '''
                task copyEvilTar(type: Copy) {
                    from(tarTree('evil.tar.bz'))
                    into('.')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top