Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 370 for IsSame (0.23 sec)

  1. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

    //
    // DeviceThread itself is thread-safe, in that StartExecute will block if there
    // is a pending execution. Since StartExecute is equivalent to grabbing a lock,
    // multiple DeviceThreads should always be accessed in the same order to avoid
    // deadlocks.
    class DeviceThread {
     public:
      // Starts a background thread waiting for `StartExecute`.
      explicit DeviceThread(const std::string& device, const bool is_async,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. src/go/types/typestring.go

    // all packages other than pkg.
    func RelativeTo(pkg *Package) Qualifier {
    	if pkg == nil {
    		return nil
    	}
    	return func(other *Package) string {
    		if pkg == other {
    			return "" // same package; unqualified
    		}
    		return other.Path()
    	}
    }
    
    // TypeString returns the string representation of typ.
    // The [Qualifier] controls the printing of
    // package-level objects, and may be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/quantize-numeric-verify.mlir

    // MODEL-DEBUG: %[[dq1:.*]] = "tfl.dequantize"(%[[q1]])
    // MODEL-DEBUG: %[[f_sqrt2:.*]] = "tfl.sqrt"(%[[f_sqrt1]])
    // MODEL-DEBUG-NOT: debug_
    // MODEL-DEBUG-SAME: (tensor<?x1x1x3xf32>)
    // MODEL-DEBUG: %[[q_sqrt2:.*]] = "tfl.sqrt"(%[[dq1]]
    // MODEL-DEBUG-NOT: debug_
    // MODEL-DEBUG-SAME: (tensor<?x1x1x3xf32>)
    // MODEL-DEBUG: %[[q2:.*]] = "tfl.quantize"(%[[q_sqrt2]])
    // MODEL-DEBUG: %[[f_mul:.*]] = tfl.mul %[[f_sqrt2]], %[[f_conv]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    template <typename T>
    bool TypeIdHelper<T>::dummy_ = false;
    
    // GetTypeId<T>() returns the ID of type T.  Different values will be
    // returned for different types.  Calling the function twice with the
    // same type argument is guaranteed to return the same ID.
    template <typename T>
    TypeId GetTypeId() {
      // The compiler is required to allocate a different
      // TypeIdHelper<T>::dummy_ variable for each T used to instantiate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/status/server.go

    }
    
    // Using the same redirect logic that kubelet does: https://github.com/kubernetes/kubernetes/blob/b152001f459/pkg/probe/http/http.go#L141
    // This means that:
    // * If we exceed 10 redirects, the probe fails
    // * If we redirect somewhere external, the probe succeeds (https://github.com/kubernetes/kubernetes/blob/b152001f459/pkg/probe/http/http.go#L130)
    // * If we redirect to the same address, the probe will follow the redirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  6. pilot/pkg/serviceregistry/serviceentry/conversion.go

    	for _, service := range serviceEntryServices {
    		for _, serviceEntryPort := range serviceEntry.Ports {
    			// note: this is same as workloadentry handler
    			// endpoint port will first use the port defined in wle with same port name,
    			// if not port name not match, use the targetPort specified in ServiceEntry
    			// if both not matched, fallback to ServiceEntry port number.
    			var targetPort uint32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. cmd/object-handlers-common.go

    				writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL)
    				return true
    			}
    		}
    	}
    
    	// x-amz-copy-source-if-match : Return the object only if its entity tag (ETag) is the
    	// same as the one specified; otherwise return a 412 (precondition failed).
    	ifMatchETagHeader := r.Header.Get(xhttp.AmzCopySourceIfMatch)
    	if ifMatchETagHeader != "" {
    		if !isETagEqual(objInfo.ETag, ifMatchETagHeader) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableRangeSet.java

        }
        return result;
      }
    
      /**
       * Returns a new range set consisting of the union of this range set and {@code other}.
       *
       * <p>This is essentially the same as {@code TreeRangeSet.create(this).addAll(other)} except it
       * returns an {@code ImmutableRangeSet}.
       *
       * @since 21.0
       */
      public ImmutableRangeSet<C> union(RangeSet<C> other) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/op.go

    	commutative       bool      // this operation is commutative (e.g. addition)
    	resultInArg0      bool      // (first, if a tuple) output of v and v.Args[0] must be allocated to the same register
    	resultNotInArgs   bool      // outputs must not be allocated to the same registers as inputs
    	clobberFlags      bool      // this op clobbers flags register
    	needIntTemp       bool      // need a temporary free integer register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    When only the coordinates of the artifact have changed, but package names of the classes inside the artifact have remained the same, dependency conflicts can occur. A project might (transitively) depend on the old artifact but at the same time also have a dependency on the new artifact which both contain the same classes, potentially with incompatible changes.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top