Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for maxargs (0.18 sec)

  1. src/runtime/syscall_windows.go

    	return syscall_SyscallN(fn, args[:nargs]...)
    }
    
    // maxArgs should be divisible by 2, as Windows stack
    // must be kept 16-byte aligned on syscall entry.
    //
    // Although it only permits maximum 42 parameters, it
    // is arguably large enough.
    const maxArgs = 42
    
    //go:linkname syscall_SyscallN syscall.SyscallN
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    					maxArgNode = n
    				}
    			}
    		}
    	}
    	// Next, find the offset of the largest pointer in the largest node.
    	var maxArgs int64
    	if maxArgNode != nil {
    		maxArgs = maxArgNode.FrameOffset() + types.PtrDataSize(maxArgNode.Type())
    	}
    
    	// Size locals bitmaps to be stkptrsize sized.
    	// We cannot shrink them to only hold the largest pointer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

         * will not be used and a network request will be made.
         *
         * @param maxAge a non-negative duration. This is stored and transmitted with [TimeUnit.SECONDS]
         *     precision; finer precision will be lost.
         */
        fun maxAge(maxAge: Duration) =
          apply {
            val maxAgeSeconds = maxAge.inWholeSeconds
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/gccgo.go

    	var absOfiles []string
    	for _, f := range ofiles {
    		absOfiles = append(absOfiles, mkAbs(objdir, f))
    	}
    	var arArgs []string
    	if cfg.Goos == "aix" && cfg.Goarch == "ppc64" {
    		// AIX puts both 32-bit and 64-bit objects in the same archive.
    		// Tell the AIX "ar" command to only care about 64-bit objects.
    		arArgs = []string{"-X64"}
    	}
    	absAfile := mkAbs(objdir, afile)
    	// Try with D modifier first, then without if that fails.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. 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)
  6. src/net/http/cookie_test.go

    		{Name: "quoted0", Value: "none", MaxAge: 30},
    		{Name: "quoted1", Value: "cookieValue", MaxAge: 31},
    		{Name: "quoted2", Value: "cookieAV"},
    		{Name: "quoted3", Value: "both"},
    	}
    	if len(got) != len(want) {
    		t.Fatalf("got %d cookies, want %d", len(got), len(want))
    	}
    	for i, w := range want {
    		g := got[i]
    		if g.Name != w.Name || g.Value != w.Value || g.MaxAge != w.MaxAge {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. pkg/kubelet/images/image_gc_manager.go

    	if im.policy.MaxAge == 0 {
    		return images, nil
    	}
    
    	// Wait until the MaxAge has passed since the Kubelet has started,
    	// or else we risk prematurely garbage collecting images.
    	if freeTime.Sub(beganGC) <= im.policy.MaxAge {
    		return images, nil
    	}
    	var deletionErrors []error
    	remainingImages := make([]evictionInfo, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. cmd/erasure-multipart.go

    	result.UploadID = uploadID
    	result.MaxParts = maxParts
    	result.PartNumberMarker = partNumberMarker
    	result.UserDefined = cloneMSS(fi.Metadata)
    	result.ChecksumAlgorithm = fi.Metadata[hash.MinIOMultipartChecksum]
    
    	if partNumberMarker < 0 {
    		partNumberMarker = 0
    	}
    
    	// Limit output to maxPartsList.
    	if maxParts > maxPartsList-partNumberMarker {
    		maxParts = maxPartsList - partNumberMarker
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. cmd/object-api-options.go

    			apiErr = toAPIError(ctx, vErr)
    		}
    		valid = false
    		return
    	}
    
    	opts.MaxParts, err = parseIntHeader(bucket, object, r.Header, xhttp.AmzMaxParts)
    	if err != nil {
    		apiErr = toAPIError(ctx, err)
    		argumentName = strings.ToLower(xhttp.AmzMaxParts)
    		valid = false
    		return
    	}
    
    	if opts.MaxParts == 0 {
    		opts.MaxParts = maxPartsList
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/call.go

    			// non-generic signature.
    			targs = nil
    			xlist = nil
    		}
    	}
    
    	// evaluate arguments
    	args, atargs, atxlist := check.genericExprList(call.ArgList)
    	sig = check.arguments(call, sig, targs, xlist, args, atargs, atxlist)
    
    	if wasGeneric && sig.TypeParams().Len() == 0 {
    		// update the recorded type of call.Fun to its instantiated type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top