Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for here (0.16 sec)

  1. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    stderr 'preprofile.*-i.*a(/|\\\\)default\.pgo'
    stderr 'preprofile.*-i.*b(/|\\\\)default\.pgo'
    
    # a and b built once each with PGO.
    # Ideally we would check that the passed profile is the expected profile (here
    # and for dependencies). Unfortunately there is no nice way to map the expected
    # paths after preprocessing.
    stderr -count=1 'compile.*-pgoprofile=.*a(/|\\\\)a\.go'
    stderr -count=1 'compile.*-pgoprofile=.*b(/|\\\\)b\.go'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.go

    		// whether it became done before the call began or while we were
    		// waiting for the mutex. We prefer to fail even if we could acquire
    		// the mutex without blocking.
    		s.mu.Unlock()
    		return ctx.Err()
    	default:
    	}
    	if s.size-s.cur >= n && s.waiters.Len() == 0 {
    		// Since we hold s.mu and haven't synchronized since checking done, if
    		// ctx becomes done before we return here, it becoming done must have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/02-pkgsite-removal.yml

    name: Pkg.go.dev package removal request
    description: Request a package be removed from the documentation site (pkg.go.dev)
    title: "x/pkgsite: package removal request for [type path here]"
    labels: ["pkgsite/package-removal"]
    body:
      - type: markdown
        attributes:
          value: "Please answer these questions before submitting your issue. Thanks!"
      - type: input
        id: package-path
        attributes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. doc/initial/6-stdlib/99-minor/README

    API changes and other small changes to the standard library go here....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 18:07:49 UTC 2024
    - 69 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64latelower.rules

    L6:(SAR(Q|L) x y) && buildcfg.GOAMD64 >= 3 => (SARX(Q|L) x y)
    L7:(SHL(Q|L) x y) && buildcfg.GOAMD64 >= 3 => (SHLX(Q|L) x y)
    L8:(SHR(Q|L) x y) && buildcfg.GOAMD64 >= 3 => (SHRX(Q|L) x y)
    L9:
    L10:// See comments in ARM64latelower.rules for why these are here.
    L11:(MOVLQZX x) && zeroUpper32Bits(x,3) => x
    L12:(MOVWQZX x) && zeroUpper48Bits(x,3) => x
    L13:(MOVBQZX x) && zeroUpper56Bits(x,3) => x
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 636 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testerrors/errors_test.go

    			if bytes.HasSuffix(line, []byte("ERROR HERE")) {
    				re := regexp.MustCompile(regexp.QuoteMeta(fmt.Sprintf("%s:%d:", file, i+1)))
    				errors = append(errors, re)
    				continue
    			}
    
    			if _, frag, ok := bytes.Cut(line, []byte("ERROR HERE: ")); ok {
    				re, err := regexp.Compile(fmt.Sprintf(":%d:.*%s", i+1, frag))
    				if err != nil {
    					t.Errorf("Invalid regexp after `ERROR HERE: `: %#q", frag)
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_predicates.go

    //     as a type constraint in Go code
    //   - if T is an uninstantiated generic type
    func AssertableTo(V *Interface, T Type) bool {
    	// Checker.newAssertableTo suppresses errors for invalid types, so we need special
    	// handling here.
    	if !isValid(T.Underlying()) {
    		return false
    	}
    	return (*Checker)(nil).newAssertableTo(nopos, V, T, nil)
    }
    
    // AssignableTo reports whether a value of type V is assignable to a variable
    // of type T.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/list_swigcxx.txt

    [!exec:swig] skip
    [!exec:g++] skip
    [!cgo] skip
    
    # CompiledGoFiles should contain 4 files:
    #  a.go
    #  _cgo_import.go [gc only]
    #  _cgo_gotypes.go
    #  a.cgo1.go
    #
    # These names we see here, other than a.go, will be from the build cache,
    # so we just count them.
    
    go list -f '{{.CompiledGoFiles}}' -compiled=true example/swig
    
    stdout a\.go
    [compiler:gc] stdout -count=3 $GOCACHE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 04:04:13 UTC 2024
    - 581 bytes
    - Viewed (0)
  9. src/cmd/dist/testjson.go

    				if err != nil {
    					// Should never happen.
    					panic(fmt.Sprintf("failed to round-trip JSON %q: %s", line, err))
    				}
    				f.w.Write(data)
    				// Copy any trailing text. We expect at most a "\n" here, but
    				// there could be other text and we want to feed that through.
    				io.Copy(f.w, dec.Buffered())
    				return
    			}
    		}
    	}
    
    	// Something went wrong. Just pass the line through.
    	f.w.Write(line)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vet/vetflag.go

    		base.Exit()
    	}
    
    	// Add vet's flags to CmdVet.Flag.
    	//
    	// Some flags, in particular -tags and -v, are known to vet but
    	// also defined as build flags. This works fine, so we omit duplicates here.
    	// However some, like -x, are known to the build but not to vet.
    	isVetFlag := make(map[string]bool, len(analysisFlags))
    	cf := CmdVet.Flag
    	for _, f := range analysisFlags {
    		isVetFlag[f.Name] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top