Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for reply (0.23 sec)

  1. doc/go1.17_spec.html

    computed modulo 2<sup><i>n</i></sup>, where <i>n</i> is the bit width of
    the <a href="#Numeric_types">unsigned integer</a>'s type.
    Loosely speaking, these unsigned integer operations
    discard high bits upon overflow, and programs may rely on "wrap around".
    </p>
    <p>
    For signed integers, the operations <code>+</code>,
    <code>-</code>, <code>*</code>, <code>/</code>, and <code>&lt;&lt;</code> may legally
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/bytes/buffer.go

    func growSlice(b []byte, n int) []byte {
    	defer func() {
    		if recover() != nil {
    			panic(ErrTooLarge)
    		}
    	}()
    	// TODO(http://golang.org/issue/51462): We should rely on the append-make
    	// pattern so that the compiler can call runtime.growslice. For example:
    	//	return append(b, make([]byte, n)...)
    	// This avoids unnecessary zero-ing of the first len(b) bytes of the
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    			}
    			if r.Name.Kind != "type" {
    				repl = "(" + repl + ")"
    			}
    			f.Edit.Replace(f.offset(old.Pos()), f.offset(old.End()), repl)
    		}
    	}
    
    	// Remove functions only used as expressions, so their respective
    	// bridge functions are not generated.
    	for name, used := range functions {
    		if !used {
    			delete(f.Name, name)
    		}
    	}
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg net/rpc, type Call struct
    pkg net/rpc, type Call struct, Args interface{}
    pkg net/rpc, type Call struct, Done chan *Call
    pkg net/rpc, type Call struct, Error error
    pkg net/rpc, type Call struct, Reply interface{}
    pkg net/rpc, type Call struct, ServiceMethod string
    pkg net/rpc, type Client struct
    pkg net/rpc, type ClientCodec interface { Close, ReadResponseBody, ReadResponseHeader, WriteRequest }
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  5. src/archive/tar/reader.go

    			// Thus, setup the regFileReader again after merging PAX headers.
    			if err := tr.handleRegularFile(hdr); err != nil {
    				return nil, err
    			}
    
    			// Sparse formats rely on being able to read from the logical data
    			// section; there must be a preceding call to handleRegularFile.
    			if err := tr.handleSparseFile(hdr, rawHdr); err != nil {
    				return nil, err
    			}
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 08 01:59:14 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  6. doc/go_mem.html

    On the other hand, the rewrite would not be valid in a source-to-source translator.
    </p>
    
    <h2 id="conclusion">Conclusion</h2>
    
    <p>
    Go programmers writing data-race-free programs can rely on
    sequentially consistent execution of those programs,
    just as in essentially all other modern programming languages.
    </p>
    
    <p>
    When it comes to programs with races,
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  7. doc/go_spec.html

    </pre>
    
    <p>
    Some operations (<a href="#Slice_expressions">slice expressions</a>,
    <a href="#Appending_and_copying_slices"><code>append</code> and <code>copy</code></a>)
    rely on a slightly more loose form of core types which accept byte slices and strings.
    Specifically, if there are exactly two types, <code>[]byte</code> and <code>string</code>,
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  8. doc/go1.22.html

      always aligned to a 16 byte (or higher) boundary will now only be aligned to an 8
      byte boundary.
      Some programs that use assembly instructions that require memory addresses to be
      more than 8-byte aligned and rely on the memory allocator's previous alignment behavior
      may break, but we expect such programs to be rare.
      Such programs may be built with <code>GOEXPERIMENT=noallocheaders</code> to revert
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  9. src/bytes/bytes_test.go

    }
    
    func TestToValidUTF8(t *testing.T) {
    	for _, tc := range toValidUTF8Tests {
    		got := ToValidUTF8([]byte(tc.in), []byte(tc.repl))
    		if !Equal(got, []byte(tc.out)) {
    			t.Errorf("ToValidUTF8(%q, %q) = %q; want %q", tc.in, tc.repl, got, tc.out)
    		}
    	}
    }
    
    func TestTrimSpace(t *testing.T) { runStringTests(t, TrimSpace, "TrimSpace", trimSpaceTests) }
    
    type RepeatTest struct {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
Back to top