Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for genstub (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
Back to top