Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 110 for user1s (0.41 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	EnumWindows(enumFunc uintptr, param unsafe.Pointer) (err error) = user32.EnumWindows
    //sys	EnumChildWindows(hwnd HWND, enumFunc uintptr, param unsafe.Pointer) = user32.EnumChildWindows
    //sys	GetClassName(hwnd HWND, className *uint16, maxCount int32) (copied int32, err error) = user32.GetClassNameW
    //sys	GetDesktopWindow() (hwnd HWND) = user32.GetDesktopWindow
    //sys	GetForegroundWindow() (hwnd HWND) = user32.GetForegroundWindow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/crypto/cipher/gcm.go

    // Counter Mode, which accepts nonces of the given length. The length must not
    // be zero.
    //
    // Only use this function if you require compatibility with an existing
    // cryptosystem that uses non-standard nonce lengths. All other users should use
    // [NewGCM], which is faster and more resistant to misuse.
    func NewGCMWithNonceSize(cipher Block, size int) (AEAD, error) {
    	return newGCMWithNonceAndTagSize(cipher, size, gcmTagSize)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    	roots = append(roots, module.Version{Path: "go", Version: goVersion})
    	direct["go"] = true // Every module directly uses the language and runtime.
    
    	if toolchain != "" {
    		roots = append(roots, module.Version{Path: "toolchain", Version: toolchain})
    		// Leave the toolchain as indirect: nothing in the user's module directly
    		// imports a package from the toolchain, and (like an indirect dependency in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/database/sql/driver/types.go

    //
    //   - converting a value as given from the database into one of the
    //     driver [Value] types.
    //
    //   - by the [database/sql] package, for converting from a driver's [Value] type
    //     to a user's type in a scan.
    type ValueConverter interface {
    	// ConvertValue converts a value to a driver Value.
    	ConvertValue(v any) (Value, error)
    }
    
    // Valuer is the interface providing the Value method.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{12, "SIGSYS", "bad argument to routine"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGUSR1", "user defined signal 1"},
    	{17, "SIGUSR2", "user defined signal 2"},
    	{18, "SIGABND", "abend"},
    	{19, "SIGCONT", "continued"},
    	{20, "SIGCHLD", "child exited"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    	{22, "SIGTTOU", "stopped (tty output)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. finisher_api.go

    //
    //	// assign an email if the record is not found
    //	db.Where(User{Name: "non_existing"}).Attrs(User{Email: "******@****.***"}).FirstOrInit(&user)
    //	// user -> User{Name: "non_existing", Email: "******@****.***"}
    //
    //	// assign email regardless of if record is found
    //	db.Where(User{Name: "jinzhu"}).Assign(User{Email: "******@****.***"}).FirstOrInit(&user)
    //	// user -> User{Name: "jinzhu", Age: 20, Email: "******@****.***"}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //
    // A few common code hosting sites have special syntax:
    //
    //	Bitbucket (Git, Mercurial)
    //
    //		import "bitbucket.org/user/project"
    //		import "bitbucket.org/user/project/sub/directory"
    //
    //	GitHub (Git)
    //
    //		import "github.com/user/project"
    //		import "github.com/user/project/sub/directory"
    //
    //	Launchpad (Bazaar)
    //
    //		import "launchpad.net/project"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    			// If some packages are missing but no package is upgraded, then we
    			// shouldn't suggest upgrading to the Go 1.16 versions explicitly — that
    			// wouldn't actually fix anything for Go 1.16 users, and *would* break
    			// something for Go 1.17 users.
    			fmt.Fprintf(os.Stderr, "To proceed despite packages unresolved in go %s:\n\tgo mod tidy -e%s%s\n", compatVersion, goFlag, compatFlag)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/language/match.go

    // match as the preferred match.
    //
    // If pin is true and have and tag are a strong match, it will henceforth only
    // consider matches for this language. This corresponds to the idea that most
    // users have a strong preference for the first defined language. A user can
    // still prefer a second language over a dialect of the preferred language by
    // explicitly specifying dialects, e.g. "en, nl, en-GB". In this case pin should
    // be false.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/fetch.go

    and override GOPRIVATE for the specific decision of whether to use the proxy
    and checksum database, respectively.
    
    For example, if a company ran a module proxy serving private modules,
    users would configure go using:
    
    	GOPRIVATE=*.corp.example.com
    	GOPROXY=proxy.example.com
    	GONOPROXY=none
    
    The GOPRIVATE variable is also used to define the "public" and "private"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top