Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 459 for unlimited (0.13 sec)

  1. src/archive/tar/format.go

    //	Name              |   256B | unlimited | unlimited
    //	Linkname          |   100B | unlimited | unlimited
    //	Size              | uint33 | unlimited |    uint89
    //	Mode              | uint21 |    uint21 |    uint57
    //	Uid/Gid           | uint21 | unlimited |    uint57
    //	Uname/Gname       |    32B | unlimited |       32B
    //	ModTime           | uint33 | unlimited |     int89
    //	AccessTime        |    n/a | unlimited |     int89
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. pkg/api/v1/resource/helpers_test.go

    			},
    		},
    		{
    			description:    "no limited containers should result in no limits for the pod",
    			expectedLimits: v1.ResourceList{},
    			initContainers: []v1.Container{},
    			containers: []v1.Container{
    				{
    					// Unlimited container
    				},
    			},
    		},
    		{
    			description: "one limited and one unlimited container should result in the limited container's limits for the pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:13 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    // header blocks.
    type Decoder struct {
    	dynTab dynamicTable
    	emit   func(f HeaderField)
    
    	emitEnabled bool // whether calls to emit are enabled
    	maxStrLen   int  // 0 means unlimited
    
    	// buf is the unparsed buffer. It's only written to
    	// saveBuf if it was truncated in the middle of a header
    	// block. Because it's usually not owned, we can only
    	// process it under Write.
    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. manifests/charts/gateways/istio-egress/templates/deployment.yaml

    {{- end }}
              command:
                - /bin/sh
              args:
                - -c
                - sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c unlimited
              securityContext:
                runAsUser: 0
                runAsGroup: 0
                runAsNonRoot: false
                privileged: true
    {{- end }}
          containers:
            - name: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

    {{- end }}
              command:
                - /bin/sh
              args:
                - -c
                - sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c unlimited
              securityContext:
                runAsUser: 0
                runAsGroup: 0
                runAsNonRoot: false
                privileged: true
    {{- end }}
          containers:
            - name: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	Args []string
    
    	// Command-line flags controlling bisect behavior.
    	Max     int           // maximum number of sets to report (0 = unlimited)
    	MaxSet  int           // maximum number of elements in a set (0 = unlimited)
    	Timeout time.Duration // kill target and assume failed after this duration (0 = unlimited)
    	Count   int           // run target this many times for each trial and give up if flaky (min 1 assumed; default 2 on command line set in main)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. internal/hash/reader.go

    				CalculatedMD5: v.Computed.String(),
    			}
    		}
    	}
    	return n, err
    }
    
    // Size returns the absolute number of bytes the Reader
    // will return during reading. It returns -1 for unlimited
    // data.
    func (r *Reader) Size() int64 { return r.size }
    
    // ActualSize returns the pre-modified size of the object.
    // DecompressedSize - For compressed objects.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. src/net/textproto/reader.go

    	line, err := r.readLineSlice(-1)
    	if line != nil {
    		line = bytes.Clone(line)
    	}
    	return line, err
    }
    
    // readLineSlice reads a single line from r,
    // up to lim bytes long (or unlimited if lim is less than 0),
    // eliding the final \r or \r\n from the returned string.
    func (r *Reader) readLineSlice(lim int64) ([]byte, error) {
    	r.closeDot()
    	var line []byte
    	for {
    		l, more, err := r.R.ReadLine()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/helper.go

    	}
    	latest := stats[len(stats)-1]
    	if latest == nil {
    		return nil, false
    	}
    	return latest, true
    }
    
    func isMemoryUnlimited(v uint64) bool {
    	// Size after which we consider memory to be "unlimited". This is not
    	// MaxInt64 due to rounding by the kernel.
    	// TODO: cadvisor should export this https://github.com/google/cadvisor/blob/master/metrics/prometheus.go#L596
    	const maxMemorySize = uint64(1 << 62)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  10. common/scripts/kind_provisioner.sh

          sleep 3
        done
    
        # Enable core dumps
        retry docker exec "${CLUSTER_NAME}"-control-plane bash -c "sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c unlimited"
      }
    
      # Now deploy the specified number of KinD clusters and
      # wait till they are provisioned successfully.
      declare -a DEPLOY_KIND_JOBS
      for i in "${!CLUSTER_NAMES[@]}"; do
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top