Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for genstub (0.26 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    	"strconv"
    	"strings"
    )
    
    // The build configuration supports PC-relative instructions and relocations (limited to tested targets).
    var hasPCrel = buildcfg.GOPPC64 >= 10 && buildcfg.GOOS == "linux"
    
    const (
    	// For genstub, the type of stub required by the caller.
    	STUB_TOC = iota
    	STUB_PCREL
    )
    
    var stubStrs = []string{
    	STUB_TOC:   "_callstub_toc",
    	STUB_PCREL: "_callstub_pcrel",
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. src/net/http/routing_index_test.go

    func genRepeat(n int, g generator) generator {
    	if n == 0 {
    		return genConst("")
    	}
    	return genConcat(g, genRepeat(n-1, g))
    }
    
    // genStar (named after the Kleene star) generates 0, 1, 2, ..., max
    // copies of the strings of g.
    func genStar(max int, g generator) generator {
    	return func(collect func(string)) {
    		for i := 0; i <= max; i++ {
    			genRepeat(i, g)(collect)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

            val fakeFile = object : KtFile(KtClassFileViewProvider(psiManager, fileContent.file), isCompiled = true) {
                override fun getStub() = ktFileStub
    
                override fun isPhysical() = false
            }
            ktFileStub.psi = fakeFile
            createdFakeKtFiles.add(fakeFile)
            return ktFileStub
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

                    }
    
                    public SubDependencies getSub() {
                        return sub;
                    }
    
                    @Configuring
                    public void sub(Action<? super SubDependencies> configure) {
                        configure.execute(getSub());
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	return false
    }
    
    // depsuffix records the allowed suffixes for source files.
    var depsuffix = []string{
    	".s",
    	".go",
    }
    
    // gentab records how to generate some trivial files.
    // Files listed here should also be listed in ../distpack/pack.go's srcArch.Remove list.
    var gentab = []struct {
    	pkg  string // Relative to $GOROOT/src
    	file string
    	gen  func(dir, file string)
    }{
    	{"go/build", "zcgo.go", mkzcgo},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/cmd/distpack/pack.go

    	// See ../dist/build.go's deptab.
    	srcArch := base.Clone()
    	srcArch.Remove(
    		"bin/**",
    		"pkg/**",
    
    		// Generated during cmd/dist. See ../dist/build.go:/gentab.
    		"src/cmd/go/internal/cfg/zdefaultcc.go",
    		"src/go/build/zcgo.go",
    		"src/runtime/internal/sys/zversion.go",
    		"src/time/tzdata/zzipdata.go",
    
    		// Generated during cmd/dist by bootstrapBuildTools.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/reflect/type.go

    					}
    
    					fnStub := resolveReflectText(unsafe.Pointer(abi.FuncPCABIInternal(embeddedIfaceMethStub)))
    					methods = append(methods, abi.Method{
    						Name: resolveReflectName(ift.nameOff(m.Name)),
    						Mtyp: resolveReflectType(ift.typeOff(m.Typ)),
    						Ifn:  fnStub,
    						Tfn:  fnStub,
    					})
    				}
    			case Pointer:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. hack/tools/go.sum

    github.com/polyfloyd/go-errorlint v1.4.8 h1:jiEjKDH33ouFktyez7sckv6pHWif9B7SuS8cutDXFHw=
    github.com/polyfloyd/go-errorlint v1.4.8/go.mod h1:NNCxFcFjZcw3xNjVdCchERkEM6Oz7wta2XJVxRftwO4=
    github.com/prashantv/gostub v1.1.0 h1:BTyx3RfQjRHnUWaGF9oQos79AlQ5k8WNktv7VGvVH4g=
    github.com/prashantv/gostub v1.1.0/go.mod h1:A5zLQHz7ieHGG7is6LLXLz7I8+3LZzsrV0P1IAHhP5U=
    github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
Back to top