Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/runtime/export_windows_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Export guts for testing.
    
    package runtime
    
    import "unsafe"
    
    const MaxArgs = maxArgs
    
    var (
    	OsYield                 = osyield
    	TimeBeginPeriodRetValue = &timeBeginPeriodRetValue
    )
    
    func NumberOfProcessors() int32 {
    	var info systeminfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 17:25:00 UTC 2024
    - 759 bytes
    - Viewed (0)
  2. src/internal/trace/base.go

    	"internal/trace/event/go122"
    	"internal/trace/version"
    )
    
    // maxArgs is the maximum number of arguments for "plain" events,
    // i.e. anything that could reasonably be represented as a baseEvent.
    //
    // TODO(mknyszek): This is only 6 instead of 5 because GoStatusStack
    // has 5 arguments and needs to smuggle in a 6th. Figure out a way to
    // shrink this in the future.
    const maxArgs = 6
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. guava/src/com/google/common/base/Preconditions.java

     * them, even though they usually won't be needed. If you have such arguments, use the conventional
     * if/throw idiom instead.
     *
     * <p>Depending on your message arguments, memory may be allocated for boxing and varargs array
     * creation. However, the methods of this class have a large number of overloads that prevent such
     * allocations in many common cases.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Preconditions.java

     * them, even though they usually won't be needed. If you have such arguments, use the conventional
     * if/throw idiom instead.
     *
     * <p>Depending on your message arguments, memory may be allocated for boxing and varargs array
     * creation. However, the methods of this class have a large number of overloads that prevent such
     * allocations in many common cases.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top