Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 98 for unpackcmd (0.26 sec)

  1. src/cmd/go/testdata/vcstest/svn/hello.txt

    </msg>
    </logentry>
    </log>
    -- conf/authz --
    -- conf/passwd --
    -- conf/svnserve.conf --
    -- db/current --
    0
    -- db/format --
    6
    layout sharded 1000
    -- db/fs-type --
    fsfs
    -- db/fsfs.conf --
    -- db/min-unpacked-rev --
    0
    -- db/revprops/0/0 --
    K 8
    svn:date
    V 27
    2017-09-22T01:11:53.895835Z
    END
    -- db/revs/0/0 --
    PLAIN
    END
    ENDREP
    id: 0.0.r0/17
    type: dir
    count: 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderSpec.groovy

            def value = provider.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            def executionTimeValue = provider.calculateExecutionTimeValue()
            then:
            0 * _ // no side effects when values are not unpacked
    
            when:
            def unpackedValue = value.get()
            then:
            unpackedValue == someValue()
            1 * sideEffect.execute(someValue())
            0 * _
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/build-boring.sh

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # Do not run directly; run build.sh, which runs this in Docker.
    # This script builds boringssl, which has already been unpacked in /boring/boringssl.
    
    set -e
    id
    date
    cd /boring
    
    # Go requires -fPIC for linux/amd64 cgo builds.
    # Setting -fPIC only affects the compilation of the non-module code in libcrypto.a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:28:09 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    ❯ ls /opt/gradle/gradle-{gradleVersion}
    LICENSE  NOTICE  bin  README  init.d  lib  media
    ----
    
    [[sec:linux_macos_users_2]]
    
    **Step 3 - Configure your system environment**
    
    To install Gradle, the path to the unpacked files needs to be in your Path.
    Configure your `PATH` environment variable to include the `bin` directory of the unzipped distribution, e.g.:
    
    [subs="attributes"]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

            // TODO(b/202047549) Generalize to the packed case.
            old_partitioned_input.emitOpError(
                "TPUPartitionedInputV2 variable used in outside compiled code is "
                "only supported with UNPACKED ops (wrap value in tf.identity or"
                "disable packing in TPUStrategy)");
            return failure();
          }
          read_use.set(new_reads[0]);
        }
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top