Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 708 for text (0.12 sec)

  1. src/cmd/compile/internal/types2/issues_test.go

    	}
    
    	for _, test := range tests {
    		// typecheck test source
    		conf := Config{Importer: importHelper{pkg: test.imported}}
    		pkg, err := typecheck(test.src, &conf, nil)
    		if err == nil {
    			if test.err != "" {
    				t.Errorf("package %s: got no error, want %q", pkg.Name(), test.err)
    			}
    			continue
    		}
    		if test.err == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64.s

    // the old assembler's (6a's) grammar and hand-writing complete
    // instructions for each rule, to guarantee we cover the same space.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT	foo(SB), DUPOK|NOSPLIT, $0
    
    // LTYPE1 nonrem	{ outcode($1, &$2); }
    	NEGQ	R11
    	NEGQ	4(R11)
    	NEGQ	foo+4(SB)
    
    // LTYPE2 rimnon	{ outcode($1, &$2); }
    	INT	$4
    	DIVB	R11
    	DIVB	4(R11)
    	DIVB	foo+4(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 18:57:21 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcweb/vcweb.go

    // using the scripts found in scriptDir and its subdirectories.
    //
    // A request for the path /foo/bar/baz will be handled by the first script along
    // that path that exists: $scriptDir/foo.txt, $scriptDir/foo/bar.txt, or
    // $scriptDir/foo/bar/baz.txt.
    func NewServer(scriptDir, workDir string, logger *log.Logger) (*Server, error) {
    	if scriptDir == "" {
    		panic("vcweb.NewServer: scriptDir is required")
    	}
    	var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/pgen.go

    	// the assembler may emit inscrutable complaints about invalid instructions.
    	if pp.Text.To.Offset >= maxStackSize {
    		largeStackFramesMu.Lock()
    		locals := f.Frontend().(*ssafn).stksize
    		largeStackFrames = append(largeStackFrames, largeStack{locals: locals, args: f.OwnAux.ArgWidth(), callee: pp.Text.To.Offset - locals, pos: fn.Pos()})
    		largeStackFramesMu.Unlock()
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/archive/zip/example_test.go

    	// Create a new zip archive.
    	w := zip.NewWriter(buf)
    
    	// Add some files to the archive.
    	var files = []struct {
    		Name, Body string
    	}{
    		{"readme.txt", "This archive contains some text files."},
    		{"gopher.txt", "Gopher names:\nGeorge\nGeoffrey\nGonzo"},
    		{"todo.txt", "Get animal handling licence.\nWrite more examples."},
    	}
    	for _, file := range files {
    		f, err := w.Create(file.Name)
    		if err != nil {
    			log.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 27 00:22:03 UTC 2016
    - 2K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vpopcntdq.s

    // Code generated by avx512test. DO NOT EDIT.
    
    #include "../../../../../../runtime/textflag.h"
    
    TEXT asmtest_avx512_vpopcntdq(SB), NOSPLIT, $0
    	VPOPCNTD X12, K2, X8                               // 62527d0a55c4
    	VPOPCNTD X16, K2, X8                               // 62327d0a55c0
    	VPOPCNTD X23, K2, X8                               // 62327d0a55c7
    	VPOPCNTD (R14), K2, X8                             // 62527d0a5506
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/web/http.go

    		contentType := res.Header.Get("Content-Type")
    		if mediaType, params, _ := mime.ParseMediaType(contentType); mediaType == "text/plain" {
    			switch charset := strings.ToLower(params["charset"]); charset {
    			case "us-ascii", "utf-8", "":
    				// Body claims to be plain text in UTF-8 or a subset thereof.
    				// Try to extract a useful error message from it.
    				r.errorDetail.r = res.Body
    				r.Body = &r.errorDetail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // time.
    //
    // The second, called package list mode, occurs when go test is invoked
    // with explicit package arguments (for example 'go test math', 'go
    // test ./...', and even 'go test .'). In this mode, go test compiles
    // and tests each of the packages listed on the command line. If a
    // package test passes, go test prints only the final 'ok' summary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/armv6.s

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT	foo(SB), DUPOK|NOSPLIT, $0
    
    	ADDF	F0, F1, F2    // 002a31ee
    	ADDD.EQ	F3, F4, F5    // 035b340e
    	ADDF.NE	F0, F2        // 002a321e
    	ADDD	F3, F5        // 035b35ee
    	SUBF	F0, F1, F2    // 402a31ee
    	SUBD.EQ	F3, F4, F5    // 435b340e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 21 16:30:51 UTC 2017
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/abiutilsaux_test.go

    // license that can be found in the LICENSE file.
    
    package test
    
    // This file contains utility routines and harness infrastructure used
    // by the ABI tests in "abiutils_test.go".
    
    import (
    	"cmd/compile/internal/abi"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/typecheck"
    	"cmd/compile/internal/types"
    	"cmd/internal/src"
    	"fmt"
    	"strings"
    	"testing"
    	"text/scanner"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:34:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top