Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 169 for ep (0.03 sec)

  1. cmd/xl-storage.go

    	}
    
    	diskID = format.Erasure.This
    	ep := s.endpoint
    	if m != ep.SetIdx || n != ep.DiskIdx {
    		storageLogOnceIf(GlobalContext,
    			fmt.Errorf("unexpected drive ordering on pool: %s: found drive at (set=%s, drive=%s), expected at (set=%s, drive=%s): %s(%s): %w",
    				humanize.Ordinal(ep.PoolIdx+1), humanize.Ordinal(m+1), humanize.Ordinal(n+1), humanize.Ordinal(ep.SetIdx+1), humanize.Ordinal(ep.DiskIdx+1),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/expr.go

    		return nil
    	}
    
    	// dotpath returns the parent embedded types in reverse order.
    	var ep []string
    	for ei := len(p) - 1; ei >= 0; ei-- {
    		ep = append(ep, p[ei].field.Sym.Name)
    	}
    	ep = append(ep, sym.Name)
    	base.Errorf("cannot use promoted field %v in struct literal of type %v", strings.Join(ep, "."), typ)
    	return nil
    }
    
    // tcConv typechecks an OCONV node.
    func tcConv(n *ir.ConvExpr) ir.Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults.go

    		*obj.ReadOnly = false
    	}
    }
    func SetDefaults_Endpoints(obj *v1.Endpoints) {
    	for i := range obj.Subsets {
    		ss := &obj.Subsets[i]
    		for i := range ss.Ports {
    			ep := &ss.Ports[i]
    			if ep.Protocol == "" {
    				ep.Protocol = v1.ProtocolTCP
    			}
    		}
    	}
    }
    func SetDefaults_HTTPGetAction(obj *v1.HTTPGetAction) {
    	if obj.Path == "" {
    		obj.Path = "/"
    	}
    	if obj.Scheme == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. cmd/handler-utils.go

    func proxyRequest(ctx context.Context, w http.ResponseWriter, r *http.Request, ep ProxyEndpoint) (success bool) {
    	success = true
    
    	// Make sure we remove any existing headers before
    	// proxying the request to another node.
    	for k := range w.Header() {
    		w.Header().Del(k)
    	}
    
    	f := handlers.NewForwarder(&handlers.Forwarder{
    		PassHost:     true,
    		RoundTripper: ep.Transport,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. internal/config/errors.go

    		"",
    	)
    
    	ErrPortAccess = newErrFn(
    		"Unable to use specified port",
    		"Please ensure MinIO binary has 'cap_net_bind_service=+ep' permissions",
    		`Use 'sudo setcap cap_net_bind_service=+ep /path/to/minio' to provide sufficient permissions`,
    	)
    
    	ErrTLSReadError = newErrFn(
    		"Cannot read the TLS certificate",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 22:25:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    }
    
    // UpdateEtcdDbSize sets the etcd_db_total_size_in_bytes metric.
    // Deprecated: Metric etcd_db_total_size_in_bytes will be replaced with apiserver_storage_size_bytes
    func UpdateEtcdDbSize(ep string, size int64) {
    	dbTotalSize.WithLabelValues(ep).Set(float64(size))
    }
    
    // SetStorageMonitorGetter sets monitor getter to allow monitoring etcd stats.
    func SetStorageMonitorGetter(getter func() ([]Monitor, error)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. docs/sts/custom-token-identity.go

    	// Display credentials flag
    	displayCreds bool
    
    	// Credential expiry duration
    	expiryDuration time.Duration
    
    	// Bucket to list
    	bucketToList string
    )
    
    func init() {
    	flag.StringVar(&stsEndpoint, "sts-ep", "http://localhost:9000", "STS endpoint")
    	flag.StringVar(&token, "t", "", "Token to use with AssumeRoleWithCustomToken STS API (required)")
    	flag.StringVar(&roleArn, "r", "", "RoleARN to use with the request (required)")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbEnumerationUtil.java

    
        private static DcerpcHandle getHandle ( CIFSContext ctx, SmbResourceLocator loc, Address address, String ep )
                throws MalformedURLException, DcerpcException {
            return DcerpcHandle.getHandle(String.format("ncacn_np:%s[endpoint=%s,address=%s]", loc.getServer(), ep, address.getHostAddress()), ctx);
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:41:19 UTC 2019
    - 12.5K bytes
    - Viewed (0)
  9. docs/sts/dex.md

    ~ minio server ~/test
    ```
    
    ### Run the `web-identity.go`
    
    ```
    ~ go run web-identity.go -cid example-app -csec ZXhhbXBsZS1hcHAtc2VjcmV0 \
         -config-ep http://127.0.0.1:5556/dex/.well-known/openid-configuration \
         -cscopes groups,openid,email,profile
    ```
    
    ```
    ~ mc admin policy create admin allaccess.json
    ```
    
    Contents of `allaccess.json`
    
    ```json
    {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/etcd/etcd.go

    				resp, err = cli.Status(ctx, ep)
    				cancel()
    				if err == nil {
    					return true, nil
    				}
    				klog.V(5).Infof("Failed to get etcd status for %s: %v", ep, err)
    				lastError = err
    				return false, nil
    			})
    		if err != nil {
    			return nil, lastError
    		}
    
    		clusterStatus[ep] = resp
    	}
    	return clusterStatus, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top