Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 124 for keyA (0.04 sec)

  1. pkg/bootstrap/config.go

    	}
    
    	extractMetadata(options.Envs, IstioMetaPrefix, func(m map[string]any, key string, val string) {
    		m[key] = val
    	}, untypedMeta)
    
    	extractMetadata(options.Envs, IstioMetaJSONPrefix, func(m map[string]any, key string, val string) {
    		err := json.Unmarshal([]byte(val), &m)
    		if err != nil {
    			log.Warnf("Env variable %s [%s] failed json unmarshal: %v", key, val, err)
    		}
    	}, untypedMeta)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-kubeapiserver.sh

      params+=" --tls-private-key-file=${APISERVER_SERVER_KEY_PATH}"
      if [[ -n "${OLD_MASTER_IP:-}" ]]; then
        local old_ips="${OLD_MASTER_IP}"
        if [[ -n "${OLD_LOAD_BALANCER_IP:-}" ]]; then
          old_ips+=",${OLD_LOAD_BALANCER_IP}"
        fi
        if [[ -n "${OLD_PRIVATE_VIP:-}" ]]; then
          old_ips+=",${OLD_PRIVATE_VIP}"
        fi
        params+=" --tls-sni-cert-key=${OLD_MASTER_CERT_PATH},${OLD_MASTER_KEY_PATH}:${old_ips}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    		if elt == nil {
    			return nil
    		}
    		return &ast.ArrayType{
    			Elt: elt,
    		}
    	case *types.Map:
    		key := TypeExpr(f, pkg, t.Key())
    		value := TypeExpr(f, pkg, t.Elem())
    		if key == nil || value == nil {
    			return nil
    		}
    		return &ast.MapType{
    			Key:   key,
    			Value: value,
    		}
    	case *types.Chan:
    		dir := ast.ChanDir(t.Dir())
    		if t.Dir() == types.SendRecv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/helper/helpers.go

    // NodeSelectorRequirementKeysExistInNodeSelectorTerms checks if a NodeSelectorTerm with key is already specified in terms
    func NodeSelectorRequirementKeysExistInNodeSelectorTerms(reqs []v1.NodeSelectorRequirement, terms []v1.NodeSelectorTerm) bool {
    	for _, req := range reqs {
    		for _, term := range terms {
    			for _, r := range term.MatchExpressions {
    				if r.Key == req.Key {
    					return true
    				}
    			}
    		}
    	}
    	return false
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. internal/logger/target/kafka/kafka.go

    		return errors.New("log buffer full")
    	}
    	return nil
    }
    
    // SendFromStore - reads the log from store and sends it to kafka.
    func (h *Target) SendFromStore(key store.Key) (err error) {
    	auditEntry, err := h.store.Get(key.Name)
    	if err != nil {
    		if os.IsNotExist(err) {
    			return nil
    		}
    		return err
    	}
    	atomic.AddInt64(&h.totalMessages, 1)
    	err = h.send(auditEntry)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	ms := plugin.MappingSources{}
    	for _, m := range p.Mapping {
    		src := struct {
    			Source string
    			Start  uint64
    		}{
    			source, m.Start,
    		}
    		key := m.BuildID
    		if key == "" {
    			key = m.File
    		}
    		if key == "" {
    			// If there is no build id or source file, use the source as the
    			// mapping file. This will enable remote symbolization for this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. internal/config/storageclass/storage-class.go

    )
    
    // DefaultKVS - default storage class config
    var (
    	DefaultKVS = config.KVS{
    		config.KV{
    			Key:   ClassStandard,
    			Value: "",
    		},
    		config.KV{
    			Key:   ClassRRS,
    			Value: "EC:1",
    		},
    		config.KV{
    			Key:   Optimize,
    			Value: "availability",
    		},
    		config.KV{
    			Key:           InlineBlock,
    			Value:         "",
    			HiddenIfEmpty: true,
    		},
    	}
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. cmd/generic-handlers.go

    	for key := range header {
    		if slices.Contains(maps.Keys(validSSEReplicationHeaders), key) {
    			return false
    		}
    		if stringsHasPrefixFold(key, ReservedMetadataPrefix) {
    			return true
    		}
    	}
    	return false
    }
    
    // isHTTPHeaderSizeTooLarge returns true if the provided
    // header is larger than 8 KB or the user-defined metadata
    // is larger than 2 KB.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. pilot/pkg/model/service.go

    	// TODO IP based lookup should switch to looking up services by name/ns
    	key := WaypointKey{
    		Network: node.Metadata.Network.String(),
    	}
    	for _, svct := range node.ServiceTargets {
    		ips := svct.Service.ClusterVIPs.GetAddressesFor(node.GetClusterID())
    		key.Addresses = append(key.Addresses, ips...)
    	}
    	return key
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

    import org.apache.maven.api.xml.XmlNode;
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.classrealm.ClassRealmManager;
    import org.apache.maven.di.Injector;
    import org.apache.maven.di.Key;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.execution.scope.internal.MojoExecutionScope;
    import org.apache.maven.execution.scope.internal.MojoExecutionScopeModule;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top