Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Admin (0.15 sec)

  1. cmd/admin-handlers.go

    	anonymizeStrict           = "strict"
    )
    
    // Only valid query params for mgmt admin APIs.
    const (
    	mgmtBucket      = "bucket"
    	mgmtPrefix      = "prefix"
    	mgmtClientToken = "clientToken"
    	mgmtForceStart  = "forceStart"
    	mgmtForceStop   = "forceStop"
    )
    
    // ServerUpdateV2Handler - POST /minio/admin/v3/update?updateURL={updateURL}&type=2
    // ----------
    // updates all minio servers and restarts them gracefully.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  2. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Submitted by Carlo Cannas <******@****.***>
    altervista.org
    
    // alwaysdata : https://www.alwaysdata.com
    // Submitted by Cyril <admin@alwaysdata.com>
    alwaysdata.net
    
    // Amaze Software : https://amaze.co
    // Submitted by Domain Admin <******@****.***>
    myamaze.net
    
    // Amazon : https://www.amazon.com/
    // Submitted by AWS Security <******@****.***>
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  3. cmd/site-replication.go

    	psi = make([]PeerSiteInfo, 0, len(sites))
    	for _, v := range sites {
    		admClient, err := getAdminClient(v.Endpoint, v.AccessKey, v.SecretKey)
    		if err != nil {
    			return psi, errSRPeerResp(fmt.Errorf("unable to create admin client for %s: %w", v.Name, err))
    		}
    
    		info, err := admClient.ServerInfo(ctx)
    		if err != nil {
    			return psi, errSRPeerResp(fmt.Errorf("unable to fetch server info for %s: %w", v.Name, err))
    		}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_admin_brand_title = "{labels.admin_brand_title}";
    
        /** The key of the message: Dashboard */
        public static final String LABELS_admin_dashboard_title = "{labels.admin_dashboard_title}";
    
        /** The key of the message: Toggle navigation */
        public static final String LABELS_admin_toggle_navi = "{labels.admin_toggle_navi}";
    
        /** The key of the message: System */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Failed to delete document. */
        public static final String ERRORS_failed_to_delete_doc_in_admin = "{errors.failed_to_delete_doc_in_admin}";
    
        /** The key of the message: Failed to send the test mail. */
        public static final String ERRORS_failed_to_send_testmail = "{errors.failed_to_send_testmail}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    		case "slow":
    			replLogOnceIf(GlobalContext, fmt.Errorf("Unable to keep up with incoming traffic - we recommend increasing replication priority with `mc admin config set api replication_priority=auto`"), string(replicationSubsystem), logger.WarningKind)
    		default:
    			maxWorkers = min(maxWorkers, WorkerMaxLimit)
    			if p.ActiveWorkers() < maxWorkers {
    				p.mu.RLock()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    Disable test pods testFramework: enabled: false podLabels: sidecar.istio.io/inject: "false" # Demo only, so we will have no authentication admin: existingSecret: "" ldap: existingSecret: true env: GF_SECURITY_ADMIN_USER: "admin" GF_SECURITY_ADMIN_PASSWORD: "admin" GF_AUTH_BASIC_ENABLED: "false" GF_AUTH_ANONYMOUS_ENABLED: "true" GF_AUTH_ANONYMOUS_ORG_ROLE: Admin # Expose on port 3000 to match the Istio docs service: port: 3000 securityContext: null # Set up out dashboards dashboardProviders: dashboardproviders.yaml:...
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  8. fastapi/applications.py

                    from fastapi import Depends, FastAPI
    
                    from .dependencies import get_token_header
                    from .internal import admin
    
                    app = FastAPI()
    
                    app.include_router(
                        admin.router,
                        dependencies=[Depends(get_token_header)],
                    )
                    ```
                    """
                ),
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
Back to top