Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Accent (0.26 sec)

  1. doc/go1.17_spec.html

    <p>
    Source code is Unicode text encoded in
    <a href="https://en.wikipedia.org/wiki/UTF-8">UTF-8</a>. The text is not
    canonicalized, so a single accented code point is distinct from the
    same character constructed from combining an accent and a letter;
    those are treated as two code points.  For simplicity, this document
    will use the unqualified term <i>character</i> to refer to a Unicode code point
    in the source text.
    </p>
    <p>
    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/cmd/cgo/ast.go

    					f.Preamble += "#line 1 \"cgo-generated-wrapper\"\n"
    				}
    			}
    
    		case *ast.FuncDecl:
    			// Also, reject attempts to declare methods on C.T or *C.T.
    			// (The generated code would otherwise accept this
    			// invalid input; see issue #57926.)
    			if decl.Recv != nil && len(decl.Recv.List) > 0 {
    				recvType := decl.Recv.List[0].Type
    				if recvType != nil {
    					t := recvType
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  3. src/archive/zip/reader_test.go

    			},
    			{
    				Name:     "bar.txt",
    				Content:  []byte("bar\n"),
    				Modified: time.Date(1979, 11, 30, 0, 0, 0, 0, time.UTC),
    				Mode:     0666,
    			},
    		},
    	},
    	// Tests that we verify (and accept valid) crc32s on files
    	// with crc32s in their file header (not in data descriptors)
    	{
    		Name: "crc32-not-streamed.zip",
    		File: []ZipTestFile{
    			{
    				Name:     "foo.txt",
    				Content:  []byte("foo\n"),
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  4. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const SO_USELOOPBACK = 64
    pkg syscall (netbsd-arm64-cgo), const SO_USELOOPBACK ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_ACCEPT = 30
    pkg syscall (netbsd-arm64-cgo), const SYS_ACCEPT ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_ACCESS = 33
    pkg syscall (netbsd-arm64-cgo), const SYS_ACCESS ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_ACCT = 51
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  5. src/bytes/buffer.go

    	}
    	r, n := utf8.DecodeRune(b.buf[b.off:])
    	b.off += n
    	b.lastRead = readOp(n)
    	return r, n, nil
    }
    
    // UnreadRune unreads the last rune returned by [Buffer.ReadRune].
    // If the most recent read or write operation on the buffer was
    // not a successful [Buffer.ReadRune], UnreadRune returns an error.  (In this regard
    // it is stricter than [Buffer.UnreadByte], which will unread the last byte
    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)
  6. api/go1.txt

    pkg net, type Interface struct, MTU int
    pkg net, type Interface struct, Name string
    pkg net, type InvalidAddrError string
    pkg net, type Listener interface { Accept, Addr, Close }
    pkg net, type Listener interface, Accept() (Conn, error)
    pkg net, type Listener interface, Addr() Addr
    pkg net, type Listener interface, Close() error
    pkg net, type MX struct
    pkg net, type MX struct, Host string
    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)
  7. api/go1.16.txt

    pkg syscall (darwin-arm64), const SO_WANTOOBFLAG ideal-int
    pkg syscall (darwin-arm64), const SYS_ACCEPT = 30
    pkg syscall (darwin-arm64), const SYS_ACCEPT ideal-int
    pkg syscall (darwin-arm64), const SYS_ACCEPT_NOCANCEL = 404
    pkg syscall (darwin-arm64), const SYS_ACCEPT_NOCANCEL ideal-int
    pkg syscall (darwin-arm64), const SYS_ACCESS = 33
    pkg syscall (darwin-arm64), const SYS_ACCESS ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  8. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_ABORT2 = 463
    pkg syscall (freebsd-arm64), const SYS_ABORT2 ideal-int
    pkg syscall (freebsd-arm64), const SYS_ACCEPT = 30
    pkg syscall (freebsd-arm64), const SYS_ACCEPT ideal-int
    pkg syscall (freebsd-arm64), const SYS_ACCEPT4 = 541
    pkg syscall (freebsd-arm64), const SYS_ACCEPT4 ideal-int
    pkg syscall (freebsd-arm64), const SYS_ACCESS = 33
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  9. doc/go_spec.html

    <p>
    Source code is Unicode text encoded in
    <a href="https://en.wikipedia.org/wiki/UTF-8">UTF-8</a>. The text is not
    canonicalized, so a single accented code point is distinct from the
    same character constructed from combining an accent and a letter;
    those are treated as two code points.  For simplicity, this document
    will use the unqualified term <i>character</i> to refer to a Unicode code point
    in the source text.
    </p>
    <p>
    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)
  10. src/archive/tar/writer.go

    	}
    	if _, tw.err = tw.w.Write(zeroBlock[:tw.pad]); tw.err != nil {
    		return tw.err
    	}
    	tw.pad = 0
    	return nil
    }
    
    // WriteHeader writes hdr and prepares to accept the file's contents.
    // The Header.Size determines how many bytes can be written for the next file.
    // If the current file is not fully written, then this returns an error.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 19.6K bytes
    - Viewed (0)
Back to top