Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 112 for small7 (2.65 sec)

  1. cmd/erasure-server-pool.go

    	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)
  2. cmd/iam.go

    				iamLogIf(ctx, nerr.Err)
    			}
    		}
    	}
    
    	return nil
    }
    
    // CreateUser - create new user credentials and policy, if user already exists
    // they shall be rewritten with new inputs.
    func (sys *IAMSys) CreateUser(ctx context.Context, accessKey string, ureq madmin.AddOrUpdateUserReq) (updatedAt time.Time, err error) {
    	if !sys.Initialized() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	var rsa RawSockaddrAny
    	var len _Socklen = SizeofSockaddrAny
    	nfd, err = accept4(fd, &rsa, &len, flags)
    	if err != nil {
    		return
    	}
    	if len > SizeofSockaddrAny {
    		panic("RawSockaddrAny too small")
    	}
    	// TODO(neeilan): Remove 0 in call
    	sa, err = anyToSockaddr(0, &rsa)
    	if err != nil {
    		Close(nfd)
    		nfd = 0
    	}
    	return
    }
    
    func Ctermid() (tty string, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ====
    include::sample[dir="snippets/configurationCache/topLevel/kotlin",files="build.gradle.kts[tags=workaround]"]
    ====
    <1> Define the method inside an object.
    <2> Define the variable in a smaller scope.
    
    See link:{gradle-issues}22879[gradle/gradle#22879].
    
    [[config_cache:not_yet_implemented:build_services_in_fingerprint]]
    === Using build services to invalidate the configuration cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_asm_s390x.s

    #define SEL4  V6 // Overloaded with YDIG,CAR2,ZER
    #define SEL5  V9 // Overloaded with ADD3,SEL2
    #define SEL6  V10 // Overloaded with ADD4,SEL3
    
    /* *
     * To follow the flow of bits, for your own sanity a stiff drink, need you shall.
     * Of a single round, a 'helpful' picture, here is. Meaning, column position has.
     * With you, SIMD be...
     *
     *                                           +--------+--------+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. cmd/admin-handlers-users.go

    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrInvalidArgument), r.URL)
    		return
    	}
    	// We do not care if service account is readable or not at this point,
    	// since this is a delete call we shall allow it to be deleted if possible.
    	svcAccount, _, err := globalIAMSys.GetServiceAccount(ctx, serviceAccount)
    	if errors.Is(err, errNoSuchServiceAccount) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. src/math/all_test.go

    	-2.7688005719200159e-01,
    	-5.0106036182710749e+00,
    }
    
    func tolerance(a, b, e float64) bool {
    	// Multiplying by e here can underflow denormal values to zero.
    	// Check a==b so that at least if a and b are small and identical
    	// we say they match.
    	if a == b {
    		return true
    	}
    	d := a - b
    	if d < 0 {
    		d = -d
    	}
    
    	// note: b is correct (expected) value, a is actual value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    // instance. Each registry is responsible for tracking a set
    // of endpoints associated with mesh services, and calling the EDSUpdate on changes.
    // A registry may group endpoints for a service in smaller subsets - for example by
    // deployment, or to deal with very large number of endpoints for a service. We want
    // to avoid passing around large objects - like full list of endpoints for a registry,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// first request is issued will be included in any subsequent continued requests. This is sometimes
    	// referred to as a consistent snapshot, and ensures that a client that is using limit to receive
    	// smaller chunks of a very large result can ensure they see all possible objects. If objects are
    	// updated during a chunked list the version of the object that was present at the time the first list
    	// result was calculated is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  10. src/cmd/go/internal/modload/load.go

    				base.Fatal(err)
    			}
    			goModDiff := diff.Diff("current/go.mod", currentGoMod, "tidy/go.mod", updatedGoMod)
    
    			modfetch.TrimGoSum(keep)
    			// Dropping compatibility for 1.16 may result in a strictly smaller go.sum.
    			// Update the keep map with only the loaded.requirements.
    			if gover.Compare(compatVersion, "1.16") > 0 {
    				keep = keepSums(ctx, loaded, requirements, addBuildListZipSums)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top