Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SSO (0.02 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	sso := NewSecureServingOptions()
    
    	// We are composing recommended options for an aggregated api-server,
    	// whose client is typically a proxy multiplexing many operations ---
    	// notably including long-running ones --- into one HTTP/2 connection
    	// into this server.  So allow many concurrent operations.
    	sso.HTTP2MaxStreamsPerConnection = 1000
    
    	return &RecommendedOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. cmd/config-current.go

    			Key:             config.IdentityOpenIDSubSys,
    			Description:     "enable OpenID SSO support",
    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:         config.IdentityLDAPSubSys,
    			Description: "enable LDAP SSO support",
    		},
    		config.HelpKV{
    			Key:         config.IdentityTLSSubSys,
    			Description: "enable X.509 TLS certificate SSO support",
    		},
    		config.HelpKV{
    			Key:         config.IdentityPluginSubSys,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/jar_test.go

    	{"www.example.com", "www.example.com", "www.example.com", false, nil},
    	{"www.example.com", ".www.example.com", "www.example.com", false, nil},
    	{"foo.sso.example.com", "sso.example.com", "sso.example.com", false, nil},
    	{"bar.co.uk", "bar.co.uk", "bar.co.uk", false, nil},
    	{"foo.bar.co.uk", ".bar.co.uk", "bar.co.uk", false, nil},
    	{"127.0.0.1", "127.0.0.1", "127.0.0.1", true, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. src/cmd/go/script_test.go

    		// To help diagnose https://go.dev/issue/52545,
    		// enable tracing for Git HTTPS requests.
    		env = append(env,
    			"GIT_TRACE_CURL=1",
    			"GIT_TRACE_CURL_NO_DATA=1",
    			"GIT_REDACT_COOKIES=o,SSO,GSSO_Uberproxy")
    	}
    	if testing.Short() {
    		// VCS commands are always somewhat slow: they either require access to external hosts,
    		// or they require our intercepted vcs-test.golang.org to regenerate the repository.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    		// To help diagnose https://go.dev/issue/52545,
    		// enable tracing for Git HTTPS requests.
    		os.Setenv("GIT_TRACE_CURL", "1")
    		os.Setenv("GIT_TRACE_CURL_NO_DATA", "1")
    		os.Setenv("GIT_REDACT_COOKIES", "o,SSO,GSSO_Uberproxy")
    	}
    
    	r := m.Run()
    	if !*testWork {
    		removeAll(testTmpDir) // os.Exit won't run defer
    	}
    
    	if !*testWork {
    		// There shouldn't be anything left in topTmpdir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top