Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,095 for SO (0.05 sec)

  1. src/reflect/abi.go

    		// stack, they do cause the next argument to be aligned.
    		// So just do that here, but don't bother actually
    		// generating a new ABI step for it (there's nothing to
    		// actually copy).
    		//
    		// We cannot handle this in the recursive case of
    		// regAssign because zero-sized *fields* of a
    		// non-zero-sized struct do not cause it to be
    		// stack-assigned. So we need a special case here
    		// at the top.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/net/tcpsockopt_unix.go

    	"runtime"
    	"syscall"
    	"time"
    )
    
    func setKeepAliveIdle(fd *netFD, d time.Duration) error {
    	if d == 0 {
    		d = defaultTCPKeepAliveIdle
    	} else if d < 0 {
    		return nil
    	}
    
    	// The kernel expects seconds so round to next highest second.
    	secs := int(roundDurationUp(d, time.Second))
    	err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, secs)
    	runtime.KeepAlive(fd)
    	return wrapSyscallError("setsockopt", err)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/security.go

    //
    // Note that -Wl,foo means split foo on commas and pass to
    // the linker, so that -Wl,-foo,bar means pass -foo bar to
    // the linker. Similarly -Wa,foo for the assembler and so on.
    // If any of these are permitted, the wildcard portion must
    // disallow commas.
    //
    // Note also that GNU binutils accept any argument @foo
    // as meaning "read more flags from the file foo", so we must
    // guard against any command-line argument beginning with @,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #
    #   Important for patching:
    #
    #   (2) This script targets any POSIX shell, so it avoids extensions provided
    #       by Bash, Ksh, etc; in particular arrays are avoided.
    #
    #       The "traditional" practice of packing multiple parameters into a
    #       space-separated string is a well documented source of bugs and security
    #       problems, so this is (mostly) avoided, by progressively accumulating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    	//go:cgo_dynamic_linker "/lib64/ld-linux-x86-64.so.2"
    	//go:cgo_import_dynamic puts puts#GLIBC_2.2.5 "libc.so.6"
    	//go:cgo_import_dynamic __libc_start_main __libc_start_main#GLIBC_2.2.5 "libc.so.6"
    	//go:cgo_import_dynamic stdout stdout#GLIBC_2.2.5 "libc.so.6"
    	//go:cgo_import_dynamic fflush fflush#GLIBC_2.2.5 "libc.so.6"
    	//go:cgo_import_dynamic _ _ "libpthread.so.0"
    	//go:cgo_import_dynamic _ _ "libc.so.6"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  6. src/html/template/doc.go

    defined in the docs for ErrorCode.
    
    HTML templates treat data values as plain text which should be encoded so they
    can be safely embedded in an HTML document. The escaping is contextual, so
    actions can appear within JavaScript, CSS, and URI contexts.
    
    The security model used by this package assumes that template authors are
    trusted, while Execute's data parameter is not. More details are
    provided below.
    
    Example
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/runtime/signal_unix.go

    			// while executing Go code but received while
    			// executing non-Go code.
    			// We got past sigfwdgo, so we know that there is
    			// no non-Go signal handler for sigPreempt.
    			// The default behavior for sigPreempt is to ignore
    			// the signal, so badsignal will be a no-op anyway.
    			if GOOS == "darwin" || GOOS == "ios" {
    				pendingPreemptSignals.Add(-1)
    			}
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. src/os/types_windows.go

    			// unavailability in the way that a network filesystem might.
    			//
    			// Go programs may use ModeIrregular to filter out unusual files (such as
    			// raw device files on Linux, POSIX FIFO special files, and so on), so
    			// to avoid files changing unpredictably from regular to irregular we will
    			// consider DEDUP files to be close enough to regular to treat as such.
    		default:
    			m |= ModeIrregular
    		}
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/runtime/iface.go

    	if cheaprand()&uint32(oldC.Mask) != 0 {
    		// As cache gets larger, choose to update it less often
    		// so we can amortize the cost of building a new cache.
    		return tab
    	}
    
    	// Make a new cache.
    	newC := buildTypeAssertCache(oldC, t, tab)
    
    	// Update cache. Use compare-and-swap so if multiple threads
    	// are fighting to update the cache, at least one of their
    	// updates will stick.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. src/runtime/panic.go

    	//   gp._defer = d
    	// But without write barriers. The first three are writes to
    	// the stack so they don't need a write barrier, and furthermore
    	// are to uninitialized memory, so they must not use a write barrier.
    	// The fourth write does not require a write barrier because we
    	// explicitly mark all the defer structures, so we don't need to
    	// keep track of pointers to them with a write barrier.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top