Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getKey (0.34 sec)

  1. src/cmd/compile/internal/types2/alias.go

    	res.orig = orig
    	res.tparams = orig.tparams
    	res.targs = newTypeList(targs)
    	return res
    }
    
    func (a *Alias) cleanup() {
    	// Ensure a.actual is set before types are published,
    	// so Unalias is a pure "getter", not a "setter".
    	actual := Unalias(a)
    
    	if actual == Typ[Invalid] {
    		// We don't set a.actual to Typ[Invalid] during type checking,
    		// as it may indicate that the RHS is not fully set up.
    		a.actual = actual
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/crypto/tls/key_schedule_test.go

    		e4 03 bc`)
    	wantIV := parseVector(
    		`iv expanded (12 octets):  5d 31 3e b2 67 12 76 ee 13 00 0b 30`)
    
    	c := cipherSuitesTLS13[0]
    	gotKey, gotIV := c.trafficKey(trafficSecret)
    	if !bytes.Equal(gotKey, wantKey) {
    		t.Errorf("cipherSuiteTLS13.trafficKey() gotKey = % x, want % x", gotKey, wantKey)
    	}
    	if !bytes.Equal(gotIV, wantIV) {
    		t.Errorf("cipherSuiteTLS13.trafficKey() gotIV = % x, want % x", gotIV, wantIV)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Flag.Usage", Field, 0},
    		{"Flag.Value", Field, 0},
    		{"FlagSet", Type, 0},
    		{"FlagSet.Usage", Field, 0},
    		{"Float64", Func, 0},
    		{"Float64Var", Func, 0},
    		{"Func", Func, 16},
    		{"Getter", Type, 2},
    		{"Int", Func, 0},
    		{"Int64", Func, 0},
    		{"Int64Var", Func, 0},
    		{"IntVar", Func, 0},
    		{"Lookup", Func, 0},
    		{"NArg", Func, 0},
    		{"NFlag", Func, 0},
    		{"NewFlagSet", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top