Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for 100kb (0.06 sec)

  1. pkg/probe/http/http.go

    	"fmt"
    	"net/http"
    	"time"
    
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/kubernetes/pkg/probe"
    
    	"k8s.io/klog/v2"
    	utilio "k8s.io/utils/io"
    )
    
    const (
    	maxRespBodyLength = 10 * 1 << 10 // 10KB
    )
    
    // New creates Prober that will skip TLS verification while probing.
    // followNonLocalRedirects configures whether the prober should follow redirects to a different hostname.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 00:37:32 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			period:   uint64(100000),
    		},
    		{
    			msg:      "500 input 50k quota and default period",
    			input:    int64(500),
    			expected: int64(50000),
    			period:   uint64(100000),
    		},
    		{
    			msg:      "1k input 100k quota and default period",
    			input:    int64(1000),
    			expected: int64(100000),
    			period:   uint64(100000),
    		},
    		{
    			msg:      "1500 input 150k quota and default period",
    			input:    int64(1500),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/kubelet/lifecycle/handlers.go

    	"k8s.io/kubernetes/pkg/kubelet/util/format"
    	httpprobe "k8s.io/kubernetes/pkg/probe/http"
    	"k8s.io/kubernetes/pkg/security/apparmor"
    )
    
    const (
    	maxRespBodyLength = 10 * 1 << 10 // 10KB
    )
    
    type handlerRunner struct {
    	httpDoer         kubetypes.HTTPDoer
    	commandRunner    kubecontainer.CommandRunner
    	containerManager podStatusProvider
    	eventRecorder    record.EventRecorder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 11:40:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"Numeric tag filter examples: 1kb, 1kb:10kb, memory=32mb:",
    		"String tag filter examples: foo, foo.*bar, mytag=foo.*bar"),
    	"tagignore": helpText(
    		"Discard samples with tags in range or matched by regexp",
    		"Use name=value syntax to limit the matching to a specific tag.",
    		"Numeric tag filter examples: 1kb, 1kb:10kb, memory=32mb:",
    		"String tag filter examples: foo, foo.*bar, mytag=foo.*bar"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. tools/docker-builder/builder/crane.go

    		}
    		for k, v := range args.Labels {
    			cfg.Labels[k] = v
    		}
    
    		updated, err := mutate.Config(baseImage, cfg)
    		if err != nil {
    			return err
    		}
    		trace("config")
    
    		// Pre-allocated 100mb
    		// TODO: cache the size of images, use exactish size
    		buf := bytes.NewBuffer(make([]byte, 0, 100*1024*1024))
    		if err := WriteArchiveFromFiles(args.FilesBase, args.Files, buf); err != nil {
    			return err
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.7.md

    ## Changelog since v1.7.5
    
    ### Other notable changes
    
    * [fluentd-gcp addon] Fluentd will trim lines exceeding 100KB instead of dropping them. ([#52289](https://github.com/kubernetes/kubernetes/pull/52289), [@crassirostris](https://github.com/crassirostris))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  7. src/archive/tar/format.go

    //
    //	                  |  USTAR |       PAX |       GNU
    //	------------------+--------+-----------+----------
    //	Name              |   256B | unlimited | unlimited
    //	Linkname          |   100B | unlimited | unlimited
    //	Size              | uint33 | unlimited |    uint89
    //	Mode              | uint21 |    uint21 |    uint57
    //	Uid/Gid           | uint21 | unlimited |    uint57
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    // quantity("50k").add(20) == quantity("50020") // returns true
    // quantity("50k").sub("20k") == quantity("30k") // returns true
    // quantity("50k").sub(20000) == quantity("30k") // returns true
    // quantity("50k").add(20).sub(quantity("100k")).sub(-50000) == quantity("20") // returns true
    //
    // Comparisons
    //
    //   - isGreaterThan: Returns true if and only if the receiver is greater than the operand
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // evaluates to null or empty string the audit annotation will be omitted.
      // The valueExpression may be no longer than 5kb in length.
      // If the result of the valueExpression is more than 10kb in length, it
      // will be truncated to 10kb.
      //
      // If multiple ValidatingAdmissionPolicyBinding resources match an
      // API request, then the valueExpression will be evaluated for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    * [fluentd-gcp addon] Fluentd will trim lines exceeding 100KB instead of dropping them. ([#52289](https://github.com/kubernetes/kubernetes/pull/52289), [@crassirostris](https://github.com/crassirostris))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top