Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for captures (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // body and condition regions are replaced with captured values, so we do not
      // need to take into account the body and condition region arguments.
      RegionResourceHoister hoister(op);
    
      if (failed(hoister.Analyze())) return failure();
    
      // If there are no resource region captures, then nothing to do.
      if (!hoister.NeedsLifting()) return success();
    
      // The resources captured for While loop fall into two categories:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    	//       This only captures the MOVD. Should the SLD be appended to the encoding by the test?
    	// Hex constant 0x20004000000
    	MOVD $2199090364416, R5         // 60058001
    	// Hex constant 0xFFFFFE0004000000
    	MOVD $-2198956146688, R5        // 38a08001
    	// TODO: On GOPPC64={power8,power9}, this is preprocessed into MOVD $-1, R5; RLDC R5, $33, $63, R5.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ====
    <1> `doLast` action captures the references from the enclosing scope. These captured references are also serialized to the configuration cache.
    <2> Compare the reference to an object of user-defined class stored in the task field and the reference captured in the `doLast` action.
    <3> Compare the reference to `ArrayList` instance stored in the task field and the reference captured in the `doLast` action.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse.go

    			}
    			return "", &Error{ErrInvalidNamedCapture, s}
    		}
    
    		capture := t[:end+1]        // "(?P<name>" or "(?<name>"
    		name := t[exprStartPos:end] // "name"
    		if err = checkUTF8(name); err != nil {
    			return "", err
    		}
    		if !isValidCaptureName(name) {
    			return "", &Error{ErrInvalidNamedCapture, capture}
    		}
    
    		// Like ordinary capture, but named.
    		p.numCap++
    		re := p.op(opLeftParen)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue enableCoreDump = 9;
    
      // Specifies the Istio ingress ports not to capture.
      string excludeInboundPorts = 12;
    
      // Lists the excluded IP ranges of Istio egress traffic that the sidecar captures.
      string excludeIPRanges = 13;
    
      // Image name or path for the proxy, default: "proxyv2".
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/TypeToken.java

       * }</pre>
       */
      protected TypeToken(Class<?> declaringClass) {
        Type captured = super.capture();
        if (captured instanceof Class) {
          this.runtimeType = captured;
        } else {
          this.runtimeType = TypeResolver.covariantly(declaringClass).resolveType(captured);
        }
      }
    
      private TypeToken(Type type) {
        this.runtimeType = checkNotNull(type);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/TypeToken.java

       * }</pre>
       */
      protected TypeToken(Class<?> declaringClass) {
        Type captured = super.capture();
        if (captured instanceof Class) {
          this.runtimeType = captured;
        } else {
          this.runtimeType = TypeResolver.covariantly(declaringClass).resolveType(captured);
        }
      }
    
      private TypeToken(Type type) {
        this.runtimeType = checkNotNull(type);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      @Override
      public ImmutableSortedSet<K> descendingKeySet() {
        return keySet.descendingSet();
      }
    
      /**
       * Serialized type for all ImmutableSortedMap instances. It captures the logical contents and they
       * are reconstructed using public factory methods. This ensures that the implementation types
       * remain as implementation details.
       */
      @J2ktIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      @Override
      public ImmutableSortedSet<K> descendingKeySet() {
        return keySet.descendingSet();
      }
    
      /**
       * Serialized type for all ImmutableSortedMap instances. It captures the logical contents and they
       * are reconstructed using public factory methods. This ensures that the implementation types
       * remain as implementation details.
       */
      @J2ktIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_test.go

    // depends on both functions (such as re-queueing on sync error).
    func processSync(ctx context.Context, rsc *ReplicaSetController, key string) error {
    	// Save old syncHandler and replace with one that captures the error.
    	oldSyncHandler := rsc.syncHandler
    	defer func() {
    		rsc.syncHandler = oldSyncHandler
    	}()
    	var syncErr error
    	rsc.syncHandler = func(ctx context.Context, key string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top