Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Jasmin (0.23 sec)

  1. cmd/site-replication.go

    	sites, err := c.GetClusterInfo(ctx)
    	if err != nil {
    		return madmin.ReplicateEditStatus{}, errSRBackendIssue(err)
    	}
    	if !sites.Enabled {
    		return madmin.ReplicateEditStatus{}, errSRNotEnabled
    	}
    
    	var (
    		found     bool
    		admClient *madmin.AdminClient
    	)
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
  2. cmd/bucket-replication.go

    	if opts.VersionSuspended {
    		return &madmin.BucketTargets{}
    	}
    	if opts.ProxyRequest || (opts.ProxyHeaderSet && !opts.ProxyRequest) {
    		return &madmin.BucketTargets{}
    	}
    	cfg, err := getReplicationConfig(ctx, bucket)
    	if err != nil || cfg == nil {
    		replLogOnceIf(ctx, err, bucket)
    
    		return &madmin.BucketTargets{}
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  3. cmd/metrics-v2.go

    		metricsGroupOpts: opts,
    	}
    
    	mg.RegisterRead(func(ctx context.Context) (metrics []MetricV2) {
    		var m madmin.RealtimeMetrics
    		mLocal := collectLocalMetrics(madmin.MetricsBatchJobs, collectMetricsOpts{})
    		m.Merge(&mLocal)
    
    		mRemote := collectRemoteMetrics(ctx, madmin.MetricsBatchJobs, collectMetricsOpts{})
    		m.Merge(&mRemote)
    
    		if m.Aggregated.BatchJobs == nil {
    			return
    		}
    
    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. 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 Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  5. 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 Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.5.md

      - [beta] Added ability to authenticate/authorize access to the Kubelet API ([docs](http://kubernetes.io/docs/admin/kubelet-authentication-authorization/)) ([kubernetes/features#89](https://github.com/kubernetes/enhancements/issues/89))
    - **AWS**
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  7. 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 Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.4.md

      - [alpha] Access Review APIs expose authorization engine to external inquiries for delegation, inspection, and debugging ([docs](http://kubernetes.io/docs/admin/authorization/)) ([kubernetes/features#37](https://github.com/kubernetes/enhancements/issues/37))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  9. 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 Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  10. 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 Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
Back to top