Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 95 for _Equal (0.2 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	XORQ    AX, AX
    	MOVQ    $1, DX
    	XORQ    (0*8)(inp), acc0
    	XORQ    (1*8)(inp), acc1
    	ORQ     acc1, acc0
    	CMOVQEQ DX, AX
    
    	// Return true iff tags are equal
    	MOVB AX, ret+96(FP)
    	RET
    
    // ----------------------------------------------------------------------------
    // Special optimization for buffers smaller than 129 bytes
    openSSE128:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

    import java.util.logging.LogRecord;
    import java.util.logging.Logger;
    import junit.framework.AssertionFailedError;
    import junit.framework.TestCase;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Unit tests for {@link Futures}.
     *
     * @author Nishant Thakkar
     */
    @ElementTypesAreNonnullByDefault
    @GwtCompatible(emulated = true)
    public class FuturesTest extends TestCase {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

    import java.util.logging.LogRecord;
    import java.util.logging.Logger;
    import junit.framework.AssertionFailedError;
    import junit.framework.TestCase;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Unit tests for {@link Futures}.
     *
     * @author Nishant Thakkar
     */
    @ElementTypesAreNonnullByDefault
    @GwtCompatible(emulated = true)
    public class FuturesTest extends TestCase {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	// work does not matter much to overall execution time,
    	// but when running "go test std" it is nice to see each test
    	// results as soon as possible. The priorities assigned
    	// ensure that, all else being equal, the execution prefers
    	// to do what it would have done first in a simple depth-first
    	// dependency order traversal.
    	all := actionList(root)
    	for i, a := range all {
    		a.priority = i
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	req.ctx = ctx
    	req.RemoteAddr = c.remoteAddr
    	req.TLS = c.tlsState
    	if body, ok := req.Body.(*body); ok {
    		body.doEarlyClose = true
    	}
    
    	// Adjust the read deadline if necessary.
    	if !hdrDeadline.Equal(wholeReqDeadline) {
    		c.rwc.SetReadDeadline(wholeReqDeadline)
    	}
    
    	w = &response{
    		conn:          c,
    		cancelCtx:     cancelCtx,
    		req:           req,
    		reqBody:       req.Body,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			p.(*PodTopologySpread).enableMatchLabelKeysInPodTopologySpread = tt.enableMatchLabelKeys
    
    			cs := framework.NewCycleState()
    			_, s := p.(*PodTopologySpread).PreFilter(ctx, cs, tt.pod)
    			if !tt.wantPrefilterStatus.Equal(s) {
    				t.Errorf("PodTopologySpread#PreFilter() returned unexpected status. got: %v, want: %v", s, tt.wantPrefilterStatus)
    			}
    
    			if !s.IsSuccess() {
    				return
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    		{"empty", &networkingv1beta1.ProxyConfig{}, "", ""},
    		{name: "invalid concurrency", in: &networkingv1beta1.ProxyConfig{
    			Concurrency: &wrapperspb.Int32Value{Value: -1},
    		}, out: "concurrency must be greater than or equal to 0"},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			warn, err := ValidateProxyConfig(config.Config{
    				Meta: config.Meta{
    					Name:      someName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__policy__v1_openapi.json

    used, which corresponds to the IfHealthyBudget policy.\n\nIfHealthyBudget policy means that running pods (status.phase=\"Running\"), but not yet healthy can be evicted only if the guarded application is not disrupted (status.currentHealthy is at least equal to status.desiredHealthy). Healthy pods will be subject to the PDB for eviction.\n\nAlwaysAllow policy means that all running pods (status.phase=\"Running\"), but not yet healthy are considered disrupted and can be evicted regardless of whether the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
              "name": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

    import java.util.function.Function;
    import java.util.function.Predicate;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * The concurrent hash map implementation built by {@link CacheBuilder}.
     *
     * <p>This implementation is heavily derived from revision 1.96 of <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top