Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for setupFns (0.16 sec)

  1. src/cmd/go/internal/work/buildid.go

    // on all different systems are semantically equivalent, which is of course only true
    // modulo bugs. (Producing the exact same executables also requires that the different
    // build setups agree on details like $GOROOT and file name paths, but at least the
    // tool IDs do not make it impossible.)
    func (b *Builder) toolID(name string) string {
    	b.id.Lock()
    	id := b.toolIDCache[name]
    	b.id.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/types.go

    	NodeRegistration NodeRegistrationOptions
    
    	// LocalAPIEndpoint represents the endpoint of the API server instance that's deployed on this control plane node
    	// In HA setups, this differs from ClusterConfiguration.ControlPlaneEndpoint in the sense that ControlPlaneEndpoint
    	// is the global endpoint for the cluster, which then loadbalances the requests to each individual API server. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	NodeRegistration NodeRegistrationOptions `json:"nodeRegistration,omitempty"`
    
    	// LocalAPIEndpoint represents the endpoint of the API server instance that's deployed on this control plane node
    	// In HA setups, this differs from ClusterConfiguration.ControlPlaneEndpoint in the sense that ControlPlaneEndpoint
    	// is the global endpoint for the cluster, which then loadbalances the requests to each individual API server. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    	// setCount * setDriveCount with each memory upto blockSizeV2.
    	buffers := bpool.NewBytePoolCap(n, blockSizeV2, blockSizeV2*2)
    	if n >= 16384 {
    		// pre-populate buffers only n >= 16384 which is (32Gi/2Mi)
    		// for all setups smaller than this avoid pre-alloc.
    		buffers.Populate()
    	}
    	globalBytePoolCap.Store(buffers)
    
    	var localDrives []StorageAPI
    	local := endpointServerPools.FirstLocal()
    	for i, ep := range endpointServerPools {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  5. cmd/erasure-sets.go

    	// List of endpoints provided on the command line.
    	endpoints PoolEndpoints
    
    	// String version of all the endpoints, an optimization
    	// to avoid url.String() conversion taking CPU on
    	// large disk setups.
    	endpointStrings []string
    
    	// Total number of sets and the number of disks per set.
    	setCount, setDriveCount int
    	defaultParityCount      int
    
    	poolIndex int
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. cmd/storage-rest-server.go

    		// Windows can lock up with this optimization, so we fall back to regular copy.
    		sr, ok := rc.(*sendFileReader)
    		if ok {
    			// Sendfile sends in 4MiB chunks per sendfile syscall which is more than enough
    			// for most setups.
    			_, err = rf.ReadFrom(sr.Reader)
    			if !xnet.IsNetworkOrHostDown(err, true) { // do not need to log disconnected clients
    				storageLogIf(r.Context(), err)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

    fi
    
    # Shut down anyway if there's an error.
    set +e
    
    API_PORT=${API_PORT:-0}
    API_SECURE_PORT=${API_SECURE_PORT:-6443}
    
    # WARNING: For DNS to work on most setups you should export API_HOST as the docker0 ip address,
    API_HOST=${API_HOST:-localhost}
    API_HOST_IP=${API_HOST_IP:-"127.0.0.1"}
    ADVERTISE_ADDRESS=${ADVERTISE_ADDRESS:-""}
    NODE_PORT_RANGE=${NODE_PORT_RANGE:-""}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. common/scripts/metallb-native.yaml

                    type: integer
                  echoMode:
                    description: Enables or disables the echo transmission mode. This
                      mode is disabled by default, and not supported on multi hops setups.
                    type: boolean
                  minimumTtl:
                    description: 'For multi hop sessions only: configure the minimum expected
                      TTL for an incoming BFD control packet.'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/xcoff.go

    	case &Segrelrodata:
    		return f.sectNameToScnum[".data"]
    	}
    	Errorf(nil, "getXCOFFscnum not implemented for section %s", sect.Name)
    	return -1
    }
    
    // Xcoffinit initialised some internal value and setups
    // already known header information.
    func Xcoffinit(ctxt *Link) {
    	xfile.dynLibraries = make(map[string]int)
    
    	HEADR = int32(Rnd(XCOFFHDRRESERVE, XCOFFSECTALIGN))
    	if *FlagRound != -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    		replicateObject(ctx, ri, o)
    	} else {
    		globalReplicationPool.queueReplicaTask(ri)
    	}
    }
    
    // proxyTaggingToRepTarget proxies tagging requests to remote targets for
    // active-active replicated setups
    func proxyTaggingToRepTarget(ctx context.Context, bucket, object string, tags *tags.Tags, opts ObjectOptions, proxyTargets *madmin.BucketTargets) (proxy proxyResult) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top