Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,215 for evenly (0.2 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

                    if (left.entries.size() > minIndexChildNodes) {
                        // There are enough entries in this block and the left sibling to make up 2 blocks, so redistribute
                        // the entries evenly between them
                        left.mergeFrom(this);
                        left.maybeSplit();
                        return;
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  2. docs/distributed/DESIGN.md

    - In this algorithm, we also make sure that we spread the drives out evenly. MinIO server expands ellipses passed as arguments. Here is a sample expansion to demonstrate the process.
    
    ```
    minio server http://host{1...2}/export{1...8}
    ```
    
    Expected expansion
    
    ```
    > http://host1/export1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. src/testing/quick/quick.go

    		for i := 0; i < numChars; i++ {
    			codePoints[i] = rune(rand.Intn(0x10ffff))
    		}
    		v.SetString(string(codePoints))
    	case reflect.Struct:
    		n := v.NumField()
    		// Divide sizeLeft evenly among the struct fields.
    		sizeLeft := size
    		if n > sizeLeft {
    			sizeLeft = 1
    		} else if n > 0 {
    			sizeLeft /= n
    		}
    		for i := 0; i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/HashFunction.java

       * cross-language compatibility. For other use cases, prefer {@link #hashUnencodedChars}, which is
       * faster, produces the same output across Java releases, and hashes every {@code char} in the
       * input, even if some are invalid.
       */
      HashCode hashString(CharSequence input, Charset charset);
    
      /**
       * Shortcut for {@code newHasher().putObject(instance, funnel).hash()}. The implementation
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/HashFunction.java

       * cross-language compatibility. For other use cases, prefer {@link #hashUnencodedChars}, which is
       * faster, produces the same output across Java releases, and hashes every {@code char} in the
       * input, even if some are invalid.
       */
      HashCode hashString(CharSequence input, Charset charset);
    
      /**
       * Shortcut for {@code newHasher().putObject(instance, funnel).hash()}. The implementation
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  6. cmd/endpoint-ellipses.go

    	return ep, nil
    }
    
    // GetAllSets - parses all ellipses input arguments, expands them into
    // corresponding list of endpoints chunked evenly in accordance with a
    // specific set size.
    // For example: {1...64} is divided into 4 sets each of size 16.
    // This applies to even distributed setup syntax as well.
    func GetAllSets(setDriveCount uint64, args ...string) ([][]string, error) {
    	var setArgs [][]string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    			Namespace: namespace,
    			Subsystem: subsystem,
    			Name:      "demand_seats",
    			Help:      "Observations, at the end of every nanosecond, of (the number of seats each priority level could use) / (nominal number of seats for that level)",
    			// Rationale for the bucket boundaries:
    			// For 0--1, evenly spaced and not too many;
    			// For 1--2, roughly powers of sqrt(sqrt(2));
    			// For 2--6, roughly powers of sqrt(2);
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

      if (num_replicated_inputs % n != 0)
        return op.emitOpError()
               << "expects number of replicated inputs (" << num_replicated_inputs
               << ") to be evenly divisible by 'n' (" << n << ")";
    
      const int32_t num_replicated_block_args = num_replicated_inputs / n;
      if (num_replicated_block_args + num_packed_inputs != block.getNumArguments())
        return op.emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. pkg/kubelet/container/runtime.go

    	// and store the resulting archive to the checkpoint directory.
    	CheckpointContainer(ctx context.Context, options *runtimeapi.CheckpointContainerRequest) error
    	// Generate pod status from the CRI event
    	GeneratePodStatus(event *runtimeapi.ContainerEventResponse) (*PodStatus, error)
    	// ListMetricDescriptors gets the descriptors for the metrics that will be returned in ListPodSandboxMetrics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/BuildStatusRendererTest.groovy

        }
    
        def "forwards event list to listener"() {
            def event = event("message")
    
            when:
            renderer.onOutput(event)
    
            then:
            1 * listener.onOutput(event)
        }
    
        def "formats given message with an incrementing timer"() {
            def event1 = startRootBuildOperation(1)
            def event2 = event('2')
    
            when:
            renderer.onOutput(event1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top