Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 268 for Assignment (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

                   "COMPOSITE") != llvm::StringRef::npos));
    }
    
    // Finds the variable access info for a TPUExecute op.
    //  - `check_device` specifies  whether it checks the device assignment of the
    //  variables to match the TPUExecute op. This is optional in some context,
    //  e.g., guaranteed by replication.
    //  - `check_same_region` specifies whether the reads/assigns need to be in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
      linked_ptr(linked_ptr const& ptr) {  // NOLINT
        assert(&ptr != this);
        copy(&ptr);
      }
    
      // Assignment releases the old value and acquires the new.
      template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) {
        depart();
        copy(&ptr);
        return *this;
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/value.h

        STRING = 3,
        FUNC = 4,
        DICT = 5,
        LIST = 6,
        TUPLE = 7,
        TENSOR = 8,
        TENSOR_SPEC = 9,
        CAPSULE = 10,
      };
      TaggedValue() : type_(NONE), data_() {}
    
      /// Move assignment operator.
      TaggedValue& operator=(TaggedValue&& v) {
        destroy();
        MoveIntoUnion(std::move(v));
        return *this;
      }
      /// Move constructor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. pkg/test/framework/components/environment/kube/settings.go

    	// plane cases (where each cluster has its own control plane), the cluster will map to itself (e.g. 0->0).
    	controlPlaneTopology clusterTopology
    
    	// networkTopology is used for the initial assignment of networks to each cluster.
    	// The source of truth clusters' networks is the Cluster instances themselves, rather than this field.
    	networkTopology map[clusterIndex]string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      // We'll hold the text streamed to this object here.
      const internal::scoped_ptr< ::std::stringstream> ss_;
    
      // We declare (but don't implement) this to prevent the compiler
      // from implementing the assignment operator.
      void operator=(const Message&);
    };
    
    // Streams a Message to an ostream.
    inline std::ostream& operator <<(std::ostream& os, const Message& sb) {
      return os << sb.GetString();
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisLibrarySourceModuleResolveCallTestGenerated.java

        @TestDataPath("$PROJECT_ROOT")
        public class Assignment {
          @Test
          public void testAllFilesPresentInAssignment() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 175.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisLibrarySourceModuleResolveCandidatesTestGenerated.java

        @TestDataPath("$PROJECT_ROOT")
        public class Assignment {
          @Test
          public void testAllFilesPresentInAssignment() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 175.9K bytes
    - Viewed (0)
  8. pilot/test/xdstest/validate.go

    		ValidateClusterLoadAssignment(t, l)
    	}
    }
    
    func ValidateClusterLoadAssignment(t testing.TB, l *endpoint.ClusterLoadAssignment) {
    	if err := l.Validate(); err != nil {
    		t.Errorf("cluster load assignment %v is invalid: %v", l.ClusterName, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. pkg/slices/slices.go

    func Sort[E constraints.Ordered](x []E) []E {
    	if len(x) <= 1 {
    		return x
    	}
    	slices.Sort(x)
    	return x
    }
    
    // Clone returns a copy of the slice.
    // The elements are copied using assignment, so this is a shallow clone.
    func Clone[S ~[]E, E any](s S) S {
    	return slices.Clone(s)
    }
    
    // Delete removes the element i from s, returning the modified slice.
    func Delete[S ~[]E, E any](s S, i int) S {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. src/runtime/stubs.go

    func getcallerpc() uintptr
    
    //go:noescape
    func getcallersp() uintptr // implemented as an intrinsic on all platforms
    
    // getclosureptr returns the pointer to the current closure.
    // getclosureptr can only be used in an assignment statement
    // at the entry of a function. Moreover, go:nosplit directive
    // must be specified at the declaration of caller function,
    // so that the function prolog does not clobber the closure register.
    // for example:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top