Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 203 for subkeys (0.47 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/controller/endpointslicemirroring/reconciler_test.go

    	}{{
    		testName:               "Endpoints with no subsets",
    		subsets:                []corev1.EndpointSubset{},
    		existingEndpointSlices: []*discovery.EndpointSlice{},
    		expectedNumSlices:      0,
    		expectedClientActions:  0,
    		expectedMetrics:        &expectedMetrics{},
    	}, {
    		testName: "Endpoints with no addresses",
    		subsets: []corev1.EndpointSubset{{
    			Ports: []corev1.EndpointPort{{
    				Name:     "http",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/destination_rule.go

    			for _, subset := range mergedRule.Subsets {
    				existingSubset.Insert(subset.Name)
    			}
    			// we have another destination rule for same host.
    			// concatenate both of them -- essentially add subsets from one to other.
    			// Note: we only add the subsets and do not overwrite anything else like exportTo or top level
    			// traffic policies if they already exist
    			for _, subset := range rule.Subsets {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pkg/controlplane/reconcilers/lease.go

    		return nil, err
    	}
    
    	ipList := make([]string, 0, len(ipInfoList.Items))
    	for _, ip := range ipInfoList.Items {
    		if len(ip.Subsets) > 0 && len(ip.Subsets[0].Addresses) > 0 && len(ip.Subsets[0].Addresses[0].IP) > 0 {
    			ipList = append(ipList, ip.Subsets[0].Addresses[0].IP)
    		}
    	}
    
    	klog.V(6).Infof("Current master IPs listed in storage are %v", ipList)
    
    	return ipList, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. istioctl/pkg/describe/describe_test.go

    			args: strings.Split("service productpage", " "),
    			expectedOutput: `Service: productpage
    DestinationRule: productpage for "productpage"
       WARNING POD DOES NOT MATCH ANY SUBSETS.  (Non matching subsets v1)
       Matching subsets: 
          (Non-matching subsets v1)
       No Traffic Policy
    VirtualService: bookinfo
       Route to host "productpage" with weight 30%
       Route to host "productpage2" with weight 20%
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
Back to top