Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 475 for locations (0.17 sec)

  1. src/cmd/compile/internal/ssagen/pgen.go

    				fn.LSym.R[i])
    		}
    		// set the R_WEAK bit, leave rest of reloc type intact
    		fn.LSym.R[i].Type |= objabi.R_WEAK
    	}
    }
    
    // StackOffset returns the stack location of a LocalSlot relative to the
    // stack pointer, suitable for use in a DWARF location entry. This has nothing
    // to do with its offset in the user variable.
    func StackOffset(slot ssa.LocalSlot) int32 {
    	n := slot.N
    	var off int64
    	switch n.Class {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	// trimming is concerned.
    	trim := cfg.Trim
    
    	switch cmd {
    	case "disasm":
    		trim = false
    		cfg.Granularity = "addresses"
    		// Force the 'noinlines' mode so that source locations for a given address
    		// collapse and there is only one for the given address. Without this
    		// cumulative metrics would be double-counted when annotating the assembly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            Matcher matcher = Pattern.compile("gradle-(.+)").matcher(moduleName);
            matcher.matches();
            return matcher.group(1);
        }
    
        /**
         * Provides the locations where the classes and resources of a Gradle module can be found
         * when running in embedded mode from the IDE.
         *
         * <ul>
         * <li>In Eclipse, they are in the bin/ folder.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    As with any cache, the impact should therefore be measured over time.
    
    In a setup where a team uses a shared cache backend, there are two locations worth measuring cache impact at: on CI and on developer machines.
    
    == Cache impact on CI builds
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/log/slog/value.go

    	u := uint64(0)
    	if v {
    		u = 1
    	}
    	return Value{num: u, any: KindBool}
    }
    
    type (
    	// Unexported version of *time.Location, just so we can store *time.Locations in
    	// Values. (No user-provided value has this type.)
    	timeLocation *time.Location
    
    	// timeTime is for times where UnixNano is undefined.
    	timeTime time.Time
    )
    
    // TimeValue returns a [Value] for a [time.Time].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/time/zoneinfo_read.go

    	return loadTzinfoFromDirOrZip(source, name)
    }
    
    // loadLocation returns the Location with the given name from one of
    // the specified sources. See loadTzinfo for a list of supported sources.
    // The first timezone data matching the given name that is successfully loaded
    // and parsed is returned as a Location.
    func loadLocation(name string, sources []string) (z *Location, firstErr error) {
    	for _, source := range sources {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    		// This is wrong, but there seem to be some situations where we
    		// produce locations with no storage.
    		return 0
    	}
    	return uint8(bits.TrailingZeros64(uint64(set)))
    }
    
    // buildLocationLists builds location lists for all the user variables
    // in state.f, using the information about block state in blockLocs.
    // The returned location lists are not fully complete. They are in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/abi.go

    	fn.ABI = wrapperABI
    	typecheck.DeclFunc(fn)
    
    	fn.SetABIWrapper(true)
    	fn.SetDupok(true)
    
    	// ABI0-to-ABIInternal wrappers will be mainly loading params from
    	// stack into registers (and/or storing stack locations back to
    	// registers after the wrapped call); in most cases they won't
    	// need to allocate stack space, so it should be OK to mark them
    	// as NOSPLIT in these cases. In addition, my assumption is that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		fv, _ := measurement.Scale(flat, o.SampleUnit, o.OutputUnit)
    		cv, _ := measurement.Scale(cum, o.SampleUnit, o.OutputUnit)
    		s := &profile.Sample{
    			Location: []*profile.Location{l},
    			Value:    []int64{int64(cv), int64(fv)},
    		}
    		out.Location = append(out.Location, l)
    		out.Sample = append(out.Sample, s)
    	}
    
    	return out.Write(w)
    }
    
    type functionMap map[string]*profile.Function
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. src/runtime/extern.go

    	copier to crash the program if an invalid pointer value (for example, 1)
    	is found in a pointer-typed location. Setting invalidptr=0 disables this check.
    	This should only be used as a temporary workaround to diagnose buggy code.
    	The real fix is to not store integers in pointer-typed locations.
    
    	sbrk: setting sbrk=1 replaces the memory allocator and garbage collector
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top