Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 521 for Amount (0.26 sec)

  1. pkg/util/goroutinemap/goroutinemap_test.go

    	testTimeout time.Duration = 1 * time.Minute
    
    	// initialOperationWaitTimeShort is the initial amount of time the test will
    	// wait for an operation to complete (each successive failure results in
    	// exponential backoff).
    	initialOperationWaitTimeShort time.Duration = 20 * time.Millisecond
    
    	// initialOperationWaitTimeLong is the initial amount of time the test will
    	// wait for an operation to complete (each successive failure results in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 14.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/aggregate/controller_test.go

    		mock.WorldService.Hostname: false,
    	}
    
    	count := 0
    	// Compare return value to ground truth
    	for _, svc := range services {
    		if counted, existed := hosts[svc.Hostname]; existed && !counted {
    			count++
    			hosts[svc.Hostname] = true
    		}
    	}
    
    	if count != len(hosts) {
    		t.Fatalf("Cluster local service map expected size %d, actual %v vs %v", count, hosts, services)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

     * limitations under the License.
     */
    
    package org.gradle.performance.results;
    
    import com.google.common.base.Joiner;
    import com.google.common.collect.Lists;
    import org.gradle.performance.measure.Amount;
    import org.gradle.performance.measure.DataSeries;
    import org.gradle.performance.measure.Duration;
    import org.gradle.performance.measure.MeasuredOperation;
    import org.gradle.util.GradleVersion;
    import org.joda.time.LocalDate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

      Rematerializer() = default;
      virtual ~Rematerializer() = default;
    
      // The type used for memory sizes (in bytes) and differences thereof.
      using SizeT = int64_t;
    
      // The memory profile: The i-th element gives the amount of memory
      // that is needed when performing the i-th operation. This is the
      // sum of the sizes of
      //
      // (1) input tensors of that operation,
      // (2) output tensors of that operation,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/eviction_manager.go

    )
    
    const (
    	// signalEphemeralContainerFsLimit is amount of storage available on filesystem requested by the container
    	signalEphemeralContainerFsLimit string = "ephemeralcontainerfs.limit"
    	// signalEphemeralPodFsLimit is amount of storage available on filesystem requested by the pod
    	signalEphemeralPodFsLimit string = "ephemeralpodfs.limit"
    	// signalEmptyDirFsLimit is amount of storage available on filesystem requested by an emptyDir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/constants/constants.go

    	PullImageRetry = 5
    	// RemoveContainerRetry specifies how many times ContainerRuntime retries when removing container failed
    	RemoveContainerRetry = 5
    
    	// MinimumAddressesInServiceSubnet defines minimum amount of nodes the Service subnet should allow.
    	// We need at least ten, because the DNS service is always at the tenth cluster clusterIP
    	MinimumAddressesInServiceSubnet = 10
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

    you will have a more or less well-defined, stable, and limited amount of memory consumed by each of those containers (more than one if they are replicated).
    
    And then you can set those same memory limits and requirements in your configurations for your container management system (for example in **Kubernetes**). That way it will be able to **replicate the containers** in the **available machines** taking into account the amount of memory needed by them, and the amount available in the machines...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. src/runtime/mpagealloc.go

    // additional virtual address space. The choice of managing large arrays also means
    // that a large amount of virtual address space may be reserved by the runtime.
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    const (
    	// The size of a bitmap chunk, i.e. the amount of bits (that is, pages) to consider
    	// in the bitmap at once.
    	pallocChunkPages    = 1 << logPallocChunkPages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge_test.go

    		return 1
    	}
    
    	// Define a helper for verifying that various properties hold.
    	verifyScavengerState := func(t *testing.T, expWork uint64) {
    		t.Helper()
    
    		// Check to make sure it did the amount of work we expected.
    		if workDone := uint64(s.Released()); workDone != expWork {
    			t.Errorf("want %d bytes of work done, got %d", expWork, workDone)
    		}
    		// Check to make sure the scavenger is meeting its CPU target.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/nn_grad_test.cc

            scope_, xs, x_shapes, ys, y_shapes, &max_error)));
        EXPECT_LT(max_error, 1e-3);
      }
    
      // Sets tensor with random values, ensuring that every pair of elements are at
      // least a reasonable amount apart.
      // This is an issue for max pooling operations, in which perturbations by the
      // numeric gradient computation in the gradient checker can change the max
      // value if a pool has values that are too close together.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 20:45:22 UTC 2022
    - 15K bytes
    - Viewed (0)
Back to top