Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 954 for unlimited (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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