Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,782 for dbase (0.11 sec)

  1. src/image/png/reader.go

    		bytesPerPixel = 8
    	}
    	s, bounds := 0, src.Bounds()
    	for y := bounds.Min.Y; y < bounds.Max.Y; y++ {
    		dBase := (y*p.yFactor+p.yOffset-rect.Min.Y)*stride + (p.xOffset-rect.Min.X)*bytesPerPixel
    		for x := bounds.Min.X; x < bounds.Max.X; x++ {
    			d := dBase + x*p.xFactor*bytesPerPixel
    			copy(dstPix[d:], srcPix[s:s+bytesPerPixel])
    			s += bytesPerPixel
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/base.css

    Laura Kassovic <******@****.***> 1716614102 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	}
    
    	bases := make([]profileSource, 0, len(s.Base))
    	for _, src := range s.Base {
    		bases = append(bases, profileSource{
    			addr:   src,
    			source: s,
    		})
    	}
    
    	p, pbase, m, mbase, save, err := grabSourcesAndBases(sources, bases, o.Fetch, o.Obj, o.UI, o.HTTPTransport)
    	if err != nil {
    		return nil, err
    	}
    
    	if pbase != nil {
    		if s.DiffBase {
    			pbase.SetLabel("pprof::base", []string{"true"})
    		}
    		if s.Normalize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

                    static class AllPluginsValidation {
                        final ABase base
                        AllPluginsValidation(ABase base) {
                            this.base = base
                        }
                    }
                }
            """
            run "compileGroovy"
            outputs.recompiledClasses('ABase', 'A', 'WithTrait', 'WithTrait$Trait$FieldHelper', 'WithTrait$AllPluginsValidation', 'WithTrait$Trait$Helper')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. src/math/big/ratconv.go

    	neg, err := scanSign(r)
    	if err != nil {
    		return nil, false
    	}
    
    	// mantissa
    	var base int
    	var fcount int // fractional digit count; valid if <= 0
    	z.a.abs, base, fcount, err = z.a.abs.scan(r, 0, true)
    	if err != nil {
    		return nil, false
    	}
    
    	// exponent
    	var exp int64
    	var ebase int
    	exp, ebase, err = scanExponent(r, true, true)
    	if err != nil {
    		return nil, false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. src/debug/dwarf/entry.go

    					val = Offset(b.uint32())
    				}
    			}
    		case formRef1:
    			val = Offset(b.uint8()) + ubase
    		case formRef2:
    			val = Offset(b.uint16()) + ubase
    		case formRef4:
    			val = Offset(b.uint32()) + ubase
    		case formRef8:
    			val = Offset(b.uint64()) + ubase
    		case formRefUdata:
    			val = Offset(b.uint()) + ubase
    
    		// string
    		case formString:
    			val = b.string()
    		case formStrp, formLineStrp:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/noder/noder.go

    // we only protect against uses by cmd/go.
    func isCgoGeneratedFile(pos syntax.Pos) bool {
    	// We need the absolute file, independent of //line directives,
    	// so we call pos.Base().Pos().
    	return strings.HasPrefix(filepath.Base(trimFilename(pos.Base().Pos().Base())), "_cgo_")
    }
    
    // safeArg reports whether arg is a "safe" command-line argument,
    // meaning that when it appears in a command-line, it probably
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/memcombine.go

    		}
    		if x.Aux.(*types.Type).Size() != size {
    			// TODO: the constant source and consecutive load source cases
    			// do not need all the stores to be the same size.
    			return false
    		}
    		base, off := splitPtr(x.Args[0])
    		if base != rbase {
    			return false
    		}
    		a = append(a, StoreRecord{x, off})
    	}
    	// Before we sort, grab the memory arg the result should have.
    	mem := a[n-1].store.Args[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

    repositories {
        maven { url '${repo.uri}' }
    }
    configurations {
        base
        extendedWithClassifier.extendsFrom base
        extendedWithOther.extendsFrom base
        justDefault
        justClassifier
        rawBase
        rawExtended.extendsFrom rawBase
        cBase
        cExtended.extendsFrom cBase
    }
    dependencies {
        base 'org.gradle.test:external1:1.0'
        base 'org.gradle.test:external1:1.0:baseClassifier'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    func (m MemExtend) String() string {
    	Rbase := m.Base.String()
    	RIndex := m.Index.String()
    	if m.ShiftMustBeZero {
    		if m.Amount != 0 {
    			return fmt.Sprintf("[%s,%s,%s #0]", Rbase, RIndex, m.Extend.String())
    		} else {
    			if m.Extend != lsl {
    				return fmt.Sprintf("[%s,%s,%s]", Rbase, RIndex, m.Extend.String())
    			} else {
    				return fmt.Sprintf("[%s,%s]", Rbase, RIndex)
    			}
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top