Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for newBar (0.08 sec)

  1. pkg/apis/certificates/validation/validation_test.go

    		Usages:     validUsages,
    		Request:    newCSRPEM(t),
    		SignerName: "example.com/something",
    	}
    
    	tests := []struct {
    		name   string
    		newCSR *capi.CertificateSigningRequest
    		oldCSR *capi.CertificateSigningRequest
    		errs   []string
    	}{{
    		name:   "no-op",
    		newCSR: &capi.CertificateSigningRequest{ObjectMeta: validUpdateMeta, Spec: validSpec},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        // CHECK: "tf.AssignVariableOp"(%[[ACCUM_HANDLE]], %[[NEW_ACCUM]])
    
        // CHECK: %[[VAR:[0-9]*]] = "tf.ReadVariableOp"(%[[VAR_HANDLE]])
        // CHECK: %[[NEW_VAR:[0-9]*]] = "tf.AddV2"(%[[VAR]], %[[NEW_ACCUM]])
        // CHECK: "tf.AssignVariableOp"(%[[VAR_HANDLE]], %[[NEW_VAR]])
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. pkg/proxy/endpointschangetracker_test.go

    				}
    			}
    		})
    	}
    }
    
    // Test helpers
    
    func compareEndpointsMapsStr(t *testing.T, newMap EndpointsMap, expected map[ServicePortName][]*BaseEndpointInfo) {
    	t.Helper()
    	if len(newMap) != len(expected) {
    		t.Fatalf("expected %d results, got %d: %v", len(expected), len(newMap), newMap)
    	}
    	endpointEqual := func(a, b *BaseEndpointInfo) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	if _, exists := oldMap[scheme]; exists {
    		panic("protocol " + scheme + " already registered")
    	}
    	newMap := make(map[string]RoundTripper)
    	for k, v := range oldMap {
    		newMap[k] = v
    	}
    	newMap[scheme] = rt
    	t.altProto.Store(newMap)
    }
    
    // CloseIdleConnections closes any connections which were previously
    // connected from previous requests but are now sitting idle in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_test.go

    				defer close(signalChan)
    
    				buf := make([]byte, 256)
    				n, err := client.Read(buf)
    
    				if test.checkRenegotiationError != nil {
    					newErr := test.checkRenegotiationError(i, err)
    					if err != nil && newErr == nil {
    						return
    					}
    					err = newErr
    				}
    
    				if err != nil {
    					t.Errorf("Client.Read failed after renegotiation #%d: %s", i, err)
    					return
    				}
    
    				buf = buf[:n]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    // This allows the backend to run concurrently.
    var NewPtrCacheEnabled = true
    
    // NewPtr returns the pointer type pointing to t.
    func NewPtr(elem *Type) *Type {
    	if elem == nil {
    		base.Fatalf("NewPtr: pointer to elem Type is nil")
    	}
    
    	if t := elem.cache.ptr; t != nil {
    		if t.Elem() != elem {
    			base.Fatalf("NewPtr: elem mismatch")
    		}
    		if elem.HasShape() != t.HasShape() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top