Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 169 for ep (0.01 sec)

  1. cmd/lock-rest-client.go

    	if endpoint.IsLocal {
    		return globalLockServer
    	}
    	return newlockRESTClient(endpoint)
    }
    
    // Returns a lock rest client.
    func newlockRESTClient(ep Endpoint) *lockRESTClient {
    	return &lockRESTClient{globalGrid.Load().Connection(ep.GridHost())}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 24 17:07:14 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/runtime/cgocall.go

    		case abi.Slice:
    			// Check the slice rather than the pointer.
    			ep = aep
    			t = ep._type
    		case abi.Array:
    			// Check the array rather than the pointer.
    			// Pass top as false since we have a pointer
    			// to the array.
    			ep = aep
    			t = ep._type
    			top = false
    		default:
    			throw("can't happen")
    		}
    	}
    
    	cgoCheckArg(t, ep.data, t.Kind_&abi.KindDirectIface == 0, top, cgoCheckPointerFail)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. cmd/admin-heal-ops.go

    }
    
    func (ahs *allHealState) popHealLocalDisks(healLocalDisks ...Endpoint) {
    	ahs.Lock()
    	defer ahs.Unlock()
    
    	for _, ep := range healLocalDisks {
    		delete(ahs.healLocalDisks, ep)
    	}
    	for id, disk := range ahs.healStatus {
    		for _, ep := range healLocalDisks {
    			if disk.Endpoint == ep.String() {
    				delete(ahs.healStatus, id)
    			}
    		}
    	}
    }
    
    // updateHealStatus will update the heal status.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. docs/sts/client-grants.go

    }
    
    var (
    	stsEndpoint  string
    	idpEndpoint  string
    	clientID     string
    	clientSecret string
    )
    
    func init() {
    	flag.StringVar(&stsEndpoint, "sts-ep", "http://localhost:9000", "STS endpoint")
    	flag.StringVar(&idpEndpoint, "idp-ep", "http://localhost:8080/auth/realms/minio/protocol/openid-connect/token", "IDP token endpoint")
    	flag.StringVar(&clientID, "cid", "", "Client ID")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  5. cmd/endpoint-ellipses.go

    func parseEndpointSet(setDriveCount uint64, args ...string) (ep endpointSet, err error) {
    	argPatterns := make([]ellipses.ArgPattern, len(args))
    	for i, arg := range args {
    		patterns, perr := ellipses.FindEllipsesPatterns(arg)
    		if perr != nil {
    			return endpointSet{}, config.ErrInvalidErasureEndpoints(nil).Msg(perr.Error())
    		}
    		argPatterns[i] = patterns
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. pkg/controlplane/reconcilers/endpointsadapter.go

    func endpointFromAddress(address corev1.EndpointAddress, ready bool) discovery.Endpoint {
    	ep := discovery.Endpoint{
    		Addresses:  []string{address.IP},
    		Conditions: discovery.EndpointConditions{Ready: &ready},
    		TargetRef:  address.TargetRef,
    	}
    
    	if address.NodeName != nil {
    		ep.NodeName = address.NodeName
    	}
    
    	return ep
    }
    
    // allAddressesIPv6 returns true if all provided addresses are IPv6.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:23 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/util/util.go

    	for _, ep := range endpoints {
    		clone := CloneLocalityLbEndpoint(ep)
    		out = append(out, clone)
    	}
    	return out
    }
    
    // return a shallow copy of LocalityLbEndpoints
    func CloneLocalityLbEndpoint(ep *endpoint.LocalityLbEndpoints) *endpoint.LocalityLbEndpoints {
    	clone := &endpoint.LocalityLbEndpoints{}
    	clone.Locality = ep.Locality
    	clone.LbEndpoints = ep.LbEndpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			} else {
    				targetPort = serviceEntryPort.Number
    			}
    			ep := workloadInstance.Endpoint.ShallowCopy()
    			ep.ServicePortName = serviceEntryPort.Name
    			ep.LegacyClusterPortKey = int(serviceEntryPort.Number)
    
    			ep.EndpointPort = targetPort
    			out = append(out, &model.ServiceInstance{
    				Endpoint:    ep,
    				Service:     service,
    				ServicePort: convertPort(serviceEntryPort),
    			})
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. cmd/admin-server-info.go

    	if r != nil {
    		addr = r.Host
    	}
    	if globalIsDistErasure {
    		addr = globalLocalNodeName
    	}
    	poolNumbers := make(map[int]struct{})
    	network := make(map[string]string)
    	for _, ep := range endpointServerPools {
    		for _, endpoint := range ep.Endpoints {
    			if endpoint.IsLocal {
    				poolNumbers[endpoint.PoolIdx+1] = struct{}{}
    			}
    			nodeName := endpoint.Host
    			if nodeName == "" {
    				nodeName = addr
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. pkg/proxy/endpointslicecache.go

    		applied: endpointSliceDataByName{},
    		pending: endpointSliceDataByName{},
    	}
    }
    
    // standardEndpointInfo is the default makeEndpointFunc.
    func standardEndpointInfo(ep *BaseEndpointInfo, _ *ServicePortName) Endpoint {
    	return ep
    }
    
    // updatePending updates a pending slice in the cache.
    func (cache *EndpointSliceCache) updatePending(endpointSlice *discovery.EndpointSlice, remove bool) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top