Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 757 for consistency (0.21 sec)

  1. guava-testlib/src/com/google/common/collect/testing/Helpers.java

       * consistently between their order within {@code valuesInExpectedOrder} and the order implied by
       * the given {@code comparator}.
       *
       * <p>In detail, this method asserts
       *
       * <ul>
       *   <li><i>reflexivity</i>: {@code comparator.compare(t, t) = 0} for all {@code t} in {@code
       *       valuesInExpectedOrder}; and
       *   <li><i>consistency</i>: {@code comparator.compare(ti, tj) < 0} and {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/field/fe_test.go

    	// TODO: values close to 0, close to 2^255-19, between 2^255-19 and 2^255-1,
    	// and between 2^255 and 2^256-1. Test both the documented SetBytes
    	// behavior, and that Bytes reduces them.
    }
    
    // Tests self-consistency between Multiply and Square.
    func TestConsistency(t *testing.T) {
    	var x Element
    	var x2, x2sq Element
    
    	x = Element{1, 1, 1, 1, 1}
    	x2.Multiply(&x, &x)
    	x2sq.Square(&x)
    
    	if x2 != x2sq {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        }
    
        /**
         * @return <code>true</code> if the Mojo is online, <code>false</code> otherwise.
         */
        // blech! this isn't even intelligible as a method name. provided for
        // consistency...
        public boolean isOnlineRequired() {
            return onlineRequired;
        }
    
        /**
         * @return <code>true</code> if the Mojo is online, <code>false</code> otherwise.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/Graph.java

       *
       * <p>Unlike the other {@code EndpointPair}-accepting methods, this method does not throw if the
       * endpoints are unordered and the graph is directed; it simply returns {@code false}. This is for
       * consistency with the behavior of {@link Collection#contains(Object)} (which does not generally
       * throw if the object cannot be present in the collection), and the desire to have this method's
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/Graph.java

       *
       * <p>Unlike the other {@code EndpointPair}-accepting methods, this method does not throw if the
       * endpoints are unordered and the graph is directed; it simply returns {@code false}. This is for
       * consistency with the behavior of {@link Collection#contains(Object)} (which does not generally
       * throw if the object cannot be present in the collection), and the desire to have this method's
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	}
    	slices.Sort(filenames)
    	mcDir, err := minorChangesDir(docFS)
    	if err != nil {
    		return err
    	}
    	var errs []error
    	for _, fn := range filenames {
    		// Use path.Join for consistency with io/fs pathnames.
    		fn = path.Join(mcDir, fn)
    		// TODO(jba): check that the file mentions each feature?
    		if err := checkFragmentFile(docFS, fn); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_test.go

    		os.Exit(0)
    	}
    
    	os.Exit(runMain(m))
    }
    
    func runMain(m *testing.M) int {
    	// Cipher suites preferences change based on the architecture. Force them to
    	// the version without AES acceleration for test consistency.
    	hasAESGCMHardwareSupport = false
    
    	// Set up localPipe.
    	l, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		l, err = net.Listen("tcp6", "[::1]:0")
    	}
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/defaults.go

    			sp.TargetPort = intstr.FromInt32(sp.Port)
    		}
    	}
    	// Defaults ExternalTrafficPolicy field for externally-accessible service
    	// to Global for consistency.
    	if service.ExternallyAccessible(obj) && obj.Spec.ExternalTrafficPolicy == "" {
    		obj.Spec.ExternalTrafficPolicy = v1.ServiceExternalTrafficPolicyCluster
    	}
    
    	if obj.Spec.InternalTrafficPolicy == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. src/go/token/position_test.go

    			src[offs-1] = '\n'
    		}
    	}
    	return src
    }
    
    func TestPositions(t *testing.T) {
    	const delta = 7 // a non-zero base offset increment
    	fset := NewFileSet()
    	for _, test := range tests {
    		// verify consistency of test case
    		if test.source != nil && len(test.source) != test.size {
    			t.Errorf("%s: inconsistent test case: got file size %d; want %d", test.filename, len(test.source), test.size)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    //   - It is an endpoint with an associate Pod, but its not found. In this case, expectPod will be true.
    //     this may happen due to eventually consistency issues, out of order events, etc. In this case, the caller
    //     should not precede with the endpoint, or inaccurate information would be sent which may have impacts on
    //     correctness and security.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top