Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 706 for remSign (0.18 sec)

  1. src/syscall/net.go

    package syscall
    
    // A RawConn is a raw network connection.
    type RawConn interface {
    	// Control invokes f on the underlying connection's file
    	// descriptor or handle.
    	// The file descriptor fd is guaranteed to remain valid while
    	// f executes but not after f returns.
    	Control(f func(fd uintptr)) error
    
    	// Read invokes f on the underlying connection's file
    	// descriptor or handle; f is expected to try to read from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 27 16:36:34 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  2. src/internal/poll/splice_linux.go

    	if err != nil {
    		return 0, false, err
    	}
    	defer putPipe(p)
    	var inPipe, n int
    	for err == nil && remain > 0 {
    		max := maxSpliceSize
    		if int64(max) > remain {
    			max = int(remain)
    		}
    		inPipe, err = spliceDrain(p.wfd, src, max)
    		// The operation is considered handled if splice returns no
    		// error, or an error other than EINVAL. An EINVAL means the
    		// kernel does not support splice for the socket type of src.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/go/printer/testdata/expressions.golden

    	f(2, args[0])
    
    	// make sure syntactically legal code remains syntactically legal
    	f(3, 42 ...)	// a blank must remain between 42 and ...
    	f(4, 42....)
    	f(5, 42....)
    	f(6, 42.0...)
    	f(7, 42.0...)
    	f(8, .42...)
    	f(9, .42...)
    	f(10, 42e0...)
    	f(11, 42e0...)
    
    	_ = 42 .x	// a blank must remain between 42 and .x
    	_ = 42..x
    	_ = 42..x
    	_ = 42.0.x
    	_ = 42.0.x
    	_ = .42.x
    	_ = .42.x
    	_ = 42e0.x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  4. src/go/printer/testdata/expressions.raw

    	f(2, args[0])
    
    	// make sure syntactically legal code remains syntactically legal
    	f(3, 42 ...)	// a blank must remain between 42 and ...
    	f(4, 42....)
    	f(5, 42....)
    	f(6, 42.0...)
    	f(7, 42.0...)
    	f(8, .42...)
    	f(9, .42...)
    	f(10, 42e0...)
    	f(11, 42e0...)
    
    	_ = 42 .x	// a blank must remain between 42 and .x
    	_ = 42..x
    	_ = 42..x
    	_ = 42.0.x
    	_ = 42.0.x
    	_ = .42.x
    	_ = .42.x
    	_ = 42e0.x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  5. src/go/doc/testdata/error1.1.golden

    // 
    PACKAGE error1
    
    IMPORTPATH
    	testdata/error1
    
    FILENAMES
    	testdata/error1.go
    
    TYPES
    	// 
    	type I0 interface {
    		// When embedded, the predeclared error interface
    		// must remain visible in interface types.
    		error
    	}
    
    	// 
    	type S0 struct {
    		// In struct types, an embedded error must only be visible
    		// if AllDecls is set.
    		error
    	}
    
    	// 
    	type T0 struct {
    		ExportedField interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 440 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/doc.go

    //
    // lostcancel: check cancel func returned by context.WithCancel is called
    //
    // The cancellation function returned by context.WithCancel, WithTimeout,
    // and WithDeadline must be called or the new context will remain live
    // until its parent context is cancelled.
    // (The background context is never cancelled.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 632 bytes
    - Viewed (0)
  7. src/go/doc/testdata/error1.0.golden

    // 
    PACKAGE error1
    
    IMPORTPATH
    	testdata/error1
    
    FILENAMES
    	testdata/error1.go
    
    TYPES
    	// 
    	type I0 interface {
    		// When embedded, the predeclared error interface
    		// must remain visible in interface types.
    		error
    	}
    
    	// 
    	type S0 struct {
    		// contains filtered or unexported fields
    	}
    
    	// 
    	type T0 struct {
    		ExportedField interface {
    			// error should be visible
    			error
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 390 bytes
    - Viewed (0)
  8. src/go/doc/testdata/error1.2.golden

    // 
    PACKAGE error1
    
    IMPORTPATH
    	testdata/error1
    
    FILENAMES
    	testdata/error1.go
    
    TYPES
    	// 
    	type I0 interface {
    		// When embedded, the predeclared error interface
    		// must remain visible in interface types.
    		error
    	}
    
    	// 
    	type S0 struct {
    		// contains filtered or unexported fields
    	}
    
    	// 
    	type T0 struct {
    		ExportedField interface {
    			// error should be visible
    			error
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 390 bytes
    - Viewed (0)
  9. test/fixedbugs/issue30243.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Compile-time constants, even if they cannot be represented
    // accurately, should remain the same in operations that don't
    // affect their values.
    
    package main
    
    import "fmt"
    
    func main() {
    	const x = 0.01
    	const xi = 0.01i
    	const xc = complex(0, x)
    
    	if imag(xi) != x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 21:05:17 UTC 2019
    - 578 bytes
    - Viewed (0)
  10. src/encoding/gob/debug.go

    	if !deb.remainingKnown {
    		return
    	}
    	if deb.remain < 0 {
    		fmt.Fprintf(os.Stderr, "remaining byte count is negative! %d\n", deb.remain)
    		return
    	}
    	data := make([]byte, deb.remain)
    	n, _ := deb.r.peek(data)
    	if n == 0 {
    		os.Stderr.Write(empty)
    		return
    	}
    	b := new(bytes.Buffer)
    	fmt.Fprintf(b, "[%d]{\n", deb.remain)
    	// Blanks until first byte
    	lineLength := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
Back to top