Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,773 for compared (0.23 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/PropertiesUtils.java

            }
        }
    
        /**
         * Writes {@link java.util.Properties} in a way that the results can be expected to be reproducible.
         *
         * <p>There are a number of differences compared to {@link java.util.Properties#store(java.io.Writer, String)}:</p>
         * <ul>
         *     <li>no timestamp comment is generated at the beginning of the file</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 14:17:21 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/launch_to_device_attribute.mlir

    // CHECK-NOT:  "tf_device.launch"
    // CHECK-NOT:      tf_executor.yield %[[A]], %[[C]], %[[B]], %[[D]]
    
    // -----
    
    
    // Tests TensorFlow op with conflicting `device` attribute compared to parent
    // `tf_device.launch`.
    func.func @conflicting_device() {
      tf_executor.graph {
        %0 = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 17:10:32 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/reflect/visiblefields_test.go

    				gotField := typ.FieldByIndex(field.Index)
    				// Unfortunately, FieldByIndex does not return
    				// a field with the same index that we passed in,
    				// so we set it to the expected value so that
    				// it can be compared later with the result of FieldByName.
    				gotField.Index = field.Index
    				expectField := typ.FieldByIndex(expect.index)
    				// ditto.
    				expectField.Index = expect.index
    				if !DeepEqual(gotField, expectField) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 08 13:44:41 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  4. pkg/kube/krt/README.md

    ### Performance
    
    Compared to a perfectly optimized hand-written controller, `krt` adds some overhead.
    However, writing a perfectly optimized controller is hard, and often not done.
    As a result, for many scenarios it is expected that `krt` will perform on-par or better.
    
    This is similar to a comparison between a high level programming language compared to assembly;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/sync/atomic/value.go

    			continue
    		}
    		// First store completed. Check type and overwrite data.
    		if typ != np.typ {
    			panic("sync/atomic: compare and swap of inconsistently typed value into Value")
    		}
    		// Compare old and current via runtime equality check.
    		// This allows value types to be compared, something
    		// not offered by the package functions.
    		// CompareAndSwapPointer below only ensures vp.data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/authorization_test.go

    	if err := pf.Parse(args); err != nil {
    		t.Fatal(err)
    	}
    
    	if !opts.AreLegacyFlagsSet() {
    		t.Fatal("legacy flags should have been configured")
    	}
    
    	// setting the method to nil since methods can't be compared with reflect.DeepEqual
    	opts.AreLegacyFlagsSet = nil
    
    	if !reflect.DeepEqual(opts, expected) {
    		t.Error(cmp.Diff(opts, expected))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 06:28:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/third_party/forked/golang/reflect/deep_equal.go

    //
    // It will use e's equality functions if it finds types that match.
    //
    // An empty slice *is* equal to a nil slice for our purposes; same for maps.
    //
    // Unexported field members cannot be compared and will cause an informative panic; you must add an Equality
    // function for these types.
    func (e Equalities) DeepEqual(a1, a2 interface{}) bool {
    	return e.deepEqual(a1, a2, true)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 17:18:42 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  8. src/io/fs/walk.go

    // is after a failed ReadDir and reports the error from ReadDir.
    // (If ReadDir succeeds, there is no second call.)
    //
    // The differences between WalkDirFunc compared to [path/filepath.WalkFunc] are:
    //
    //   - The second argument has type [DirEntry] instead of [FileInfo].
    //   - The function is called before reading a directory, to allow [SkipDir]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 08:50:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/error_test.go

    // license that can be found in the LICENSE file.
    
    // This file implements a regression test harness for syntax errors.
    // The files in the testdata directory are parsed and the reported
    // errors are compared against the errors declared in those files.
    //
    // Errors are declared in place in the form of "error comments",
    // just before (or on the same line as) the offending token.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractBuildExperimentRunner.java

    import java.util.function.Supplier;
    
    import static java.util.Collections.emptyMap;
    
    /**
     * Runs a single build experiment.
     *
     * As part of a performance scenario, multiple experiments need to be run and compared.
     * For example for a cross-version scenario, experiments for each version will be run.
     */
    @CompileStatic
    public abstract class AbstractBuildExperimentRunner implements BuildExperimentRunner {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top