Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 208 for maxargs (0.3 sec)

  1. src/net/http/cookie.go

    	Domain     string    // optional
    	Expires    time.Time // optional
    	RawExpires string    // for reading cookies only
    
    	// MaxAge=0 means no 'Max-Age' attribute specified.
    	// MaxAge<0 means delete cookie now, equivalently 'Max-Age: 0'
    	// MaxAge>0 means Max-Age attribute present and given in seconds
    	MaxAge      int
    	Secure      bool
    	HttpOnly    bool
    	SameSite    SameSite
    	Partitioned bool
    	Raw         string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/specs/Specs.java

        }
    
        /**
         * Returns a spec that selects the intersection of those items selected by the given specs. Returns a spec that selects everything when no specs provided.
         */
        @SafeVarargs
        @SuppressWarnings("varargs")
        public static <T> Spec<T> intersect(Spec<? super T>... specs) {
            if (specs.length == 0) {
                return satisfyAll();
            }
            if (specs.length == 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/mime/multipart/formdata.go

    	if multipartfiles.Value() == "distinct" {
    		combineFiles = false
    		// multipartfiles.IncNonDefault() // TODO: uncomment after documenting
    	}
    	maxParts := 1000
    	if s := multipartmaxparts.Value(); s != "" {
    		if v, err := strconv.Atoi(s); err == nil && v >= 0 {
    			maxParts = v
    			multipartmaxparts.IncNonDefault()
    		}
    	}
    	maxHeaders := maxMIMEHeaders()
    
    	defer func() {
    		if file != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. tools/docker-builder/main.go

    		return nil
    	}
    	log.Infof("Running make for %v: %v", arch, strings.Join(shortArgs, " "))
    	env := StandardEnv(args)
    	env = append(env, archToGoFlags(arch)...)
    	makeArgs := []string{"--no-print-directory"}
    	makeArgs = append(makeArgs, c...)
    	cmd := exec.Command("make", makeArgs...)
    	log.Infof("env: %v", archToGoFlags(arch))
    	cmd.Env = env
    	cmd.Stderr = os.Stderr
    	cmd.Stdout = os.Stdout
    	cmd.Dir = testenv.IstioSrc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	}
    
    	// Check validities of MaxAge, MaxBackups and MaxSize of log options, if file log backend is enabled.
    	if o.MaxAge < 0 {
    		allErrors = append(allErrors, fmt.Errorf("--audit-log-maxage %v can't be a negative number", o.MaxAge))
    	}
    	if o.MaxBackups < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/gccgo_c.c

    #define _STRINGIFY2_(x) #x
    #define _STRINGIFY_(x) _STRINGIFY2_(x)
    #define GOSYM_PREFIX _STRINGIFY_(__USER_LABEL_PREFIX__)
    
    // Call syscall from C code because the gccgo support for calling from
    // Go to C does not support varargs functions.
    
    struct ret {
    	uintptr_t r;
    	uintptr_t err;
    };
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go

    // license that can be found in the LICENSE file.
    
    //go:build (386 || amd64 || amd64p32) && gc
    
    package cpu
    
    // cpuid is implemented in cpu_x86.s for gc compiler
    // and in cpu_gccgo.c for gccgo.
    func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32)
    
    // xgetbv with ecx = 0 is implemented in cpu_x86.s for gc compiler
    // and in cpu_gccgo.c for gccgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 499 bytes
    - Viewed (0)
  8. tests/testdata/config/rule-default-route-cors-policy.yaml

            allowMethods:
              - POST
              - GET
              - OPTIONS
            allowHeaders:
              - content-type
            exposeHeaders:
              - x-custom-header
            maxAge: 300s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 01 00:53:22 UTC 2020
    - 827 bytes
    - Viewed (0)
  9. cmd/object-api-multipart_test.go

    		if actualErr == nil && testCase.shouldPass {
    			expectedResult := testCase.expectedResult
    			// Asserting the MaxParts.
    			if actualResult.MaxParts != expectedResult.MaxParts {
    				t.Errorf("Test %d: %s: Expected the MaxParts to be %d, but instead found it to be %d", i+1, instanceType, expectedResult.MaxParts, actualResult.MaxParts)
    			}
    			// Asserting Object Name.
    			if actualResult.Object != expectedResult.Object {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_windows.go

    )
    
    func addMaxRSS(w io.Writer) {
    	var m windows.PROCESS_MEMORY_COUNTERS
    	p, _ := syscall.GetCurrentProcess()
    	err := windows.GetProcessMemoryInfo(p, &m, uint32(unsafe.Sizeof(m)))
    	if err == nil {
    		fmt.Fprintf(w, "# MaxRSS = %d\n", m.PeakWorkingSetSize)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 20:04:21 UTC 2022
    - 505 bytes
    - Viewed (0)
Back to top