Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 837 for provider (0.25 sec)

  1. src/os/exec/exec_windows.go

    // license that can be found in the LICENSE file.
    
    package exec
    
    import (
    	"io/fs"
    	"syscall"
    )
    
    // skipStdinCopyError optionally specifies a function which reports
    // whether the provided stdin copy error should be ignored.
    func skipStdinCopyError(err error) bool {
    	// Ignore ERROR_BROKEN_PIPE and ERROR_NO_DATA errors copying
    	// to stdin if the program completed successfully otherwise.
    	// See Issue 20445.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 13:47:05 UTC 2022
    - 721 bytes
    - Viewed (0)
  2. src/net/tcpsockopt_windows.go

    func setKeepAliveIdleAndInterval(fd *netFD, idle, interval time.Duration) error {
    	// WSAIoctl with SIO_KEEPALIVE_VALS control code requires all fields in
    	// `tcp_keepalive` struct to be provided.
    	// Otherwise, if any of the fields were not provided, just leaving them
    	// zero will knock off any existing values of keep-alive.
    	// Unfortunately, Windows doesn't support retrieving current keep-alive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/io/multi.go

    		}
    		mr.readers[i] = nil // permit early GC
    	}
    	mr.readers = nil
    	return sum, nil
    }
    
    var _ WriterTo = (*multiReader)(nil)
    
    // MultiReader returns a Reader that's the logical concatenation of
    // the provided input readers. They're read sequentially. Once all
    // inputs have returned EOF, Read will return EOF.  If any of the readers
    // return a non-nil, non-EOF error, Read will return that error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/plan9/syscall.go

    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    // to freebsd and $GOARCH to arm.
    //
    // The primary use of this package is inside other packages that provide a more
    // portable interface to the system, such as "os", "time" and "net".  Use
    // those packages rather than this one if you can.
    //
    // For details of the functions and data types in this package consult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/math/big/arith_mipsx.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !math_big_pure_go && (mips || mipsle)
    
    #include "textflag.h"
    
    // This file provides fast assembly versions for the elementary
    // arithmetic operations on vectors implemented in arith.go.
    
    TEXT ·addVV(SB),NOSPLIT,$0
    	JMP	·addVV_g(SB)
    
    TEXT ·subVV(SB),NOSPLIT,$0
    	JMP	·subVV_g(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 759 bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/hashes.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sha3
    
    // This file provides functions for creating instances of the SHA-3
    // and SHAKE hash functions, as well as utility functions for hashing
    // bytes.
    
    import (
    	"hash"
    )
    
    // New224 creates a new SHA3-224 hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_fossil.txt

    [short] skip
    [!exec:fossil] skip
    
    # Regression test for 'go get' to ensure repositories
    # provided by fossil v2.12 and up are able to be fetched
    # and parsed correctly.
    # Verifies golang.org/issue/42323.
    
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # 'go get' for the fossil repo will fail if fossil
    # is unable to determine your fossil user. Easiest
    # way to set it for use by 'go get' is specifying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 773 bytes
    - Viewed (0)
  8. src/go/types/interface.go

    var emptyInterface = Interface{complete: true, tset: &topTypeSet}
    
    // NewInterface returns a new interface for the given methods and embedded types.
    // NewInterface takes ownership of the provided methods and may modify their types
    // by setting missing receivers.
    //
    // Deprecated: Use NewInterfaceType instead which allows arbitrary embedded types.
    func NewInterface(methods []*Func, embeddeds []*Named) *Interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/cryptobyte/string.go

    // contains useful ASN.1 constants.)
    //
    // The String type is for parsing. It wraps a []byte slice and provides helper
    // functions for consuming structures, value by value.
    //
    // The Builder type is for constructing messages. It providers helper functions
    // for appending values and also for appending length-prefixed submessages –
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. src/math/log.go

    // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
    //
    // Developed at SunPro, a Sun Microsystems, Inc. business.
    // Permission to use, copy, modify, and distribute this
    // software is freely granted, provided that this notice
    // is preserved.
    // ====================================================
    //
    // __ieee754_log(x)
    // Return the logarithm of x
    //
    // Method :
    //   1. Argument Reduction: find k and f such that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top