Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for Shardz (0.1 sec)

  1. src/run.bash

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # Environment variables that control run.bash:
    #
    # GO_TEST_SHARDS: number of "dist test" test shards that the
    # $GOROOT/test directory will be sliced up into for parallel
    # execution. Defaults to 1, unless GO_BUILDER_NAME is also specified,
    # in which case it defaults to 10.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. cmd/erasure-decode.go

    				// Reading first time on this disk, hence the buffer needs to be allocated.
    				// Subsequent reads will reuse this buffer.
    				p.buf[bufIdx] = make([]byte, p.shardSize)
    			}
    			// For the last shard, the shardsize might be less than previous shard sizes.
    			// Hence the following statement ensures that the buffer size is reset to the right size.
    			p.buf[bufIdx] = p.buf[bufIdx][:p.shardSize]
    			n, err := rr.ReadAt(p.buf[bufIdx], p.offset)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 21 14:36:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/serviceexportcache_test.go

    	shards, ok := endpoints.ShardsForService(string(s.Hostname), s.Attributes.Namespace)
    	if !ok {
    		return nil
    	}
    	var pn string
    	for _, p := range s.Ports {
    		if p.Port == port {
    			pn = p.Name
    			break
    		}
    	}
    	if pn == "" && port != 0 {
    		return nil
    	}
    	shards.RLock()
    	defer shards.RUnlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/endpointshards_test.go

    			originalEndpointsShard := &EndpointShards{
    				Shards: map[ShardKey][]*IstioEndpoint{
    					c1Key: cluster1Endppoints,
    					c2Key: {{Address: "10.244.0.1", ServiceAccount: "sa1"}, {Address: "10.244.0.2", ServiceAccount: "sa-vm2"}},
    				},
    				ServiceAccounts: map[string]struct{}{
    					"sa1":    {},
    					"sa-vm1": {},
    					"sa-vm2": {},
    				},
    			}
    			originalEndpointsShard.Shards[tc.shardKey] = tc.endpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 15:48:05 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. docs/distributed/DESIGN.md

    - We limited the number of drives to 16 for erasure set because, erasure code shards more than 16 can become chatty and do not have any performance advantages. Additionally since 16 drive erasure set gives you tolerance of 8 drives per object by default which is plenty in any practical scenario.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. src/internal/coverage/pkid.go

    //
    //    internal error in coverage meta-data tracking:
    //    list of hard-coded runtime package IDs needs revising.
    //    registered list:
    //    slot: 0 path='internal/cpu'  hard-coded id: 1
    //    slot: 1 path='internal/goarch'  hard-coded id: 2
    //    slot: 2 path='internal/runtime/atomic'  hard-coded id: 3
    //    slot: 3 path='internal/goos'
    //    slot: 4 path='runtime/internal/sys'  hard-coded id: 5
    //    slot: 5 path='internal/abi'  hard-coded id: 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. docs/distributed/SIZING.md

    This will allow normal write operations to take place on systems that exceed the write tolerance.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DefaultPendingDependenciesVisitor.java

            // Adding an optional dependency: see if we already have a hard dependency on the same module
            ModuleResolveState module = resolveState.getModule(key);
            boolean pending = module.isPending();
    
            // Already have a hard dependency, this optional dependency is not pending.
            if (!pending) {
                return PendingState.NOT_PENDING;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/syscall/rlimit_test.go

    	// macOS sets the default soft limit to 256 and no hard limit.
    	// CentOS and Fedora set the default soft limit to 1024,
    	// with hard limits of 4096 and 524288, respectively.
    	// Check that we can open 1200 files, which proves
    	// that the rlimit is being raised appropriately on those systems.
    	fileCount := 1200
    
    	// OpenBSD has a default soft limit of 512 and hard limit of 1024.
    	if runtime.GOOS == "openbsd" {
    		fileCount = 768
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 21:22:57 UTC 2023
    - 953 bytes
    - Viewed (0)
  10. cmd/erasure-coding.go

    				fmt.Fprintf(os.Stderr, "%v: error on self-test [d:%d,p:%d]: want %#v, got %#v\n", algo, conf[0], conf[1], a, b)
    				ok = false
    				continue
    			}
    			// Delete first shard and reconstruct...
    			first := encoded[0]
    			encoded[0] = nil
    			failOnErr(e.DecodeDataBlocks(encoded))
    			if a, b := first, encoded[0]; !bytes.Equal(a, b) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 31 02:11:45 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top