Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 584 for Keys (0.11 sec)

  1. src/net/http/routing_tree_test.go

    	}
    	if n.emptyChild != nil {
    		fmt.Fprintf(w, "%s%q:\n", indent, "")
    		n.emptyChild.print(w, level+1)
    	}
    
    	var keys []string
    	n.children.eachPair(func(k string, _ *routingNode) bool {
    		keys = append(keys, k)
    		return true
    	})
    	slices.Sort(keys)
    
    	for _, k := range keys {
    		fmt.Fprintf(w, "%s%q:\n", indent, k)
    		n, _ := n.children.find(k)
    		n.print(w, level+1)
    	}
    
    	if n.multiChild != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. pkg/test/framework/config/config.go

    		if !strings.HasPrefix(f.Name, prefix) {
    			return
    		}
    		if _, ok := set[f.Name]; ok {
    			return
    		}
    
    		// grab the map containing the last "." separated key
    		keys := strings.Split(f.Name, ".")
    		parentPath, key := keys[:len(keys)-1], keys[len(keys)-1]
    		parent := cfg
    		for _, k := range parentPath {
    			parent = parent.Map(k)
    			if parent == nil {
    				return
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/registry/key.go

    // Key is a handle to an open Windows registry key.
    // Keys can be obtained by calling OpenKey; there are
    // also some predefined root keys such as CURRENT_USER.
    // Keys can be used directly in the Windows API.
    type Key syscall.Handle
    
    const (
    	// Windows defines some predefined root keys that are always open.
    	// An application can use these keys as entry points to the registry.
    	// Normally these keys are used in OpenKey to open new keys,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LoadingCache.java

      /**
       * Returns a map of the values associated with {@code keys}, creating or retrieving those values
       * if necessary. The returned map contains entries that were already cached, combined with newly
       * loaded entries; it will never contain null keys or values.
       *
       * <p>Caches loaded by a {@link CacheLoader} will issue a single request to {@link
       * CacheLoader#loadAll} for all keys which are not already present in the cache. All entries
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/pac/kerberos/KerberosApRequest.java

    @SuppressWarnings ( "javadoc" )
    public class KerberosApRequest {
    
        private byte apOptions;
        private KerberosTicket ticket;
    
    
        public KerberosApRequest ( byte[] token, KerberosKey[] keys ) throws PACDecodingException {
            this(parseSequence(token), keys);
        }
    
        private static ASN1Sequence parseSequence(byte[] token) throws PACDecodingException {
            if ( token.length <= 0 )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. istioctl/pkg/config/config.go

    	return listCmd
    }
    
    func runList(writer io.Writer) error {
    	// Sort flag names
    	keys := make([]string, len(settableFlags))
    	i := 0
    	for key := range settableFlags {
    		keys[i] = key
    		i++
    	}
    	sort.Strings(keys)
    	w := new(tabwriter.Writer).Init(writer, 0, 8, 5, ' ', 0)
    	fmt.Fprintf(w, "FLAG\tVALUE\tFROM\n")
    	for _, flag := range keys {
    		v := settableFlags[flag]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jul 30 12:16:07 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/CompactHashMapTest.java

        assertThat(map.needsAllocArrays()).isTrue();
        assertThat(map.entries).isNull();
        assertThat(map.keys).isNull();
        assertThat(map.values).isNull();
    
        map.put(1, "1");
        assertThat(map.needsAllocArrays()).isFalse();
        assertThat(map.entries).hasLength(CompactHashing.DEFAULT_SIZE);
        assertThat(map.keys).hasLength(CompactHashing.DEFAULT_SIZE);
        assertThat(map.values).hasLength(CompactHashing.DEFAULT_SIZE);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 21:08:15 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  8. operator/pkg/controlplane/control_plane.go

    		}
    	}
    	return out, nil
    }
    
    func orderedKeys(m map[string]*v1alpha1.ExternalComponentSpec) []string {
    	var keys []string
    	for k := range m {
    		keys = append(keys, k)
    	}
    	sort.Strings(keys)
    	return keys
    }
    
    func defaultIfEmpty(val, dflt string) string {
    	if val == "" {
    		return dflt
    	}
    	return val
    }
    
    // Run starts the Istio control plane.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 23 02:26:59 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. pkg/config/labels/instance.go

    	return nil
    }
    
    func (i Instance) String() string {
    	// Ensure stable ordering
    	keys := slices.Sort(maps.Keys(i))
    
    	var buffer strings.Builder
    	// Assume each kv pair is roughly 25 characters. We could be under or over, this is just a guess to optimize
    	buffer.Grow(len(keys) * 25)
    	first := true
    	for _, k := range keys {
    		v := i[k]
    		if !first {
    			buffer.WriteString(",")
    		} else {
    			first = false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 06:54:36 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. pkg/kube/krt/fetch.go

    	// This pre-filtering upfront avoids extra work
    	var list []T
    	if !d.filter.keys.IsNil() {
    		// If they fetch a set of keys, directly Get these. Usually this is a single resource.
    		list = make([]T, 0, d.filter.keys.Len())
    		for _, k := range d.filter.keys.List() {
    			if i := c.GetKey(Key[T](k)); i != nil {
    				list = append(list, *i)
    			}
    		}
    	} else if d.filter.listFromIndex != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top