Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 264 for Fpack (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/promote_resources_to_args.mlir

      // CHECK-NOT: "tf.VarHandleOp"
      // CHECK-NOT: "tf.ReadVariableOp"
      // CHECK: %[[CONST:.*]] = "tf.Const"()
      // CHECK: %[[ADD:[0-9]*]] = "tf.AddV2"(%arg1, %[[CONST]])
      // CHECK: %[[PACK:[0-9]*]] = "tf.Pack"(%[[CONST]], %[[ADD]])
      // CHECK: return %[[PACK]]
      %0 = "tf.Const"() {value = dense<4.200000e+01> : tensor<f32>} : () -> tensor<f32>
      %1 = "tf.VarHandleOp"() {container = "", shared_name = "x"} : () -> tensor<!tf_type.resource<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_list_std.txt

    [!compiler:gc] skip
    [short] skip
    
    # Outside of GOROOT, our vendored packages should be reported as part of the standard library.
    go list -f '{{if .Standard}}{{.ImportPath}}{{end}}' std cmd
    stdout ^vendor/golang\.org/x/net/http2/hpack
    stdout ^cmd/vendor/golang\.org/x/arch/x86/x86asm
    ! stdout ^golang\.org/x/
    
    # The dependencies of those packages should also be vendored.
    go list -deps vendor/golang.org/x/crypto/chacha20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskArchiveErrorIntegrationTest.groovy

            """
    
            then:
            fails "customTask"
    
            failureHasCause(~/Failed to store cache entry $CACHE_KEY_PATTERN for task ':customTask': Could not pack tree 'output': Expected '${escapeString(file('build/output'))}' to be a file/)
            errorOutput =~ /Could not pack tree 'output'/
            def cacheKey = cacheOperations.getCacheKeyForTask(":customTask")
            !localCache.hasCacheEntry(cacheKey)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/http2/hpack/tables.go

    // If both name and value match, i is the matched index and nameValueMatch
    // becomes true. If only name matches, i points to that index and
    // nameValueMatch becomes false.
    //
    // The returned index is a 1-based HPACK index. For dynamic tables, HPACK says
    // that index 1 should be the newest entry, but t.ents[0] is the oldest entry,
    // meaning t.ents is reversed for dynamic tables. Hence, when t is a dynamic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyCommonsPacker.java

        private final Packer delegate;
    
        public SnappyCommonsPacker(Packer delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            delegate.pack(inputs, new DelegatingDataTarget(output) {
                @Override
                public OutputStream openOutput() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/install_cross_gobin.txt

    env GOBIN=$WORK/bin
    ! go install mycmd
    ! exists $GOBIN/linux_$GOARCH
    
    # The install directory for a cross-compiled standard command should include GOARCH.
    go list -f '{{.Target}}'  cmd/pack
    stdout ${GOROOT}[/\\]pkg[/\\]tool[/\\]${GOOS}_${GOARCH}[/\\]pack$
    
    -- mycmd/x.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 667 bytes
    - Viewed (0)
  7. src/cmd/pack/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Pack is a simple version of the traditional Unix ar tool.
    It implements only the operations needed by Go.
    
    Usage:
    
    	go tool pack op file.a [name...]
    
    Pack applies the operation to the archive, using the names as arguments to the operation.
    
    The operation op is given by one of these letters:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/GzipPacker.java

        private final Packer delegate;
    
        public GzipPacker(Packer delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            delegate.pack(inputs, new DelegatingDataTarget(output) {
                @Override
                public OutputStream openOutput() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      auto _format = _o->format;
      auto _dense_size = _o->dense_size;
      auto _array_segments_type = _o->array_segments.type;
      auto _array_segments = _o->array_segments.Pack(_fbb);
      auto _array_indices_type = _o->array_indices.type;
      auto _array_indices = _o->array_indices.Pack(_fbb);
      return tflite::CreateDimensionMetadata(
          _fbb,
          _format,
          _dense_size,
          _array_segments_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

                    when (filePropertyType) {
                        OutputFilePropertyType.DIRECTORY -> dir(pack(propertyValue))
                        OutputFilePropertyType.DIRECTORIES -> dirs(pack(propertyValue))
                        OutputFilePropertyType.FILE -> file(pack(propertyValue))
                        OutputFilePropertyType.FILES -> files(pack(propertyValue))
                    }
                }.run {
                    withPropertyName(propertyName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top