Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for setupFns (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: improve the "IsPriviledgedUser" preflight check to not fail on certain Windows setups. ([#124665](https://github.com/kubernetes/kubernetes/pull/124665), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    }
    
    // SitePerfHandler -  measures network throughput between site replicated setups
    func (a adminAPIHandlers) SitePerfHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.HealthInfoAdminAction)
    	if objectAPI == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    - `getName()`
    - `isCurrentBuild()`
    
    You could use these methods to distinguish between different project components with the same name but from different builds.
    However, for certain composite build setups, these methods do not provide enough information to guarantee uniqueness.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      local -r manifest="/etc/kubernetes/addons/cloud-pvl-admission/mutating-webhook-configuration.yaml"
      sed -i "s|__CLOUD_PVL_ADMISSION_CA_CERT__|${CLOUD_PVL_ADMISSION_CA_CERT}|g" "${manifest}"
    }
    
    # Setups manifests for ingress controller and gce-specific policies for service controller.
    function start-lb-controller {
      setup-addon-manifests "addons" "loadbalancing"
    
      # Starts a l7 loadbalancing controller for ingress.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top