Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 247 for Amount (0.3 sec)

  1. src/cmd/asm/internal/asm/parse.go

    		tok := p.next()
    		ext = tok.String()
    	}
    	if p.peek() == lex.LSH {
    		// parses left shift amount applied after extension: <<Amount
    		p.get(lex.LSH)
    		tok := p.get(scanner.Int)
    		amount, err := strconv.ParseInt(tok.String(), 10, 16)
    		if err != nil {
    			p.errorf("parsing left shift amount: %s", err)
    		}
    		num = int16(amount)
    	} else if p.peek() == '[' {
    		// parses an element: [Index]
    		p.get('[')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. src/runtime/runtime.go

    // from nanotime that we can use (some platforms have a really coarse system time granularity).
    // We require some amount of time to pass to ensure that the conversion rate is fairly accurate
    // in aggregate. But because we compute this rate lazily, there's a pretty good chance a decent
    // amount of time has passed by the time we get here.
    //
    // Must be called from a normal goroutine context (running regular goroutine with a P).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/attach_detach_controller.go

    // timer configuration for production.
    type TimerConfig struct {
    	// ReconcilerLoopPeriod is the amount of time the reconciler loop waits
    	// between successive executions
    	ReconcilerLoopPeriod time.Duration
    
    	// ReconcilerMaxWaitForUnmountDuration is the maximum amount of time the
    	// attach detach controller will wait for a volume to be safely unmounted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top