Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 229 for Credential (0.58 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java

    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.entity.FessUser;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.login.credential.LoginCredential;
    
    public class OpenIdConnectCredential implements LoginCredential, FessCredential {
    
        private final Map<String, Object> attributes;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. pkg/kubelet/images/puller.go

    		}
    		pullRequest.pullChan <- pullResult{
    			imageRef:  imageRef,
    			imageSize: size,
    			err:       err,
    			// Note: pullDuration includes credential resolution and getting the image size.
    			pullDuration: time.Since(startTime),
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

    import org.codelibs.fess.sso.SsoResponseType;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.login.credential.LoginCredential;
    import org.lastaflute.web.login.exception.LoginFailureException;
    import org.lastaflute.web.response.ActionResponse;
    
    public class SsoAction extends FessLoginAction {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java

    import org.codelibs.fess.entity.FessUser;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.sso.aad.AzureAdAuthenticator;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.login.credential.LoginCredential;
    
    import com.microsoft.aad.adal4j.AuthenticationResult;
    import com.microsoft.aad.adal4j.UserInfo;
    
    public class AzureAdCredential implements LoginCredential, FessCredential {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. internal/config/api/help.go

    			Optional:    true,
    			Type:        "boolean",
    		},
    		config.HelpKV{
    			Key:         apiRootAccess,
    			Description: "turn 'off' root credential access for all API calls including s3, admin operations" + defaultHelpPostfix(apiRootAccess),
    			Optional:    true,
    			Type:        "boolean",
    		},
    		config.HelpKV{
    			Key:         apiSyncEvents,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 15 01:07:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/syscall/exec_unix.go

    	}
    	if nonblocking {
    		flag |= O_NONBLOCK
    	} else {
    		flag &^= O_NONBLOCK
    	}
    	_, err = fcntl(fd, F_SETFL, flag)
    	return err
    }
    
    // Credential holds user and group identities to be assumed
    // by a child process started by [StartProcess].
    type Credential struct {
    	Uid         uint32   // User ID.
    	Gid         uint32   // Group ID.
    	Groups      []uint32 // Supplementary group IDs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container_windows_test.go

    		},
    		Limits: v1.ResourceList{
    			v1.ResourceMemory: resource.MustParse("256Mi"),
    			v1.ResourceCPU:    resource.MustParse("3"),
    		},
    	}
    
    	gmsaCredSpecName := "gmsa spec name"
    	gmsaCredSpec := "credential spec"
    	username := "ContainerAdministrator"
    	asHostProcess := true
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "bar",
    			Namespace: "new",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. pkg/kube/multicluster/cluster.go

    func (c *Cluster) Stop() {
    	select {
    	case <-c.stop:
    		return
    	default:
    		close(c.stop)
    	}
    }
    
    func (c *Cluster) HasSynced() bool {
    	// It could happen when a wrong credential provide, this cluster has no chance to run.
    	// In this case, the `initialSyncTimeout` will never be set
    	// In order not block istiod start up, check close as well.
    	if c.Closed() {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. buildscripts/verify-healing.sh

    function __init__() {
    	echo "Initializing environment"
    	mkdir -p "$WORK_DIR"
    	mkdir -p "$MINIO_CONFIG_DIR"
    
    	## version is purposefully set to '3' for minio to migrate configuration file
    	echo '{"version": "3", "credential": {"accessKey": "minio", "secretKey": "minio123"}, "region": "us-east-1"}' >"$MINIO_CONFIG_DIR/config.json"
    
    	if [ ! -f /tmp/mc ]; then
    		wget --quiet -O /tmp/mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java

    import org.codelibs.fess.entity.FessUser;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.login.credential.LoginCredential;
    
    import com.onelogin.saml2.Auth;
    
    public class SamlCredential implements LoginCredential, FessCredential {
    
        private final Map<String, List<String>> attributes;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top