Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for authentication (0.23 sec)

  1. CHANGELOG/CHANGELOG-1.30.md

       ([#123611](https://github.com/kubernetes/kubernetes/pull/123611), [@ritazh](https://github.com/ritazh))
    - kube-apiserver: JWT authenticator now reports the following metrics: - apiserver_authentication_config_controller_automatic_reloads_total - apiserver_authentication_config_controller_automatic_reload_last_timestamp_seconds
       ([#123793](https://github.com/kubernetes/kubernetes/pull/123793), [@aramase](https://github.com/aramase))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

        }
    
    /**
     * Constructs an SmbFile representing a resource on an SMB network such
     * as a file or directory.
     *
     * @param   url A URL string
     * @param   auth The credentials the client should use for authentication
     * @throws  MalformedURLException
     *          If the <code>url</code> parameter does not follow the prescribed syntax
     */
        public SmbFile( String url, NtlmPasswordAuthentication auth )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  3. cmd/metrics-v2.go

    			},
    			{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: iamSubsystem,
    					Name:      "plugin_authn_service_last_succ_seconds",
    					Help:      "When plugin authentication is configured, returns time (in seconds) since the last successful request to the service",
    					Type:      gaugeMetric,
    				},
    				Value: pluginAuthNMetrics.LastReachableSecs,
    			},
    			{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.5.md

    ## Changelog since v1.5.5
    
    ### Other notable changes
    
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Web Authentication */
        public static final String LABELS_menu_web_authentication = "{labels.menu_web_authentication}";
    
        /** The key of the message: File Authentication */
        public static final String LABELS_menu_file_authentication = "{labels.menu_file_authentication}";
    
        /** The key of the message: Request Header */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    .metadata.creationTimestamp name: Age type: date name: v1beta1 schema: openAPIV3Schema: properties: spec: description: 'Peer authentication configuration for workloads. See more details at: https://istio.io/docs/reference/config/security/peer_authentication.html' properties: mtls: description: Mutual TLS settings for workload. properties: mode: description: Defines the mTLS mode used for peer authentication. enum: - UNSET - DISABLE - PERMISSIVE - STRICT type: string type: object portLevelMtls: additionalProperties:...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  7. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    n.AuthorizationExcepti; private void disconnectWagon(org.apache.maven.wagon.Wagon); private void releaseWagon(String, org.apache.maven.wagon.Wagon); public org.apache.maven.wagon.proxy.ProxyInfo getProxy(String); public org.apache.maven.wagon.authentication.AuthenticationInfo getAuthenticationInf(String); public org.apache.maven.artifact.repository.ArtifactRepository getMirror(String); public void addProxy(String, String, int, String, String, String); public void contextualize(org.codehaus.plexus.context.Context)...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 160.1K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    n.AuthorizationExcepti; private void disconnectWagon(org.apache.maven.wagon.Wagon); private void releaseWagon(String, org.apache.maven.wagon.Wagon); public org.apache.maven.wagon.proxy.ProxyInfo getProxy(String); public org.apache.maven.wagon.authentication.AuthenticationInfo getAuthenticationInf(String); public org.apache.maven.artifact.repository.ArtifactRepository getMirror(String); public void addProxy(String, String, int, String, String, String); public void contextualize(org.codehaus.plexus.context.Context)...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 160.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

            .authenticator(authenticator)
            .build()
        executeSynchronously("/")
          .assertCode(401)
        assertThat(authenticator.onlyRoute()).isNotNull()
      }
    
      @Test
      fun delete() {
        server.enqueue(MockResponse(body = "abc"))
        val request =
          Request.Builder()
            .url(server.url("/"))
            .delete()
            .build()
        executeSynchronously(request)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          MockResponse(body = "c"),
        )
        val authenticator =
          RecordingOkAuthenticator(
            basic("jesse", "peanutbutter"),
            "Basic",
          )
        client =
          client.newBuilder()
            .authenticator(authenticator)
            .build()
        assertContent("c", getResponse(newRequest("/a")))
        val challengeResponse = authenticator.responses[0]
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
Back to top