Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for buildList (0.17 sec)

  1. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

        paths: Collection<Path>,
    ): List<T> {
        val fs = kotlinCoreProjectEnvironment.environment.localFileSystem
        val psiManager = PsiManager.getInstance(kotlinCoreProjectEnvironment.project)
        return buildList {
            for (path in paths) {
                val vFile = fs.findFileByNioFile(path.toAbsolutePath()) ?: continue
                val psiFileSystemItem =
                    if (vFile.isDirectory)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10JvmTypeMapperContext.kt

                }
            }
        }
    
        class NestedType(val root: PossiblyInnerType, val nested: List<PossiblyInnerType>) {
            val allInnerTypes: List<PossiblyInnerType>
                get() = buildList {
                    add(root)
                    addAll(nested)
                }
        }
    
        override val typeContext = KaFe10TypeSystemCommonBackendContextForTypeMapping(resolveSession)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/EvaluationFailureMessageGenerator.kt

                        }
                    }
                }
            }
        }
    
        private
        fun formatFailuresInLanguageTree(failures: List<SingleFailureResult>): List<String> = buildList {
            failures.forEach { failure ->
                when (failure) {
                    is UnsupportedConstruct -> add(formatUnsupportedConstruct(failure))
                    is ParsingError -> add(formatParsingError(failure))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompletionCandidateChecker.kt

                ?: errorWithAttachment("Cannot find enclosing declaration for ${nameExpression::class}") {
                    withPsiEntry("fakeNameExpression", nameExpression)
                }
    
            return buildList {
                addAll(towerDataContext.implicitReceiverStack)
                for (towerDataElement in towerDataContext.towerDataElements) {
                    addAll(towerDataElement.contextReceiverGroup.orEmpty())
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

            } finally {
                state.destroy()
            }
        }
    
        private fun computeErrors(diagnostics: Diagnostics, allowedErrorFilter: (KaDiagnostic) -> Boolean): List<KaDiagnostic> {
            return buildList {
                for (diagnostic in diagnostics.all()) {
                    if (diagnostic.severity == Severity.ERROR) {
                        val ktDiagnostic = KaFe10Diagnostic(diagnostic, token)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/list.go

    					Path:  arg,
    					Error: modinfoError(arg, "", errors.New("not a known dependency")),
    				})
    			}
    			continue
    		}
    
    		matched := false
    		for _, m := range mg.BuildList() {
    			if match(m.Path) {
    				matched = true
    				if !matchedModule[m] {
    					matchedModule[m] = true
    					mods = append(mods, moduleInfo(ctx, rs, m, mode, reuse))
    				}
    			}
    		}
    		if !matched {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. maven-model/src/test/java/org/apache/maven/model/BuildTest.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@code Build}.
     *
     */
    class BuildTest {
    
        @Test
        void testHashCodeNullSafe() {
            new Build().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new Build().equals(null));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. test/typeparam/issue50121b.dir/d.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package d
    
    import (
    	"./c"
    )
    
    func BuildInt() int {
    	return c.BuildInt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 235 bytes
    - Viewed (0)
  9. test/typeparam/issue50121.dir/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"./a"
    )
    
    //go:noinline
    func BuildInt() int {
    	return a.BuildInt()
    }
    
    func main() {
    	BuildInt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 281 bytes
    - Viewed (0)
  10. test/typeparam/issue50552.dir/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"./a"
    	"fmt"
    )
    
    func BuildInt() int {
    	return a.BuildInt()
    }
    
    func main() {
    	if got, want := BuildInt(), 0; got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 362 bytes
    - Viewed (0)
Back to top