Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for allfields (0.15 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionAnalyzer.kt

                    }
                }
                analyzedElements.addAll(nextInlineFunctions)
            }
        }
    
        /**
         * Returns the list of files that contain all reached inline functions.
         */
        fun allFiles(): List<KtFile> = analyzedElements.mapTo(mutableSetOf()) { it.containingKtFile }.toList()
    
        /**
         * Returns the set of [KtObjectDeclaration]s which are defined as an object literal in one of the reached inline functions.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

            // by the backend.
            val inlineAnalyzer = InlineFunctionAnalyzer(analysisContext, analyzeOnlyReifiedInlineFunctions = disableInline)
            inlineAnalyzer.analyze(file)
    
            val filesToCompile = inlineAnalyzer.allFiles().collectReachableInlineDelegatedPropertyAccessors()
            val bindingContext = analysisContext.analyze(filesToCompile, AnalysisMode.ALL_COMPILER_CHECKS)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MultiProjectJvmApplicationInitIntegrationTest.groovy

            then:
            targetDir.file(settingsFile).exists()
            !targetDir.file(buildFile).exists()
    
            def allFiles = getAllFiles(targetDir)
                .findAll { it.name !in ["gradle-wrapper.jar", "gradlew", "gradlew.bat"] }
    
            allFiles.each {
                assert !it.text.containsIgnoreCase("generated by")
            }
    
            when:
            succeeds "build"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            !result.reusedOutputOriginMetadata.present
    
            def allDirs = ["outDir1", "outDir2"].collect { file(it) }
            def allFiles = ["parent1/outFile", "parent2/outFile"].collect { file(it) }
            allDirs.each {
                assert it.isDirectory()
            }
            allFiles.each {
                assert it.parentFile.isDirectory()
                assert !it.exists()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishExternalVariantIntegrationTest.groovy

                    def outputFile = layout.buildDir.file("${name}-classpath.txt")
                    outputs.file(outputFile)
                    doLast {
                        def allFiles = classpath.files + artifacts.files
                        outputFile.get().getAsFile().text = allFiles*.name.join("\\n")
                    }
                }
            """
        }
    
        Set<String> readClasspath(String name = "") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

                    .addField(METADATA_FIELD)
                    .addField(CONTEXT_FIELD)
                    // actual content:
                    .addMethod(visitMethodInsnBuilder.build())
                    .addFields(typeFieldByOwner.values())
                    .addType(factoryClass);
        }
    
        private static TypeSpec generateFactoryClass(String className, BytecodeInterceptorType interceptorType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/gc.go

    	// package directory here.
    	var overlayNonGoRewrites string // rewrites for non-go files
    	hasCgoOverlay := false
    	if fsys.OverlayFile != "" {
    		for _, filename := range a.Package.AllFiles() {
    			path := filename
    			if !filepath.IsAbs(path) {
    				path = filepath.Join(a.Package.Dir, path)
    			}
    			base := filepath.Base(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    }
    
    // AllFiles returns the names of all the files considered for the package.
    // This is used for sanity and security checks, so we include all files,
    // even IgnoredGoFiles, because some subcommands consider them.
    // The go/build package filtered others out (like foo_wrongGOARCH.s)
    // and that's OK.
    func (p *Package) AllFiles() []string {
    	files := str.StringList(
    		p.GoFiles,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top