Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 98 for unpackcmd (0.19 sec)

  1. 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)
  2. src/runtime/mpallocbits_test.go

    		0x4040404040404040,
    		0x4000400040004000,
    		0x1000404044ccaaff,
    	}
    	for _, p := range patterns {
    		buf := new(PallocBits)
    		for i := 0; i < len(buf); i++ {
    			buf[i] = p
    		}
    		b.Run(fmt.Sprintf("Unpacked%02X", p), func(b *testing.B) {
    			checkPallocSum(b, buf.Summarize(), SummarizeSlow(buf))
    			for i := 0; i < b.N; i++ {
    				buf.Summarize()
    			}
    		})
    	}
    }
    
    // Ensures page allocation works.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 22:00:17 UTC 2020
    - 13.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            property.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            property.calculateExecutionTimeValue()
    
            then:
            0 * _ // no side effects when calling setter or calculated values are not unpacked
    
            when:
            def unpackedValue = getter(property, getter, someOtherValue())
    
            then:
            unpackedValue == someValue()
            1 * sideEffect.execute(someValue())
            0 * _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    For example, imagine you want to unpack some dependencies and put the unpacked directories and files on the classpath.
    You can do so by registering an artifact transform action of type `Unzip`, as shown here:
    
    .Artifact transform registration without parameters
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/object.h

      template <class T>
      friend tensorflow::StatusOr<T> Cast(Handle handle);
      /// Infrastructure for converting a TaggedValue tuple function signature to an
      /// unpacked variable list.
      template <typename Fn, class TRET, class... ArgsOut>
      friend class UneraseCallHelper;
    };
    
    // Forward declare.
    template <class T>
    tensorflow::StatusOr<T> Cast(Handle handle);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top