Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,103 for Configs (0.17 sec)

  1. pilot/pkg/model/config.go

    		if configs[i].CreationTimestamp == configs[j].CreationTimestamp {
    			in := configs[i].Name + "." + configs[i].Namespace
    			jn := configs[j].Name + "." + configs[j].Namespace
    			return in < jn
    		}
    		return configs[i].CreationTimestamp.Before(configs[j].CreationTimestamp)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/settings.go

    	// Start with system configs.
    	configs := []namedConfig{{Name: "Default", config: defaultConfig()}}
    	if settings, err := readSettings(fname); err == nil {
    		// Add user configs.
    		configs = append(configs, settings.Configs...)
    	}
    
    	// Convert to menu entries.
    	result := make([]configMenuEntry, len(configs))
    	lastMatch := -1
    	for i, cfg := range configs {
    		dst, changed := cfg.config.makeURL(u)
    		if !changed {
    			lastMatch = i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/authorization.go

    	log.Debugf("applying authorization policy %s.%s",
    		config.Namespace, config.Name)
    	switch config.Spec.GetAction() {
    	case authpb.AuthorizationPolicy_ALLOW:
    		configs.Allow = append(configs.Allow, config)
    	case authpb.AuthorizationPolicy_DENY:
    		configs.Deny = append(configs.Deny, config)
    	case authpb.AuthorizationPolicy_AUDIT:
    		configs.Audit = append(configs.Audit, config)
    	case authpb.AuthorizationPolicy_CUSTOM:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/crypto/tls/ech_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	configs, err := parseECHConfigList(b)
    	if err != nil {
    		t.Fatal(err)
    	}
    	config := pickECHConfig(configs)
    	if config != nil {
    		t.Fatal("pickECHConfig picked an invalid config")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. pilot/pkg/model/authorization_test.go

    	var configs []config.Config
    	for _, data := range fs.data {
    		if data.typ == typ {
    			if namespace != "" && data.ns == namespace {
    				continue
    			}
    			configs = append(configs, data.cfg)
    		}
    	}
    	return configs
    }
    
    func (fs *authzFakeStore) Delete(_ config.GroupVersionKind, _, _ string, _ *string) error {
    	return fmt.Errorf("not implemented")
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route_cache.go

    			configs = append(configs, cfg.HashCode())
    		}
    	}
    	// add delegate virtual services to dependent configs
    	// so that we can clear the rds cache when delegate virtual services are updated
    	configs = append(configs, r.DelegateVirtualServices...)
    	for _, mergedDR := range r.DestinationRules {
    		for _, dr := range mergedDR.GetFrom() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. .github/workflows/update-rbe.yml

    
    # This Workflow updates tensorflow/tools/toolchains/remote_config/configs.bzl
    # to reference the most recent versions of the SIG Build Docker images.
    name: Update RBE Configs
    on:
      workflow_dispatch:
    
    permissions:
      contents: read
    
    jobs:
      rbe:
        name: Update RBE Configs
        runs-on: ubuntu-latest
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 15:40:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/qos_container_manager_linux.go

    	if burstableMin > 0 {
    		if configs[v1.PodQOSBurstable].ResourceParameters.Unified == nil {
    			configs[v1.PodQOSBurstable].ResourceParameters.Unified = make(map[string]string)
    		}
    		configs[v1.PodQOSBurstable].ResourceParameters.Unified[Cgroup2MemoryMin] = strconv.FormatInt(burstableMin, 10)
    		klog.V(4).InfoS("MemoryQoS config for qos", "qos", v1.PodQOSBurstable, "memoryMin", burstableMin)
    	}
    
    	if guaranteedMin > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/GitHubMergeQueueCheckPass.kt

    import common.uuidPrefix
    import jetbrains.buildServer.configs.kotlin.AbsoluteId
    import jetbrains.buildServer.configs.kotlin.CheckoutMode
    import jetbrains.buildServer.configs.kotlin.DslContext
    import jetbrains.buildServer.configs.kotlin.FailureAction
    import jetbrains.buildServer.configs.kotlin.RelativeId
    import jetbrains.buildServer.configs.kotlin.triggers.VcsTrigger
    import jetbrains.buildServer.configs.kotlin.triggers.vcs
    import model.CIBuildModel
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 05:43:32 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. pilot/pkg/xds/proxy_dependencies_test.go

    			name:    fmt.Sprintf("%s config for sidecar", k.String()),
    			proxy:   sidecar,
    			configs: sets.New(model.ConfigKey{Kind: k, Name: name, Namespace: nsName}),
    			want:    true,
    		}, Case{ // invalid name
    			name:    fmt.Sprintf("%s unmatched config for sidecar", k.String()),
    			proxy:   sidecar,
    			configs: sets.New(model.ConfigKey{Kind: k, Name: name + invalidNameSuffix, Namespace: nsName}),
    			want:    false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top