Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,213 for Maximum (0.14 sec)

  1. pkg/controller/nodeipam/ipam/timeout.go

    // maxBackoff timeout.
    type Timeout struct {
    	// Resync is the default timeout duration when there are no errors.
    	Resync time.Duration
    	// MaxBackoff is the maximum timeout when in a error backoff state.
    	MaxBackoff time.Duration
    	// InitialRetry is the initial retry interval when an error is reported.
    	InitialRetry time.Duration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 20:48:08 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/services/BuildServiceRegistration.java

        /**
         * Returns the parameters that will be used to instantiate the service with.
         */
        P getParameters();
    
        /**
         * Specifies the maximum number of tasks that can use this service in parallel. Setting this to 1 means that the service will be used by a single task at a time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 18:14:53 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	// to fully parse before. Unlike buf, we own this data.
    	saveBuf bytes.Buffer
    
    	firstField bool // processing the first field of the header block
    }
    
    // NewDecoder returns a new decoder with the provided maximum dynamic
    // table size. The emitFunc will be called for each valid field
    // parsed, in the same goroutine as calls to Write, before Write returns.
    func NewDecoder(maxDynamicTableSize uint32, emitFunc func(f HeaderField)) *Decoder {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/config/config.go

    	EventBroadcaster events.EventBroadcasterAdapter
    
    	// LeaderElection is optional.
    	LeaderElection *leaderelection.LeaderElectionConfig
    
    	// PodMaxInUnschedulablePodsDuration is the maximum time a pod can stay in
    	// unschedulablePods. If a pod stays in unschedulablePods for longer than this
    	// value, the pod will be moved from unschedulablePods to backoffQ or activeQ.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 09:38:49 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. src/internal/poll/sendfile_windows.go

    		if _, err = syscall.Seek(o.handle, curpos, io.SeekStart); err != nil {
    			return
    		}
    	}
    
    	// TransmitFile can be invoked in one call with at most
    	// 2,147,483,646 bytes: the maximum value for a 32-bit integer minus 1.
    	// See https://docs.microsoft.com/en-us/windows/win32/api/mswsock/nf-mswsock-transmitfile
    	const maxChunkSizePerCall = int64(0x7fffffff - 1)
    
    	for n > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/app/wait.go

    	}
    	if resp.StatusCode != http.StatusOK {
    		return fmt.Errorf("HTTP status code %v", resp.StatusCode)
    	}
    	return nil
    }
    
    func init() {
    	waitCmd.PersistentFlags().IntVar(&timeoutSeconds, "timeoutSeconds", 60, "maximum number of seconds to wait for Envoy to be ready")
    	waitCmd.PersistentFlags().IntVar(&requestTimeoutMillis, "requestTimeoutMillis", 500, "number of milliseconds to wait for response")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.yaml

              url: urlValue
            format: formatValue
            id: idValue
            items:
            - {}
            maxItems: 16
            maxLength: 13
            maxProperties: 21
            maximum: 9.5
            minItems: 17
            minLength: 14
            minProperties: 22
            minimum: 11.5
            multipleOf: 19.5
            nullable: true
            oneOf:
            - {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/internal/fuzz/mutator.go

    	// TODO(katiehockman): pull some of these functions into helper methods and
    	// test that each case is working as expected.
    	// TODO(katiehockman): perform more types of mutations for []byte.
    
    	// maxPerVal will represent the maximum number of bytes that each value be
    	// allowed after mutating, giving an equal amount of capacity to each line.
    	// Allow a little wiggle room for the encoding.
    	maxPerVal := maxBytes/len(vals) - 100
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-discovery/app/cmd.go

    	c.PersistentFlags().Float32Var(&serverArgs.RegistryOptions.KubeOptions.KubernetesAPIQPS, "kubernetesApiQPS", 80.0,
    		"Maximum QPS when communicating with the kubernetes API")
    
    	c.PersistentFlags().IntVar(&serverArgs.RegistryOptions.KubeOptions.KubernetesAPIBurst, "kubernetesApiBurst", 160,
    		"Maximum burst for throttle when communicating with the kubernetes API")
    
    	// Attach the Istio logging options to the command.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/cel/config.go

    	// CheckFrequency configures the number of iterations within a comprehension to evaluate
    	// before checking whether the function evaluation has been interrupted
    	CheckFrequency = 100
    
    	// MaxRequestSizeBytes is the maximum size of a request to the API server
    	// TODO(DangerOnTheRanger): wire in MaxRequestBodyBytes from apiserver/pkg/server/options/server_run_options.go to make this configurable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top