Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 275 for Implementation (0.21 sec)

  1. src/fmt/doc.go

    concrete value that it holds, and printing continues with the next rule.
    
    2. If an operand implements the [Formatter] interface, it will
    be invoked. In this case the interpretation of verbs and flags is
    controlled by that implementation.
    
    3. If the %v verb is used with the # flag (%#v) and the operand
    implements the [GoStringer] interface, that will be invoked.
    
    If the format (which is implicitly %v for [Println] etc.) is valid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/net/net.go

    //
    // The two methods [Addr.Network] and [Addr.String] conventionally return strings
    // that can be passed as the arguments to [Dial], but the exact form
    // and meaning of the strings is up to the implementation.
    type Addr interface {
    	Network() string // name of the network (for example, "tcp", "udp")
    	String() string  // string form of address (for example, "192.0.2.1:25", "[2001:db8::1]:80")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. src/os/exec.go

    	Env []string
    	// Files specifies the open files inherited by the new process. The
    	// first three entries correspond to standard input, standard output, and
    	// standard error. An implementation may support additional entries,
    	// depending on the underlying operating system. A nil entry corresponds
    	// to that file being closed when the process starts.
    	// On Unix systems, StartProcess will change these File values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    			for _, x := range v {
    				h = fnvUint64(h, uint64(x))
    			}
    		}
    	}
    	return h
    }
    
    // Trivial error implementation, here to avoid importing errors.
    
    type parseError struct{ text string }
    
    func (e *parseError) Error() string { return e.text }
    
    // FNV-1a implementation. See Go's hash/fnv/fnv.go.
    // Copied here for simplicity (can handle uints directly)
    // and to avoid the dependency.
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. src/net/tcpsock_test.go

    	}
    	if fails > 0 {
    		t.Logf("# of failed Dials: %v", fails)
    	}
    }
    
    func TestTCPReadWriteAllocs(t *testing.T) {
    	switch runtime.GOOS {
    	case "plan9":
    		// The implementation of asynchronous cancelable
    		// I/O on Plan 9 allocates memory.
    		// See net/fd_io_plan9.go.
    		t.Skipf("not supported on %s", runtime.GOOS)
    	}
    
    	ln, err := Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. src/math/big/arith_arm64.s

    	B	sub4
    copy:
    	MOVD	ZR, c+56(FP)
    	CMP	R1, R3
    	BEQ	done
    copy_4:				// no carry flag, copy the rest
    	vwOneIterCopy(R0, done)
    	B	copy_4
    
    // func shlVU(z, x []Word, s uint) (c Word)
    // This implementation handles the shift operation from the high word to the low word,
    // which may be an error for the case where the low word of x overlaps with the high
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. src/io/io.go

    // Package io provides basic interfaces to I/O primitives.
    // Its primary job is to wrap existing implementations of such primitives,
    // such as those in package os, into shared public interfaces that
    // abstract the functionality, plus some other related primitives.
    //
    // Because these interfaces and primitives wrap lower-level operations with
    // various implementations, unless otherwise informed clients should not
    // assume they are safe for parallel execution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. src/net/http/cookiejar/jar.go

    //
    // Implementations of PublicSuffixList must be safe for concurrent use by
    // multiple goroutines.
    //
    // An implementation that always returns "" is valid and may be useful for
    // testing but it is not secure: it means that the HTTP server for foo.com can
    // set a cookie for bar.com.
    //
    // A public suffix list implementation is in the package
    // golang.org/x/net/publicsuffix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. src/internal/bisect/bisect.go

    			}
    		}
    	}
    	return h
    }
    
    // Trivial error implementation, here to avoid importing errors.
    
    // parseError is a trivial error implementation,
    // defined here to avoid importing errors.
    type parseError struct{ text string }
    
    func (e *parseError) Error() string { return e.text }
    
    // FNV-1a implementation. See Go's hash/fnv/fnv.go.
    // Copied here for simplicity (can handle integers more directly)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. src/database/sql/convert.go

    // to respect the negative parameter in the non-finite form.
    //
    // Implementations may choose to set the negative parameter to true on a zero or NaN value,
    // but implementations that do not differentiate between negative and positive
    // zero or NaN values should ignore the negative parameter without error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top