Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 326 for unlimited (0.41 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. docs/distributed/DESIGN.md

    a single erasure coding unit within a MinIO deployment. An object is sharded within an erasure set. Erasure set size is automatically calculated based on the number of drives. MinIO supports unlimited number of drives but each erasure set can be upto 16 drives and a minimum of 2 drives.
    
    - We limited the number of drives to 16 for erasure set because, erasure code shards more than 16 can become chatty and do not have any performance advantages. Additionally since 16 drive erasure set gives...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. src/internal/testenv/exec.go

    func CommandContext(t testing.TB, ctx context.Context, name string, args ...string) *exec.Cmd {
    	t.Helper()
    	MustHaveExec(t)
    
    	var (
    		cancelCtx   context.CancelFunc
    		gracePeriod time.Duration // unlimited unless the test has a deadline (to allow for interactive debugging)
    	)
    
    	if t, ok := t.(interface {
    		testing.TB
    		Deadline() (time.Time, bool)
    	}); ok {
    		if td, ok := t.Deadline(); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. docs/en/docs/features.md

    * Support for complex user authentication systems, **database connections**, etc.
    * **No compromise** with databases, frontends, etc. But easy integration with all of them.
    
    ### Unlimited "plug-ins"
    
    Or in other way, no need for them, import and use the code you need.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top