Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 877 for Credential (0.17 sec)

  1. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            log(valueMap);
        }
    
        public void loginFailure(final OptionalThing<LoginCredential> credential) {
            final Map<String, String> valueMap = new LinkedHashMap<>();
            valueMap.put("action", Action.LOGIN_FAILURE.name());
            credential.ifPresent(c -> {
                valueMap.put("class", c.getClass().getSimpleName());
                if (c instanceof final FessCredential fessCredential) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.base.login;
    
    import org.lastaflute.web.login.credential.LoginCredential;
    
    public class SpnegoCredential implements LoginCredential, FessCredential {
        private final String username;
    
        public SpnegoCredential(final String username) {
            this.username = username;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. tests/integration/security/egress_sidecar_tls_origination_test.go

    	// nolint: staticcheck
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			var (
    				credNameGeneric  = "mtls-credential-generic"
    				fakeCredName     = "fake-mtls-credential"
    				credWithCRL      = "mtls-credential-generic-valid-crl"
    				credWithDummyCRL = "mtls-credential-generic-dummy-crl"
    			)
    
    			// Create a valid kubernetes secret to provision key/cert for sidecar.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. prow/lib.sh

    function setup_gcloud_credentials() {
      if [[ $(command -v gcloud) ]]; then
        gcloud auth configure-docker us-docker.pkg.dev -q
      elif [[ $(command -v docker-credential-gcr) ]]; then
        docker-credential-gcr configure-docker --registries=-us-docker.pkg.dev
      else
        echo "No credential helpers found, push to docker may not function properly"
      fi
    }
    
    function setup_and_export_git_sha() {
      if [[ -n "${CI:-}" ]]; then
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

            - name: workload-socket
              mountPath: /var/run/secrets/workload-spiffe-uds
            - name: credential-socket
              mountPath: /var/run/secrets/credential-uds
            {{- if eq .Values.global.caName "GkeWorkloadCertificate" }}
            - name: gke-workload-certificate
              mountPath: /var/run/secrets/workload-spiffe-credentials
              readOnly: true
            {{- else }}
            - name: workload-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. docs/iam/access-management-plugin.md

    MinIO now includes support for using an Access Management Plugin. This is to allow object storage access control to be managed externally via a webhook.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 13 22:28:48 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/sidecar_template.golden.yaml

            ---
          credential-volume: |
            spec:
              volumes:
              - name: application-credentials
                secret:
                  secretName: secret
              containers:
              - name: istio-proxy
                volumeMounts:
                - name: application-credentials
                  mountPath: /etc/istio/application-credentials
                  readOnly: true
      values: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 86.9K bytes
    - Viewed (0)
  8. security/pkg/credentialfetcher/plugin/gce_test.go

    		},
    		"remaining life time is not in grace period": {
    			jwt:            thirdPartyJwt,
    			now:            jwtExp.Add(time.Duration(-30) * time.Minute),
    			expectedRotate: false,
    		},
    		"no cached credential": {
    			now:            time.Now(),
    			expectedRotate: true,
    		},
    		"no expiration in token": {
    			jwt:            firstPartyJwt,
    			now:            time.Now(),
    			expectedRotate: true,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 10.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/login/LocalUserCredential.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.base.login;
    
    import org.lastaflute.web.login.credential.UserPasswordCredential;
    
    public class LocalUserCredential extends UserPasswordCredential implements FessCredential {
        public LocalUserCredential(final String user, final String password) {
            super(user, password);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1021 bytes
    - Viewed (0)
  10. pkg/credentialprovider/plugin/config.go

    	if configPath == "" {
    		return nil, fmt.Errorf("credential provider config path is empty")
    	}
    
    	data, err := os.ReadFile(configPath)
    	if err != nil {
    		return nil, fmt.Errorf("unable to read external registry credential provider configuration from %q: %w", configPath, err)
    	}
    
    	config, err := decode(data)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top