Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for unpackcmd (0.3 sec)

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

                myTask.nested = [new NamedBean('name', 'value1'), new NamedBean('name', 'value2')]
            """
    
            expect:
            succeeds "myTask"
        }
    
        def "nested Provider is unpacked"() {
            buildFile << taskWithNestedInput()
            buildFile << nestedBeanWithStringInput()
            buildFile << """
                myTask.nested = provider { new NestedBean(providers.gradleProperty('input').get()) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/encoding/gob/doc.go

    stored), followed by the usual encoding of concrete (dynamic) value stored in
    the interface value. (A nil interface value is identified by the empty string
    and transmits no value.) Upon receipt, the decoder verifies that the unpacked
    concrete item satisfies the interface of the receiving variable.
    
    If a value is passed to [Encoder.Encode] and the type is not a struct (or pointer to struct,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/resolver.go

    // unpackRecv unpacks a receiver type and returns its components: ptr indicates whether
    // rtyp is a pointer receiver, rname is the receiver type name, and tparams are its
    // type parameters, if any. The type parameters are only unpacked if unpackParams is
    // set. If rname is nil, the receiver is unusable (i.e., the source has a bug which we
    // cannot easily work around).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. src/go/types/resolver.go

    // unpackRecv unpacks a receiver type and returns its components: ptr indicates whether
    // rtyp is a pointer receiver, rname is the receiver type name, and tparams are its
    // type parameters, if any. The type parameters are only unpacked if unpackParams is
    // set. If rname is nil, the receiver is unusable (i.e., the source has a bug which we
    // cannot easily work around).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-communication.mlir

      },  {
        "mhlo.return"(%arg1) : (tensor<f32>) -> ()
      }) : (tensor<i1>) -> tensor<f32>
      func.return %1 : tensor<f32>
    }
    
    // -----
    
    // Tests `mhlo.if` with tuple arg not from a `mhlo.tuple` is unpacked.
    
    // CHECK-LABEL: func @if_unpack_tuple_arg
    // CHECK-SAME:  ([[ARG0:%.*]]: tensor<i1>, [[ARG1:%.*]]: tuple<tensor<f32>, tensor<f32>>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 18:24:20 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  6. src/os/file.go

    // if a call that takes a file name fails, such as [Open] or [Stat], the error
    // will include the failing file name when printed and will be of type
    // [*PathError], which may be unpacked for more information.
    //
    // The os interface is intended to be uniform across all operating systems.
    // Features not generally available appear in the system-specific package syscall.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: %[[UNPACK:.*]]:2 = "tf.Unpack"(%[[NEG]]) <{axis = 1 : i64}> {device = ""}
      %unpacked:2 = "tf.Unpack"(%arg0) {axis = 1 : i64, device = ""}
                    : (tensor<?x2xf32>) -> (tensor<?xf32>, tensor<?xf32>)
      %0 = "tf.Neg"(%unpacked#0): (tensor<?xf32>) -> tensor<?xf32>
      %1 = "tf.Neg"(%unpacked#1): (tensor<?xf32>) -> tensor<?xf32>
    
      // CHECK: return %[[UNPACK]]#0, %[[UNPACK]]#1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/archives/groovy",files="build.gradle[tags=unpack-archive-example]"]
    ====
    
    As with a normal copy, you can control which files are unpacked via <<#sec:filtering_files,filters>> and even <<#sec:renaming_files,rename files>> as they are unpacked.
    
    More advanced processing can be handled by the link:{groovyDslPath}/org.gradle.api.tasks.AbstractCopyTask.html#eachFile(org.gradle.api.Action)[eachFile()] method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

          if (!data_ty || !data_ty.hasStaticShape()) return failure();
        }
    
        // Compute type of each of the items and shape to use while reshaping inputs
        // so that they can be unpacked to extract out individual items.
        ArrayRef<int64_t> item_shape = out_ty.getShape().drop_front(1);
        auto item_ty = tensorflow::GetTypeFromTFTensorShape(
            item_shape, out_ty.getElementType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    When encountering a corrupt cached artifact, Gradle would remove whatever was already unpacked and re-execute the task to make sure the build had a chance to succeed.
    
    While this behavior was intended to make a build successful, this had the adverse effect of hiding problems and led to reduced cache performance.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top