Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for preamble (0.34 sec)

  1. src/cmd/cgo/doc.go

    as C.stdout, or functions such as C.putchar.
    
    If the import of "C" is immediately preceded by a comment, that
    comment, called the preamble, is used as a header when compiling
    the C parts of the package. For example:
    
    	// #include <stdio.h>
    	// #include <errno.h>
    	import "C"
    
    The preamble may contain any C code, including function and variable
    declarations and definitions. These may then be referred to from Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/MultipartReaderTest.kt

          parts.nextPart()
        }.also { expected ->
          assertThat(expected).hasMessage("expected at least 1 part")
        }
      }
    
      @Test fun `skip preamble`() {
        val multipart =
          """
          |this is the preamble! it is invisible to application code
          |
          |--simple boundary
          |
          |abcd
          |--simple boundary--
          """.trimMargin()
            .replace("\n", "\r\n")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    		t:  t,
    		p:  path,
    		ln: 1,
    	}
    	// consume header comment until preamble delimiter.
    	found := false
    	for dr.scan() {
    		if dr.curLine() == preambleDelimiter {
    			found = true
    			break
    		}
    	}
    	if !found {
    		return nil, nil, fmt.Errorf("malformed testcase file %s, missing preamble delimiter", path)
    	}
    	res := []fnInlHeur{}
    	csres := []encodedCallSiteTab{}
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. src/internal/coverage/defs.go

    // counters data from a single execution of a coverage-instrumented
    // program. Following the segment header will be the string table and
    // args table, and then (possibly) padding bytes to bring the byte
    // size of the preamble up to a multiple of 4. Immediately following
    // that will be the counter payloads.
    //
    // The "args" section of a segment is used to store annotations
    // describing where the counter data came from; this section is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/generate/generate.go

    // The initial //go:generate element is present in line.
    func (g *Generator) split(line string) []string {
    	// Parse line, obeying quoted strings.
    	var words []string
    	line = line[len("//go:generate ") : len(line)-1] // Drop preamble and final newline.
    	// There may still be a carriage return.
    	if len(line) > 0 && line[len(line)-1] == '\r' {
    		line = line[:len(line)-1]
    	}
    	// One (possibly quoted) word per iteration.
    Words:
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    51 Franklin Street, Fifth Floor
    Boston, MA 02110-1335
    USA
    
    Everyone is permitted to copy and distribute verbatim copies
    of this license document, but changing it is not allowed.
    
    Preamble
    
    The licenses for most software are designed to take away your freedom to
    share and change it. By contrast, the GNU General Public License is
    intended to guarantee your freedom to share and change free software--to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. doc/asm.html

    The linker will choose one of the duplicates to use.
    </li>
    <li>
    <code>NOSPLIT</code> = 4
    <br>
    (For <code>TEXT</code> items.)
    Don't insert the preamble to check if the stack must be split.
    The frame for the routine, plus anything it calls, must fit in the
    spare space remaining in the current stack segment.
    Used to protect routines such as the stack splitting code itself.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
Back to top