Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 948 for unlimited (0.32 sec)

  1. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.template.gen.yaml

          - name: enable-core-dump
            args:
            - -c
            - sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c unlimited
            command:
              - /bin/sh
          {{- if contains "/" (annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy_init.image) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 76.7K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

              - name: enable-core-dump
                args:
                - -c
                - sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c unlimited
                command:
                  - /bin/sh
              {{- if contains "/" (annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy_init.image) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			pl: flowcontrol.PriorityLevelConfiguration{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "queued",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Spec: flowcontrol.PriorityLevelConfigurationSpec{
    					Type: flowcontrol.PriorityLevelEnablementLimited,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.desc, func(t *testing.T) {
    			ctx := context.Background()
    			// generate one more in inputImageList than we configure the Kubelet to report,
    			// or 5 images if unlimited
    			numTestImages := int(tc.nodeStatusMaxImages) + 1
    			if tc.nodeStatusMaxImages == -1 {
    				numTestImages = 5
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    	testWaitDelay      time.Duration                // how long to wait for output to close after a test binary exits; zero means unlimited
    	testCacheExpire    time.Time                    // ignore cached test results before this time
    	testShouldFailFast atomic.Bool                  // signals pending tests to fail fast
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. pkg/apis/batch/validation/validation_test.go

    					Template:             validPodTemplateSpecForGenerated,
    				},
    			},
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		"valid parallelism and maxFailedIndexes for unlimited completions when backoffLimitPerIndex is used": {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Completions:          pointer.Int32(1_000_000_000),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    //	Portions Copyright © 2005-2007 C H Forsyth (******@****.***)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. CREDITS

    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  9. src/net/http/server.go

    }
    
    func (srv *Server) initialReadLimitSize() int64 {
    	return int64(srv.maxHeaderBytes()) + 4096 // bufio slop
    }
    
    // tlsHandshakeTimeout returns the time limit permitted for the TLS
    // handshake, or zero for unlimited.
    //
    // It returns the minimum of any positive ReadHeaderTimeout,
    // ReadTimeout, or WriteTimeout.
    func (srv *Server) tlsHandshakeTimeout() time.Duration {
    	var ret time.Duration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	// Will probably also need to make frame invalidation have a hook too.
    	getReadBuf func(size uint32) []byte
    	readBuf    []byte // cache for default getReadBuf
    
    	maxWriteSize uint32 // zero means unlimited; TODO: implement
    
    	w    io.Writer
    	wbuf []byte
    
    	// AllowIllegalWrites permits the Framer's Write methods to
    	// write frames that do not conform to the HTTP/2 spec. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top