Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for S1 (0.02 sec)

  1. src/go/types/api_test.go

    		{`package g3; type N[A any] int; func (N[_]) m() {}`, `N`, `type g3.N[A any] int`},
    
    		// Uses of fields are instantiated.
    		{`package s1; type N[A any] struct{ a A }; var f = N[int]{}.a`, `a`, `field a int`},
    		{`package s1; type N[A any] struct{ a A }; func (r N[B]) m(b B) { r.a = b }`, `a`, `field a B`},
    
    		// Uses of methods are uses of the instantiated method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (SelectN [0] call:(CALLstatic {sym} s1:(MOVDstore _ (MOVDconst [sz]) s2:(MOVDstore  _ src s3:(MOVDstore {t} _ dst mem)))))
            && sz >= 0
            && isSameCall(sym, "runtime.memmove")
            && s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1
            && isInlinableMemmove(dst, src, sz, config)
            && clobber(s1, s2, s3, call)
            => (Move [sz] dst src mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    		t.Errorf("Error expected, but no error returned")
    	}
    }
    
    func TestCloneHash(t *testing.T) {
    	h1 := crypto.SHA256.New()
    	h1.Write([]byte("test"))
    	s1 := h1.Sum(nil)
    	h2 := cloneHash(h1, crypto.SHA256)
    	s2 := h2.Sum(nil)
    	if !bytes.Equal(s1, s2) {
    		t.Error("cloned hash generated a different sum")
    	}
    }
    
    func expectError(t *testing.T, err error, sub string) {
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // podAntiAffinityLabelSelector:
      //  - key: security
      //    operator: In
      //    values: S1,S2
      //    topologyKey: "kubernetes.io/hostname"
      //  This pod anti-affinity rule says that the pod requires not to be scheduled
      //  onto a node if that node is already running a pod with label having key
      //  “security” and value “S1”.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top