Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 707 for capture1 (0.79 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/revived_types/flat_tensor_function.h

    // taking + returning flat lists of tensors, including any captures.
    // Effectively, it is a thin wrapper around a FunctionDef owned by the
    // EagerContext, and any TensorHandle captures associated with the function. The
    // MakeCallOp method handles the logic of marshaling captures after the user
    // provided inputs automatically.
    // Note(bmzhao): This class is mainly intended to house low-level reusable
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 21:03:41 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/TypeCapture.java

    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Type;
    
    /**
     * Captures the actual type of {@code T}.
     *
     * @author Ben Yu
     */
    @ElementTypesAreNonnullByDefault
    abstract class TypeCapture<T> {
    
      /** Returns the captured type. */
      final Type capture() {
        Type superclass = getClass().getGenericSuperclass();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 16 21:10:04 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/TypeCapture.java

    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Type;
    
    /**
     * Captures the actual type of {@code T}.
     *
     * @author Ben Yu
     */
    @ElementTypesAreNonnullByDefault
    abstract class TypeCapture<T> {
    
      /** Returns the captured type. */
      final Type capture() {
        Type superclass = getClass().getGenericSuperclass();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 16 21:10:04 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top