Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 91 for unpackcmd (0.43 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            then:
            keySetValue == ["some key", "other key"].toSet()
            // provider of the value in the Map entry does not need to be unpacked
            0 * sideEffect1.execute("some value")
            // provider of the whole map on the other hand must be unpacked and propagates the side effect
            1 * sideEffect2.execute(["other key": "other value"])
            0 * _
    
            where:
            getter      | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  2. src/cmd/go/scriptreadme_test.go

    $HOME and $TMPDIR.
    
    The lines at the top of the script are a sequence of commands to be executed by
    a small script engine configured in ../../script_test.go (not the system shell).
    
    The scripts' supporting files are unpacked relative to $GOPATH/src
    (aka $WORK/gopath/src) and then the script begins execution in that directory as
    well. Thus the example above runs in $WORK/gopath/src with GOPATH=$WORK/gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            _ * visitor.visitNested() >> true
            1 * visitor.visitInputProperty('nested.name$0', _, false)
            1 * visitor.visitInputProperty('nested.name$1', _, false)
        }
    
        def "providers are unpacked"() {
            def task = project.tasks.create("myTask", TaskWithNestedObject)
            task.nested = project.provider { new NestedBean() }
    
            when:
            visitProperties(task)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	// Start final link command line.
    	// Note: code below knows that link.p[targ] is the target.
    	var (
    		link      []string
    		targ      int
    		ispackcmd bool
    	)
    	if ispkg {
    		// Go library (package).
    		ispackcmd = true
    		link = []string{"pack", packagefile(pkg)}
    		targ = len(link) - 1
    		xmkdirall(filepath.Dir(link[targ]))
    	} else {
    		// Go command.
    		elem := name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/cmd/go/internal/clean/clean.go

    The -testcache flag causes clean to expire all test results in the
    go build cache.
    
    The -modcache flag causes clean to remove the entire module
    download cache, including unpacked source code of versioned
    dependencies.
    
    The -fuzzcache flag causes clean to remove files stored in the Go build
    cache for fuzz testing. The fuzzing engine caches files that expand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/README

    $HOME and $TMPDIR.
    
    The lines at the top of the script are a sequence of commands to be executed by
    a small script engine configured in ../../script_test.go (not the system shell).
    
    The scripts' supporting files are unpacked relative to $GOPATH/src
    (aka $WORK/gopath/src) and then the script begins execution in that directory as
    well. Thus the example above runs in $WORK/gopath/src with GOPATH=$WORK/gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. pkg/util/iptables/iptables.go

    	// Also, quoted multi-word comments (which are counted as a single arg)
    	// will be unpacked into multiple args,
    	// in order to compare against iptables-save output (which will be split at whitespace boundary)
    	// e.g. a single arg('"this must be before the NodePort rules"') will be unquoted and unpacked into 7 args.
    	var argsCopy []string
    	for i := range args {
    		tmpField := strings.Trim(args[i], "\"")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  8. tensorflow/c/eager/parallel_device/parallel_device.cc

            status, TF_UNIMPLEMENTED,
            absl::StrCat(
                "Trying to copy a tensor out of a parallel device. Since there "
                "are multiple components to parallel tensors, they must be "
                "unpacked explicitly.\n",
                tensorflow::unwrap(tensor)->DebugString())
                .c_str());
        return nullptr;
      }
    }
    
    // For TFE_CustomDevice::execute in the parallel device registration.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 29 22:05:31 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            def value = property.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            def executionTimeValue = property.calculateExecutionTimeValue()
            then:
            0 * _ // no side effects until values are unpacked
    
            when:
            def unpackedValue = value.get()
            then:
            unpackedValue == toImmutable(expectedUnpackedValue)
            1 * sideEffect1.execute("some value")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

    absl::StatusOr<mhlo::TupleOp> Tf2XlaRewriter::CompileWithHloImporter(
        tensorflow::OpKernelContext& op_context) {
      // XLA can only return a single value. Wrap all output op return values
      // in a Tuple op that gets unpacked later.
      std::vector<xla::XlaOp> output_values;
      for (int i = 0, e = op_->getNumResults(); i < e; i++) {
        tensorflow::Tensor* output = op_context.mutable_output(i);
        const tensorflow::XlaExpression* expr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top