Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for inconsistencies (0.34 sec)

  1. doc/next/6-stdlib/99-minor/path/filepath/63703.md

    On Windows, [EvalSymlinks] no longer evaluates mount points,
    which was a source of many inconsistencies and bugs.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Previous versions default to `winsymlink=0`.
    
    On Windows, [EvalSymlinks] no longer tries to normalize
    volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 545 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_downgrade.txt

    stdout 'rsc.io/quote v1.4.0'
    stdout 'rsc.io/sampler v1.0.0'
    
    # downgrade sampler away should downgrade quote further
    go get rsc.io/sampler@none
    go list -m all
    stdout 'rsc.io/quote v1.3.0'
    
    # downgrade should report inconsistencies and not change go.mod
    go get rsc.io/quote@v1.5.1
    go list -m all
    stdout 'rsc.io/quote v1.5.1'
    stdout 'rsc.io/sampler v1.3.0'
    
    ! go get rsc.io/sampler@v1.0.0 rsc.io/quote@v1.5.2 golang.org/x/text@none
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. src/runtime/metrics.go

    		a.mCacheInUse = uint64(mheap_.cachealloc.inuse)
    		unlock(&mheap_.lock)
    	})
    }
    
    // cpuStatsAggregate represents CPU stats obtained from the runtime
    // acquired together to avoid skew and inconsistencies.
    type cpuStatsAggregate struct {
    	cpuStats
    }
    
    // compute populates the cpuStatsAggregate with values from the runtime.
    func (a *cpuStatsAggregate) compute() {
    	a.cpuStats = work.cpuStats
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. src/cmd/covdata/dump.go

    	// instrumented application.
    	mm map[pkfunc]decodecounter.FuncPayload
    
    	// pkm maps package ID to the number of functions in the package
    	// with that ID. It is used to report inconsistencies in counter
    	// data (for example, a counter data entry with pkgid=N funcid=10
    	// where package N only has 3 functions).
    	pkm map[uint32]uint32
    
    	// pkgpaths records all package import paths encountered while
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/intervals.go

    	c.setLast(-1)
    	if debugtrace {
    		fmt.Fprintf(os.Stderr, "=-= term lifetime at pos=%d\n", pos)
    	}
    	return nil
    }
    
    // check examines the intervals in "is" to try to find internal
    // inconsistencies or problems.
    func check(is Intervals) error {
    	for i := 0; i < len(is); i++ {
    		st := is[i].st
    		en := is[i].en
    		if en <= st {
    			return fmt.Errorf("bad range elem %d:%d, en<=st", st, en)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

            // These are part of the API, but not the DSL
            excludedPackages.add("org.gradle.tooling.**");
            excludedPackages.add("org.gradle.testfixtures.**");
    
            // Tweak the imports due to some inconsistencies introduced before we automated the default-imports generation
            excludedPackages.add("org.gradle.plugins.ide.eclipse.model");
            excludedPackages.add("org.gradle.plugins.ide.idea.model");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/download.go

    		// modules that aren't needed to build packages in the main module. This is
    		// usually not intended, so don't save sums for downloaded modules
    		// (golang.org/issue/45332). We do still fix inconsistencies in go.mod
    		// though.
    		//
    		// TODO(#64008): In the future, report an error if go.mod or go.sum need to
    		// be updated after loading the build list. This may require setting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api.go

    	// path when imported by a package file located in dir.
    	// If the import failed, besides returning an error, ImportFrom
    	// is encouraged to cache and return a package anyway, if one
    	// was created. This will reduce package inconsistencies and
    	// follow-on type checker errors due to the missing package.
    	// The mode value must be 0; it is reserved for future use.
    	// Two calls to ImportFrom with the same path and dir must
    	// return the same package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. src/go/types/api.go

    	// path when imported by a package file located in dir.
    	// If the import failed, besides returning an error, ImportFrom
    	// is encouraged to cache and return a package anyway, if one
    	// was created. This will reduce package inconsistencies and
    	// follow-on type checker errors due to the missing package.
    	// The mode value must be 0; it is reserved for future use.
    	// Two calls to ImportFrom with the same path and dir must
    	// return the same package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. doc/godebug.md

    always have [`os.ModeIrregular`](/pkg/os#ModeIrregular) set. As a result of these changes,
    [`filepath.EvalSymlinks`](/pkg/path/filepath#EvalSymlinks) no longer evaluates
    mount points, which was a source of many inconsistencies and bugs.
    At previous versions (`winsymlink=0`), mount points are treated as symlinks,
    and other reparse points with non-default [`os.ModeType`](/pkg/os#ModeType) bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top