Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for compared (0.13 sec)

  1. src/go/types/unify.go

    			//
    			//    type T interface {
    			//        m() interface{T}
    			//    }
    			//
    			// If two such (differently named) interfaces are compared,
    			// endless recursion occurs if the cycle is not detected.
    			//
    			// If x and y were compared before, they must be equal
    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    			//
    			//    type T interface {
    			//        m() interface{T}
    			//    }
    			//
    			// If two such (differently named) interfaces are compared,
    			// endless recursion occurs if the cycle is not detected.
    			//
    			// If x and y were compared before, they must be equal
    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            this.writeDependencyVerifications = checksums;
        }
    
        /**
         * Returns the list of modules that are to be allowed to update their version compared to the lockfile.
         *
         * @return a list of modules allowed to have a version update
         * @since 4.8
         */
        public List<String> getLockedDependenciesToUpdate() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    //   [DONE] Irrelevant for delete, as Delete doesn't write data (nor compare it).
    // - https://github.com/kubernetes/kubernetes/pull/47703
    //   [DONE] Irrelevant for delete, because Delete doesn't persist data.
    // - https://github.com/kubernetes/kubernetes/pull/48394/
    //   [DONE] Irrelevant for delete, because Delete doesn't compare data.
    // - https://github.com/kubernetes/kubernetes/pull/43152
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/help/helpdoc.go

    		C source files.
    		If the package uses cgo or SWIG, these will be compiled with the
    		OS-native compiler (typically gcc); otherwise they will
    		trigger an error.
    	.cc, .cpp, .cxx, .hh, .hpp, .hxx
    		C++ source files. Only useful with cgo or SWIG, and always
    		compiled with the OS-native compiler.
    	.m
    		Objective-C source files. Only useful with cgo, and always
    		compiled with the OS-native compiler.
    	.s, .S, .sx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // is compared exactly against the comment (see examples below). If the last
    // comment begins with "Unordered output:" then the output is compared to the
    // comment, however the order of the lines is ignored. An example with no such
    // comment is compiled but not executed. An example with no text after
    // "Output:" is compiled, executed, and expected to produce no output.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

            assertTrue(
                comparator + ".compare(" + lesser + ", " + t + ")", comparator.compare(lesser, t) < 0);
          }
    
          assertEquals(comparator + ".compare(" + t + ", " + t + ")", 0, comparator.compare(t, t));
    
          for (int j = i + 1; j < valuesInExpectedOrder.size(); j++) {
            T greater = valuesInExpectedOrder.get(j);
            assertTrue(
                comparator + ".compare(" + greater + ", " + t + ")",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      }
    };
    
    // Note that we ignore the second operand `max_num_elements` as we don't have
    // any restrictions on the number of elements we can support. So this may
    // have a different behavior compared to TensorFlow in case of errors.
    struct ConvertEmptyTensorList
        : public ConvertTensorListInitOp<TF::EmptyTensorListOp> {
      explicit ConvertEmptyTensorList(MLIRContext *context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/Helpers.java

            assertTrue(
                comparator + ".compare(" + lesser + ", " + t + ")", comparator.compare(lesser, t) < 0);
          }
    
          assertEquals(comparator + ".compare(" + t + ", " + t + ")", 0, comparator.compare(t, t));
    
          for (int j = i + 1; j < valuesInExpectedOrder.size(); j++) {
            T greater = valuesInExpectedOrder.get(j);
            assertTrue(
                comparator + ".compare(" + greater + ", " + t + ")",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. RELEASE.md

          should run synchronously, as opposed to be parallelizable when
          `options.experimental_optimization.map_parallelization=True`. This saves
          memory compared to setting `num_parallel_calls=1`.
    * `tf.lite`
        * `Dequantize` op supports `TensorType_INT4`.
            * This change includes per-channel dequantization.
    
    ## Keras
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top