Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 889 for Amount (0.19 sec)

  1. test/recover4.go

    	// invalidating the test.
    	hole := data[len(data)/2 : 3*(len(data)/4)]
    	if err := syscall.Mprotect(hole, syscall.PROT_NONE); err != nil {
    		log.Fatalf("mprotect: %v", err)
    	}
    
    	// Check that memcopy returns the actual amount copied
    	// before the fault.
    	const offset = 5
    	n, err := memcopy(data[offset:], make([]byte, len(data)))
    	if err == nil {
    		log.Fatal("no error from memcopy across memory hole")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/types.go

    type DeviceRunContainerOptions struct {
    	// The environment variables list.
    	Envs []kubecontainer.EnvVar
    	// The mounts for the container.
    	Mounts []kubecontainer.Mount
    	// The host devices mapped into the container.
    	Devices []kubecontainer.DeviceInfo
    	// The Annotations for the container
    	Annotations []kubecontainer.Annotation
    	// CDI Devices for the container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/testing/FakeTicker.java

      @CanIgnoreReturnValue
      public FakeTicker setAutoIncrementStep(long autoIncrementStep, TimeUnit timeUnit) {
        checkArgument(autoIncrementStep >= 0, "May not auto-increment by a negative amount");
        this.autoIncrementStepNanos = timeUnit.toNanos(autoIncrementStep);
        return this;
      }
    
      /**
       * Sets the increment applied to the ticker whenever it is queried.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 14:40:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/peer.go

    	clientgoinformers "k8s.io/client-go/informers"
    	"k8s.io/client-go/transport"
    	"k8s.io/klog/v2"
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    const (
    	// DefaultPeerEndpointReconcileInterval is the default amount of time for how often
    	// the peer endpoint leases are reconciled.
    	DefaultPeerEndpointReconcileInterval = 10 * time.Second
    	// DefaultPeerEndpointReconcilerTTL is the default TTL timeout for peer endpoint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 08:15:02 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. pkg/scheduler/util/pod_resources.go

    import (
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    )
    
    // For each of these resources, a container that doesn't request the resource explicitly
    // will be treated as having requested the amount indicated below, for the purpose
    // of computing priority only. This ensures that when scheduling zero-request pods, such
    // pods will not all be scheduled to the node with the smallest in-use request,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 01 06:25:30 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. cmd/batch-expire_test.go

        token: Bearer xxxxx # optional authentication token for the notification endpoint
      
      retry:
        attempts: 10 # number of retries for the job before giving up
        delay: 500ms # least amount of delay between each retry
    `
    	var job BatchJobRequest
    	err := yaml.UnmarshalStrict([]byte(expireYaml), &job)
    	if err != nil {
    		t.Fatal("Failed to parse batch-job-expire yaml", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. hack/golangci.yaml.in

    # golangci-lint is used in Kubernetes with different configurations that
    # enable an increasing amount of checks:
    # - golangci.yaml is the most permissive configuration. All existing code
    #   passed.
    # - golangci-strict.yaml adds checks that all new code in pull requests
    #   must pass.
    # - golangci-hints.yaml adds checks for code patterns where developer
    #   and reviewer may decide whether findings should get addressed before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/internal/trace/raw/doc.go

    Names are separated from their integer values by an '=' sign. Names can
    consist of any UTF-8 character except '='.
    
    For example:
    
    	EventName arg1=23 arg2=55 arg3=53
    
    Any amount of whitespace is allowed to separate each token. Whitespace
    is identified via unicode.IsSpace.
    
    Some events have additional data on following lines. There are two such
    special cases.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. pkg/kubelet/metrics/collectors/resource_metrics.go

    		"Current working set of the container in bytes",
    		[]string{"container", "pod", "namespace"},
    		nil,
    		metrics.STABLE,
    		"")
    
    	containerSwapUsageDesc = metrics.NewDesc("container_swap_usage_bytes",
    		"Current amount of the container swap usage in bytes. Reported only on non-windows systems",
    		[]string{"container", "pod", "namespace"},
    		nil,
    		metrics.ALPHA,
    		"")
    
    	podCPUUsageDesc = metrics.NewDesc("pod_cpu_usage_seconds_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 07:13:37 UTC 2023
    - 9.2K bytes
    - Viewed (2)
  10. pkg/util/filesystem/util_windows_test.go

    		assert.Nil(t, err, "Unexpected error from IsUnixDomainSocket: %v", err)
    		assert.True(t, result, "Unexpected result: false from IsUnixDomainSocket.")
    		wg.Done()
    	}()
    
    	// Wait a sufficient amount of time to make sure the retry logic kicks in
    	time.Sleep(socketDialRetryPeriod)
    
    	// Replace the temporary file with an actual Unix domain socket file
    	os.Remove(testFile)
    	ta, err := net.ResolveUnixAddr("unix", testFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:10:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top