Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for inconsistencies (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/link/internal/loadpe/ldpe.go

    				ls.Textp = append(ls.Textp, s)
    			}
    		}
    	}
    
    	if ls.PData != 0 {
    		processSEH(l, arch, ls.PData, ls.XData)
    	}
    
    	return &ls, nil
    }
    
    // PostProcessImports works to resolve inconsistencies with DLL import
    // symbols; it is needed when building with more "modern" C compilers
    // with internal linkage.
    //
    // Background: DLL import symbols are data (SNOPTRDATA) symbols whose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/controller/repairip.go

    		ip := netutils.ParseIPSloppy(clusterIP)
    		if ip == nil {
    			// ClusterIP is corrupt, ClusterIPs are already validated, but double checking here
    			// in case there are some inconsistencies with the parsers
    			r.recorder.Eventf(svc, nil, v1.EventTypeWarning, "ClusterIPNotValid", "ClusterIPValidation", "Cluster IP %s is not a valid IP; please recreate Service", ip)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top