Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,680 for Keys (0.04 sec)

  1. pkg/config/analysis/analyzers/testdata/gateway-secrets-validation.yaml

    kind: Gateway
    metadata:
      name: defaultgateway-missing-keys
    spec:
      selector:
        istio: ingressgateway # use istio default ingress gateway, so we expect the credential in istio-system
      servers:
        - port:
            number: 443
            name: https
            protocol: HTTPS
          tls:
            mode: SIMPLE
            credentialName: "missing-key" # missing keys, should have one error
          hosts:
            - "httpbin.example.com"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 17 11:51:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller.go

    	// Find all keys we need to lookup
    	keys := map[instancesKey]struct{}{}
    	for _, i := range instances {
    		keys[makeInstanceKey(i)] = struct{}{}
    	}
    	s.queueEdsEvent(keys, s.doEdsCacheUpdate)
    }
    
    // queueEdsEvent processes eds events sequentially for the passed keys and invokes the passed function.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  3. test/fixedbugs/bug343.go

    // license that can be found in the LICENSE file.
    
    // issue 1900
    
    package main
    
    func getArgs(data map[string]interface{}, keys ...string) map[string]string {
           ret := map[string]string{}
           var ok bool
           for _, k := range keys {
                   ret[k], ok = data[k].(string)
                   if !ok {}
           }
           return ret
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 721 bytes
    - Viewed (0)
  4. src/mime/multipart/writer.go

    	if w.lastpart != nil {
    		fmt.Fprintf(&b, "\r\n--%s\r\n", w.boundary)
    	} else {
    		fmt.Fprintf(&b, "--%s\r\n", w.boundary)
    	}
    
    	keys := make([]string, 0, len(header))
    	for k := range header {
    		keys = append(keys, k)
    	}
    	slices.Sort(keys)
    	for _, k := range keys {
    		for _, v := range header[k] {
    			fmt.Fprintf(&b, "%s: %s\r\n", k, v)
    		}
    	}
    	fmt.Fprintf(&b, "\r\n")
    	_, err := io.Copy(w.w, &b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/maplist_test.go

    					Type: "array",
    				},
    				Extensions: schema.Extensions{
    					XListType: &listTypeSet,
    				},
    			},
    			query:    map[string]interface{}{},
    			expected: nil,
    		},
    		{
    			name: "no keys",
    			sts: schema.Structural{
    				Generic: schema.Generic{
    					Type: "array",
    				},
    				Extensions: schema.Extensions{
    					XListType: &listTypeMap,
    				},
    			},
    			query:    map[string]interface{}{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 18:08:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/pubkeypin/pubkeypin.go

    // CheckAny checks if at least one certificate matches one of the public keys in the set
    func (s *Set) CheckAny(certificates []*x509.Certificate) error {
    	var hashes []string
    
    	for _, certificate := range certificates {
    		if s.checkSHA256(certificate) {
    			return nil
    		}
    
    		hashes = append(hashes, Hash(certificate))
    	}
    	return errors.Errorf("none of the public keys %q are pinned", strings.Join(hashes, ":"))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 11:38:39 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/AbstractCache.java

       * {@inheritDoc}
       *
       * <p>This implementation of {@code getAllPresent} lacks any insight into the internal cache data
       * structure, and is thus forced to return the query keys instead of the cached keys. This is only
       * possible with an unsafe cast which requires {@code keys} to actually be of type {@code K}.
       *
       * @since 11.0
       */
      /*
       * <? extends Object> is mostly the same as <?> to plain Java. But to nullness checkers, they
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMaker.java

     * interface. It does not permit null keys or values.
     *
     * <p><b>Note:</b> by default, the returned map uses equality comparisons (the {@link Object#equals
     * equals} method) to determine equality for keys or values. However, if {@link #weakKeys} was
     * specified, the map uses identity ({@code ==}) comparisons instead for keys. Likewise, if {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/CompactHashMap.java

       */
      @VisibleForTesting @CheckForNull transient int[] entries;
    
      /**
       * The keys of the entries in the map, in the range of [0, size()). The keys in [size(),
       * keys.length) are all {@code null}.
       */
      @VisibleForTesting @CheckForNull transient @Nullable Object[] keys;
    
      /**
       * The values of the entries in the map, in the range of [0, size()). The values in [size(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/util.cc

      }
      return "1";
    }
    
    std::set<std::string> GetMapKeys(
        const ::google::protobuf::Map<std::string, ::tensorflow::TensorProto>& map) {
      std::set<std::string> keys;
      for (const auto& it : map) {
        keys.insert(it.first);
      }
      return keys;
    }
    
    Status GetInputValues(
        const SignatureDef& signature,
        const ::google::protobuf::Map<std::string, ::tensorflow::TensorProto>& request_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top