Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,347 for config2 (0.23 sec)

  1. cmd/admin-handlers-config-kv.go

    			case config.PolicyPluginSubSys:
    				off = !polplugin.Enabled(item.Config)
    			case config.IdentityOpenIDSubSys:
    				off = !openid.Enabled(item.Config)
    			case config.IdentityLDAPSubSys:
    				off = !xldap.Enabled(item.Config)
    			case config.IdentityTLSSubSys:
    				off = !globalIAMSys.STSTLSConfig.Enabled
    			case config.IdentityPluginSubSys:
    				off = !idplugin.Enabled(item.Config)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. cluster/gce/config-default.sh

    fi
    
    # When ENABLE_AUTH_PROVIDER_GCP is set, following flags for out-of-tree credential provider for GCP
    # are presented to kubelet:
    # --image-credential-provider-config=${path-to-config}
    # --image-credential-provider-bin-dir=${path-to-auth-provider-binary}
    # Also, it is required that DisableKubeletCloudCredentialProviders
    # feature gates are set to true for kubelet to use external credential provider.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

            configB2 project(path:':a', configuration:'configA2')
        }
    }
    """
            resolve.prepare {
                config("configB1")
                config("configB2")
            }
    
            when:
            run ":b:checkConfigB1"
    
            then:
            executedAndNotSkipped ":a:A1jar"
            resolve.expectGraph {
                root(":b", "test:b:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. cluster/gce/config-test.sh

    fi
    
    # When ENABLE_AUTH_PROVIDER_GCP is set, following flags for out-of-tree credential provider for GCP
    # are presented to kubelet:
    # --image-credential-provider-config=${path-to-config}
    # --image-credential-provider-bin-dir=${path-to-auth-provider-binary}
    # Also, it is required that DisableKubeletCloudCredentialProviders and KubeletCredentialProviders
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. pkg/log/config.go

    John Howard <******@****.***> 1711485490 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/controller.go

    // API server.
    func deepCopyStatus(configs []config.Config) []config.Config {
    	return slices.Map(configs, func(c config.Config) config.Config {
    		return config.Config{
    			Meta:   c.Meta,
    			Spec:   c.Spec,
    			Status: kstatus.Wrap(c.Status),
    		}
    	})
    }
    
    // filterNamespace allows filtering out configs to only a specific namespace. This allows implementing the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. pilot/pkg/xds/debug.go

    	// The config dump must have all configs with connections specified in
    	// https://www.envoyproxy.io/docs/envoy/latest/api-v2/admin/v2alpha/config_dump.proto
    	configs := []*anypb.Any{
    		bootstrapAny,
    		clustersAny,
    	}
    	if includeEds {
    		configs = append(configs, endpointsAny)
    	}
    	configs = append(configs,
    		listenersAny,
    		scopedRoutesAny,
    		routesAny,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  8. cmd/bucket-replication_test.go

    		expectedSync: false,
    	},
    	{ // 3. existing object replication config enabled, versioning suspended
    		name:         "existing object replication config enabled, versioning suspended",
    		info:         ObjectInfo{Size: 100, VersionID: nullVersionID},
    		rcfg:         replicationConfig{Config: &configs[0]},
    		expectedSync: false,
    	},
    	{ // 4. existing object replication enabled, versioning enabled; no reset in progress
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 16 09:28:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. 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)
  10. pilot/pkg/model/authentication.go

    }
    
    func (policy *AuthenticationPolicies) addRequestAuthentication(configs []config.Config) {
    	for _, config := range configs {
    		policy.requestAuthentications[config.Namespace] = append(policy.requestAuthentications[config.Namespace], config)
    	}
    }
    
    func (policy *AuthenticationPolicies) addPeerAuthentication(configs []config.Config) {
    	// Sort configs in ascending order by their creation time.
    	sortConfigByCreationTime(configs)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top