Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 262 for subkeys (0.12 sec)

  1. src/syscall/syscall_windows.go

    }
    
    // RegEnumKeyEx enumerates the subkeys of an open registry key.
    // Each call retrieves information about one subkey. name is
    // a buffer that should be large enough to hold the name of the
    // subkey plus a null terminating character. nameLen is its
    // length. On return, nameLen will contain the actual length of the
    // subkey.
    //
    // Should name not be large enough to hold the subkey, this function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. releasenotes/notes/passthrough-subsets.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 25691
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 10 05:39:51 UTC 2020
    - 220 bytes
    - Viewed (0)
  3. pkg/serviceaccount/openidmetadata.go

    	var keys jose.JSONWebKeySet
    	var errs []error
    	for i, key := range in {
    		var pubkey *jose.JSONWebKey
    		var err error
    
    		switch k := key.(type) {
    		case publicKeyGetter:
    			// This is a private key. Get its public key
    			pubkey, err = jwkFromPublicKey(k.Public())
    		default:
    			pubkey, err = jwkFromPublicKey(k)
    		}
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	f, err := os.Open(a.Objdir + name)
    	if err != nil {
    		return err
    	}
    	defer f.Close()
    	_, _, err = c.Put(cache.Subkey(a.actionID, name), f)
    	return err
    }
    
    func (b *Builder) findCachedObjdirFile(a *Action, c cache.Cache, name string) (string, error) {
    	file, _, err := cache.GetFile(c, cache.Subkey(a.actionID, name))
    	if err != nil {
    		return "", fmt.Errorf("loading cached file %s: %w", name, err)
    	}
    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. internal/config/identity/openid/jwt_test.go

              "kid":"2011-04-29"}
           ]
         }`
    
    	pubKeys := publicKeys{
    		RWMutex: &sync.RWMutex{},
    		pkMap:   map[string]interface{}{},
    	}
    	err := pubKeys.parseAndAdd(bytes.NewBuffer([]byte(jsonkey)))
    	if err != nil {
    		t.Fatal("Error loading pubkeys:", err)
    	}
    	if len(pubKeys.pkMap) != 1 {
    		t.Fatalf("Expected 1 keys, got %d", len(pubKeys.pkMap))
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    )
    
    type claimsTest struct {
    	name                string
    	options             Options
    	optsFunc            func(*Options)
    	signingKey          *jose.JSONWebKey
    	pubKeys             []*jose.JSONWebKey
    	claims              string
    	want                *user.DefaultInfo
    	wantSkip            bool
    	wantErr             string
    	wantInitErr         string
    	wantHealthErrPrefix string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/cache/hash.go

    	}
    	return version
    }
    
    // Subkey returns an action ID corresponding to mixing a parent
    // action ID with a string description of the subkey.
    func Subkey(parent ActionID, desc string) ActionID {
    	h := sha256.New()
    	h.Write([]byte("subkey:"))
    	h.Write(parent[:])
    	h.Write([]byte(desc))
    	var out ActionID
    	h.Sum(out[:0])
    	if debugHash {
    		fmt.Fprintf(os.Stderr, "HASH subkey %x %q = %x\n", parent, desc, out)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 14 16:18:34 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  8. src/internal/syscall/windows/registry/zsyscall_windows.go

    )
    
    func regCreateKeyEx(key syscall.Handle, subkey *uint16, reserved uint32, class *uint16, options uint32, desired uint32, sa *syscall.SecurityAttributes, result *syscall.Handle, disposition *uint32) (regerrno error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4K bytes
    - Viewed (0)
  9. src/internal/syscall/windows/registry/syscall.go

    	_ERROR_NO_MORE_ITEMS syscall.Errno = 259
    )
    
    //sys	regCreateKeyEx(key syscall.Handle, subkey *uint16, reserved uint32, class *uint16, options uint32, desired uint32, sa *syscall.SecurityAttributes, result *syscall.Handle, disposition *uint32) (regerrno error) = advapi32.RegCreateKeyExW
    //sys	regDeleteKey(key syscall.Handle, subkey *uint16) (regerrno error) = advapi32.RegDeleteKeyW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/config.go

    	// TODO make these check if any subset has a matching annotation
    	return len(c.Subsets) > 0 && c.Subsets[0].Annotations != nil && strings.HasPrefix(c.Subsets[0].Annotations[annotation.InjectTemplates.Name], "grpc-")
    }
    
    func (c Config) IsTProxy() bool {
    	// TODO this could be HasCustomInjectionMode
    	return len(c.Subsets) > 0 && c.Subsets[0].Annotations != nil && c.Subsets[0].Annotations[annotation.SidecarInterceptionMode.Name] == "TPROXY"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top