Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,346 for unlimited (0.67 sec)

  1. cmd/server-rlimit.go

    	if err != nil {
    		return err
    	}
    
    	if vssLimit > 0 && vssLimit < humanize.GiByte {
    		logger.Info("WARNING: maximum virtual memory limit (%s) is too small for 'go runtime', please consider setting `ulimit -v` to unlimited",
    			humanize.IBytes(vssLimit))
    	}
    
    	if ctx.MemLimit > 0 {
    		maxLimit = ctx.MemLimit
    	}
    
    	if maxLimit > 0 {
    		debug.SetMemoryLimit(int64(maxLimit))
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. docs/minio-limits.md

    |:--------------------------------------------------------------------------------|:--------------------------------------------------------------------------------|
    | Maximum number of buckets                                                       | unlimited (we recommend not beyond 500000 buckets) - see NOTE:                  |
    | Maximum number of objects per bucket                                            | no-limit                                                                        |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/enable-core-dump.yaml.injected

              runAsGroup: 0
              runAsNonRoot: false
              runAsUser: 0
          - args:
            - -c
            - sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c
              unlimited
            command:
            - /bin/sh
            image: gcr.io/istio-testing/proxyv2:latest
            name: enable-core-dump
            resources:
              limits:
                cpu: "2"
                memory: 1Gi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. platforms/software/security/src/main/java/org/gradle/security/internal/SecuritySupport.java

        public static final String KEYS_FILE_EXT = ".keys";
    
        static {
            if (Security.getProvider(BouncyCastleProvider.PROVIDER_NAME) == null) {
                Security.setProperty("crypto.policy", "unlimited");
                Security.addProvider(new BouncyCastleProvider());
            }
        }
    
        public static void assertInitialized() {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/enable-core-dump-annotation.yaml.injected

              runAsGroup: 0
              runAsNonRoot: false
              runAsUser: 0
          - args:
            - -c
            - sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c
              unlimited
            command:
            - /bin/sh
            image: gcr.io/istio-testing/proxyv2:latest
            name: enable-core-dump
            resources:
              limits:
                cpu: "2"
                memory: 1Gi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/os/zero_copy_linux.go

    // the underlying io.Reader and the remaining amount of bytes if the assertion succeeds,
    // otherwise it just returns the original io.Reader and the theoretical unlimited remaining amount of bytes.
    func tryLimitedReader(r io.Reader) (*io.LimitedReader, io.Reader, int64) {
    	var remain int64 = 1<<63 - 1 // by default, copy until EOF
    
    	lr, ok := r.(*io.LimitedReader)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/crypto/tls/example_test.go

    package tls_test
    
    import (
    	"crypto/tls"
    	"crypto/x509"
    	"log"
    	"net/http"
    	"net/http/httptest"
    	"os"
    	"time"
    )
    
    // zeroSource is an io.Reader that returns an unlimited number of zero bytes.
    type zeroSource struct{}
    
    func (zeroSource) Read(b []byte) (n int, err error) {
    	clear(b)
    	return len(b), nil
    }
    
    func ExampleDial() {
    	// Connecting with a custom root-certificate set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/regexp/syntax/doc.go

    	x{n,}?         n or more x, prefer fewer
    	x{n}?          exactly n x
    
    Implementation restriction: The counting forms x{n,m}, x{n,}, and x{n}
    reject forms that create a minimum or maximum repetition count above 1000.
    Unlimited repetitions are not subject to this restriction.
    
    Grouping:
    
    	(re)           numbered capturing group (submatch)
    	(?P<name>re)   named & numbered capturing group (submatch)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. 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)
  10. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

                  pgrep -u istio-proxy envoy
                  sleep .1
                done
                pid="$(pgrep -u istio-proxy envoy)"
                sudo prlimit -p "${pid}" --core=unlimited
              }
              # To support image builders which cannot do RUN, do the run commands at startup.
              # This exploits the fact the images remove the installer once its installed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top