Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for separated (0.88 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    	// A file with no build tags will always be tested.
    	assert(shouldTest("// This is a test.", "os", "arch"))
    
    	// Build tags separated by a space are OR-ed together.
    	assertNot(shouldTest("// +build arm 386", "linux", "amd64"))
    
    	// Build tags separated by a comma are AND-ed together.
    	assertNot(shouldTest("// +build !windows,!plan9", "windows", "amd64"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    the root of the version control repository.
    
    The general form of the GOVCS setting is a comma-separated list of
    pattern:vcslist rules. The pattern is a glob pattern that must match
    one or more leading elements of the module or import path. The vcslist
    is a pipe-separated list of allowed version control commands, or "all"
    to allow use of any known command, or "off" to disallow all commands.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    	f, ok := dcl.(*FuncDecl)
    	return ok && f.Body == nil
    }
    
    // ----------------------------------------------------------------------------
    // Declarations
    
    // list parses a possibly empty, sep-separated list of elements, optionally
    // followed by sep, and closed by close (or EOF). sep must be one of _Comma
    // or _Semi, and close must be one of _Rparen, _Rbrace, or _Rbrack.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    tests and example functions. See 'go help testfunc' for more.
    Each listed package causes the execution of a separate test binary.
    Files whose names begin with "_" (including "_test.go") or "." are ignored.
    
    Test files that declare a package with the suffix "_test" will be compiled as a
    separate package, and then linked and run with the main test binary.
    
    The go tool will ignore a directory named "testdata", making it available
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    		if rebuildall {
    			xremoveall(p)
    		}
    		xmkdirall(p)
    	}
    
    	// Create object directory.
    	// We used to use it for C objects.
    	// Now we use it for the build cache, to separate dist's cache
    	// from any other cache the user might have, and for the location
    	// to build the bootstrap versions of the standard library.
    	obj := pathf("%s/pkg/obj", goroot)
    	if !isdir(obj) {
    		xmkdir(obj)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    				for u != nil {
    					fmt.Printf(" %d", u.dist)
    					u = u.next
    				}
    				fmt.Println()
    			}
    		}
    
    		// Make a copy of the block schedule so we can generate a new one in place.
    		// We make a separate copy for phis and regular values.
    		nphi := 0
    		for _, v := range b.Values {
    			if v.Op != OpPhi {
    				break
    			}
    			nphi++
    		}
    		phis = append(phis[:0], b.Values[:nphi]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  7. src/bytes/bytes_test.go

    	{" Aaa Aaa Aaa ", " Aaa Aaa Aaa "},
    	{"123a456", "123a456"},
    	{"double-blind", "Double-Blind"},
    	{"ÿøû", "Ÿøû"},
    	{"with_underscore", "With_underscore"},
    	{"unicode \xe2\x80\xa8 line separator", "Unicode \xe2\x80\xa8 Line Separator"},
    }
    
    func TestTitle(t *testing.T) {
    	for _, tt := range TitleTests {
    		if s := string(Title([]byte(tt.in))); s != tt.out {
    			t.Errorf("Title(%q) = %q, want %q", tt.in, s, tt.out)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ppc64/ssa.go

    		pp.AddRestSourceConst(1)
    
    		if ppc64.NeedTOCpointer(base.Ctxt) {
    			// When compiling Go into PIC, the function we just
    			// called via pointer might have been implemented in
    			// a separate module and so overwritten the TOC
    			// pointer in R2; reload it.
    			q := s.Prog(ppc64.AMOVD)
    			q.From.Type = obj.TYPE_MEM
    			q.From.Offset = 24
    			q.From.Reg = ppc64.REGSP
    			q.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    // manipulates an instance of the loader struct.
    //
    // Although most of the loading state is maintained in the loader struct,
    // one key piece - the build list - is a global, so that it can be modified
    // separate from the loading operation, such as during "go get"
    // upgrades/downgrades or in "go mod" operations.
    // TODO(#40775): It might be nice to make the loader take and return
    // a buildList rather than hard-coding use of the global.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    	// composite parameters, we want to avoid creating a new sub-slot
    	// that differs from some existing sub-slot only by type, since
    	// the debug location analysis will treat that slot as a separate
    	// entity. To achieve this, create a lookup table of existing
    	// slots that is type-insenstitive.
    	sc := newSlotCanonicalizer()
    	for _, sl := range f.Names {
    		sc.lookup(*sl)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top