Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 667 for capture1 (0.45 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

            captureResults << executer.withTasks('capture1').run()
            captureResults << executer.withTasks('capture2').run()
    
            then:
            captureResults[0].assertTaskExecuted(':capture1')
            captureResults[1].assertTaskExecuted(':capture2')
    
            cleanup:
            daemon?.abort()
        }
    
        def "a daemon expiration listener receives expiration reasons continuous:#continuous"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/revived_types/flat_tensor_function.cc

        std::vector<ImmediateExecutionTensorHandle*> captures,
        ImmediateExecutionContext* ctx, std::unique_ptr<FlatTensorFunction>* out) {
      TF_RETURN_IF_ERROR(ctx->AddFunctionDef(*function_def));
      std::vector<ImmediateTensorHandlePtr> owned_captures;
      owned_captures.reserve(captures.size());
      for (ImmediateExecutionTensorHandle* capture : captures) {
        capture->Ref();
        owned_captures.push_back(ImmediateTensorHandlePtr(capture));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/tf_concrete_function_loading_test.cc

      // Capture is at index "10"
      saved.add_bound_inputs(10);
    
      // `func` has 4 inputs
      FunctionDef func = FuncDefWithNumInputsOutputs(4, 0);
    
      // `captures` only has a capture for index 5
      std::unordered_map<int, std::unique_ptr<TensorHandleConvertible>> captures;
      captures[5] = std::make_unique<DummyCapture>(context(), 10);
    
      std::unique_ptr<TFConcreteFunction> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/config/config.go

    	// StartTime is the start time the log capture time range.
    	// If set, Since must be unset.
    	StartTime time.Time `json:"startTime,omitempty"`
    	// EndTime is the end time the log capture time range.
    	// Default is now.
    	EndTime time.Time `json:"endTime,omitempty"`
    	// Since defines the start time the log capture time range.
    	// StartTime is set to EndTime - Since.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/listener.go

    	// VirtualInboundListenerName is the name for traffic capture listener
    	VirtualInboundListenerName = "virtualInbound"
    
    	// VirtualInboundCatchAllHTTPFilterChainName is the name of the catch all http filter chain
    	VirtualInboundCatchAllHTTPFilterChainName = "virtualInbound-catchall-http"
    )
    
    const (
    
    	// HBoneInboundListenPort is the port on which incoming HBone traffic will be captured.
    	HBoneInboundListenPort = 15008
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 10 17:24:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertAssignable(
            TypeToken.of(new TypeCapture<L>() {}.capture()),
            TypeToken.of(new TypeCapture<L>() {}.capture()));
        assertNotAssignable(
            TypeToken.of(new TypeCapture<R>() {}.capture()),
            TypeToken.of(new TypeCapture<L>() {}.capture()));
        assertAssignable(TypeToken.of(new TypeCapture<L>() {}.capture()), new TypeToken<List<R>>() {});
      }
    
      public void testisSupertypeOf_resolved() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. src/regexp/example_test.go

    	option1: value1
    	option2: value2
    
    	# another comment line
    	option3: value3
    `)
    
    	// Regex pattern captures "key: value" pair from the content.
    	pattern := regexp.MustCompile(`(?m)(?P<key>\w+):\s+(?P<value>\w+)$`)
    
    	// Template to convert "key: value" to "key=value" by
    	// referencing the values captured by the regex pattern.
    	template := []byte("$key=$value\n")
    
    	result := []byte{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertAssignable(
            TypeToken.of(new TypeCapture<L>() {}.capture()),
            TypeToken.of(new TypeCapture<L>() {}.capture()));
        assertNotAssignable(
            TypeToken.of(new TypeCapture<R>() {}.capture()),
            TypeToken.of(new TypeCapture<L>() {}.capture()));
        assertAssignable(TypeToken.of(new TypeCapture<L>() {}.capture()), new TypeToken<List<R>>() {});
      }
    
      public void testisSupertypeOf_resolved() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

    // This resource should be replaced by 'value'.
    // Output params:
    // - work_list: Is updated with new regions to process that is called
    //   by 'user_op';
    // - arguments_to_erase: Captures updates to the graph - which arguments
    //   to remove from the op;
    void PropagateUsage(
        Operation* user_op, int argument_index, ElementsAttr value,
        llvm::SmallVector<std::pair<Region*, int>, 4>* work_list,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/revived_types/tf_concrete_function.h

      //                 function_def with `ctx` on creation, and de-register it on
      //                 destruction. function_def must be non-null, but
      //                 otherwise has no lifetime requirements.
      //  captures - The captured TensorHandles associated with this
      //             TFConcreteFunction.
      //  metadata - The FunctionMetadata associated with this TFConcreteFunction.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top