Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for reporter (0.46 sec)

  1. src/cmd/link/internal/loader/loader.go

    // output file and return a non-zero error code.
    func (reporter *ErrorReporter) Errorf(s Sym, format string, args ...interface{}) {
    	if s != 0 && reporter.ldr.SymName(s) != "" {
    		// Note: Replace is needed here because symbol names might have % in them,
    		// due to the use of LinkString for names of instantiating types.
    		format = strings.Replace(reporter.ldr.SymName(s), "%", "%%", -1) + ": " + format
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    		ld.exitIfErrors(ctx)
    	}
    
    	// Report errors, if any.
    	for _, pkg := range ld.pkgs {
    		if pkg.err == nil {
    			continue
    		}
    
    		// Add importer information to checksum errors.
    		if sumErr := (*ImportMissingSumError)(nil); errors.As(pkg.err, &sumErr) {
    			if importer := pkg.stack; importer != nil {
    				sumErr.importer = importer.path
    				sumErr.importerVersion = importer.mod.Version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    			return true
    		}
    	}
    	return false
    }
    
    // Graph returns the graph of module requirements loaded from the current
    // root modules (as reported by RootModules).
    //
    // Graph always makes a best effort to load the requirement graph despite any
    // errors, and always returns a non-nil *ModuleGraph.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    	for moddir, absmodroot := range missingModulePaths {
    		_, f, err := ReadModFile(filepath.Join(absmodroot, "go.mod"), nil)
    		if err != nil {
    			continue // Error will be reported if modules are loaded.
    		}
    		wf.AddUse(moddir, f.Module.Mod.Path)
    	}
    }
    
    // LoadModFile sets Target and, if there is a main module, parses the initial
    // build list from its go.mod file.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func (b PSAPI_WORKING_SET_EX_BLOCK) LargePage() bool {
    	return (b & (1 << 23)) == 1
    }
    
    // Bad returns the bad status of this page.
    // If this bit is 1, the page is has been reported as bad.
    func (b PSAPI_WORKING_SET_EX_BLOCK) Bad() bool {
    	return (b & (1 << 31)) == 1
    }
    
    // intField extracts an integer field in the PSAPI_WORKING_SET_EX_BLOCK union.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    	    the randomizer using the system clock. If -shuffle is set to an
    	    integer N, then N will be used as the seed value. In both cases,
    	    the seed will be reported for reproducibility.
    
    	-skip regexp
    	    Run only those tests, examples, fuzz tests, and benchmarks that
    	    do not match the regular expression. Like for -run and -bench,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    	// so in non-release builds, everything now looks out-of-date due to
    	// toolchain2 having build IDs - that is, due to the go command seeing
    	// that there are new compilers. In release builds, the toolchain's reported
    	// version is used in place of the build ID, and the go command does not
    	// see that change from toolchain1 to toolchain2, so in release builds,
    	// nothing looks out of date.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    					t.Errorf("for %s importer, got unexpected error: %v", compiler, err)
    				}
    				errcount++
    			},
    			//Importer: importer.For(compiler, nil),
    		}
    
    		info := &Info{
    			Uses: make(map[*syntax.Name]Object),
    		}
    		pkg, _ := conf.Check("p", files, info)
    		if pkg == nil {
    			t.Errorf("for %s importer, type-checking failed to return a package", compiler)
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    	tg.grepStderr("matched no packages", "list should have reported that pattern matched no packages")
    	tg.grepStderrNot("symlink", "list should not have reported symlink")
    
    	tg.run("list", "example/xx/...")
    	tg.grepStdoutNot(".", "list should not have matched anything")
    	tg.grepStderr("matched no packages", "list should have reported that pattern matched no packages")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    	if len(cs.pkgMods) > 0 {
    		return true, cs.pkgMods[0]
    	}
    
    	return false, cs.mod
    }
    
    // checkPackageProblems reloads packages for the given patterns and reports
    // missing and ambiguous package errors. It also reports retractions and
    // deprecations for resolved modules and modules needed to build named packages.
    // It also adds a sum for each updated module in the build list if we had one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top