Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,142 for Configs (0.4 sec)

  1. pilot/pkg/config/aggregate/config.go

    	for _, curConfigs := range storeConfigs {
    		configs = append(configs, curConfigs...)
    	}
    	configs = slices.FilterInPlace[config.Config](configs, func(cfg config.Config) bool {
    		return !configMap.InsertContains(cfg.NamespacedName())
    	})
    
    	return configs
    }
    
    func (cr *store) Delete(typ config.GroupVersionKind, name, namespace string, resourceVersion *string) error {
    	if cr.writer == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. pilot/pkg/security/authz/builder/builder.go

    		filters = append(filters, configs.http...)
    	}
    	if configs := b.build(b.denyPolicies, rbacpb.RBAC_DENY, false); configs != nil {
    		b.logger.AppendDebugf("built %d HTTP filters for DENY action", len(configs.http))
    		filters = append(filters, configs.http...)
    	}
    	if configs := b.build(b.allowPolicies, rbacpb.RBAC_ALLOW, false); configs != nil {
    		b.logger.AppendDebugf("built %d HTTP filters for ALLOW action", len(configs.http))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/vcsroots/VcsRoots.kt

    package vcsroots
    
    import jetbrains.buildServer.configs.kotlin.AbsoluteId
    import jetbrains.buildServer.configs.kotlin.CheckoutMode
    import jetbrains.buildServer.configs.kotlin.VcsSettings
    
    val gradlePromotionMaster = "Gradle_GradlePromoteMaster"
    val gradlePromotionBranches = "Gradle_GradlePromoteBranches"
    
    fun VcsSettings.useAbsoluteVcs(absoluteId: String) {
        root(AbsoluteId(absoluteId))
    
        checkoutMode = CheckoutMode.ON_AGENT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 510 bytes
    - Viewed (0)
  7. 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)
  8. tests/test_tutorial/test_configure_swagger_ui/test_tutorial002.py

            '"dom_id": "#swagger-ui"' in response.text
        ), "default configs should be preserved"
        assert "presets: [" in response.text, "default configs should be preserved"
        assert (
            "SwaggerUIBundle.presets.apis," in response.text
        ), "default configs should be preserved"
        assert (
            "SwaggerUIBundle.SwaggerUIStandalonePreset" in response.text
        ), "default configs should be preserved"
        assert (
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. .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)
  10. 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)
Back to top