Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 4,071 for config1 (0.07 sec)

  1. platforms/documentation/docs/src/snippets/providers/fileAndDirectoryProperty/groovy/src/config.txt

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/providers/fileAndDirectoryProperty/kotlin/src/config.txt

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12 bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/echotest/config.go

    // limitations under the License.
    
    package echotest
    
    import (
    	"istio.io/istio/pkg/test/framework/components/echo/config"
    )
    
    // Config adds a configuration source that will be applied during the run of this tester.
    func (t *T) Config(s config.Source) *T {
    	t.cfg = t.cfg.Source(s)
    	return t
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 23:26:33 UTC 2022
    - 844 bytes
    - Viewed (0)
  4. pkg/test/framework/config.go

    	"istio.io/istio/pkg/test/framework/resource/config"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	"istio.io/istio/pkg/test/framework/resource/config/cleanup"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/file"
    	"istio.io/istio/pkg/test/util/tmpl"
    	"istio.io/istio/pkg/test/util/yml"
    )
    
    var _ config.Factory = &configFactory{}
    
    type configFactory struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. cni/pkg/config/config.go

    // limitations under the License.
    
    package config
    
    import (
    	"fmt"
    	"strings"
    )
    
    type Config struct {
    	InstallConfig InstallConfig
    	RepairConfig  RepairConfig
    }
    
    // InstallConfig struct defines the Istio CNI installation options
    type InstallConfig struct {
    	// Location of the CNI config files in the host's filesystem
    	CNINetDir string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. pkg/test/echo/server/forwarder/config.go

    					fwLog.Debugf("  AcceptableCA[%d]: %s", i, name)
    				}
    			}
    
    			return &cert, nil
    		}, nil
    	}
    
    	return nil, nil
    }
    
    func newTLSConfig(c *Config) (*tls.Config, error) {
    	r := c.Request
    	tlsConfig := &tls.Config{
    		GetClientCertificate: c.getClientCertificate,
    		NextProtos:           r.GetAlpn().GetValue(),
    		ServerName:           r.ServerName,
    		MinVersion:           tls.VersionTLS12,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/config/config.go

    	HostIPv4LoopbackCidr    string        `json:"HOST_IPV4_LOOPBACK_CIDR"`
    }
    
    func (c *Config) String() string {
    	output, err := json.MarshalIndent(c, "", "\t")
    	if err != nil {
    		log.Errorf("Unable to marshal config object: %v", err)
    	}
    	return string(output)
    }
    
    func (c *Config) Print() {
    	var b strings.Builder
    	b.WriteString(fmt.Sprintf("PROXY_PORT=%s\n", c.ProxyPort))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. cmd/kube-apiserver/app/config.go

    	generatedopenapi "k8s.io/kubernetes/pkg/generated/openapi"
    )
    
    type Config struct {
    	Options options.CompletedOptions
    
    	Aggregator    *aggregatorapiserver.Config
    	KubeAPIs      *controlplane.Config
    	ApiExtensions *apiextensionsapiserver.Config
    
    	ExtraConfig
    }
    
    type ExtraConfig struct {
    }
    
    type completedConfig struct {
    	Options options.CompletedOptions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/admission/config.go

    package admission
    
    import (
    	"os"
    
    	"k8s.io/klog/v2"
    
    	"k8s.io/apiserver/pkg/admission"
    )
    
    // Config holds the configuration needed to for initialize the admission plugins
    type Config struct {
    	CloudConfigFile string
    }
    
    // New sets up the plugins and admission start hooks needed for admission
    func (c *Config) New() ([]admission.PluginInitializer, error) {
    	var cloudConfig []byte
    	if c.CloudConfigFile != "" {
    		var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/authenticator/config.go

    		if err != nil {
    			return nil, nil, nil, nil, err
    		}
    		tokenAuthenticators = append(tokenAuthenticators, authenticator.WrapAudienceAgnosticToken(config.APIAudiences, tokenAuth))
    	}
    	if len(config.ServiceAccountKeyFiles) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top