Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 643 for to_list (0.26 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

         *
         * @see getCallableSymbols
         */
        public fun getCallableSymbols(vararg names: Name): Sequence<KaCallableSymbol> =
            getCallableSymbols(names.toList())
    
        /**
         * Return a sequence of [KaClassifierSymbol] which current scope contain if classifier name matches [nameFilter]. The sequence includes:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/mdo/model-v3.vm

                   Stream.concat(getDelegate().get${cap}().stream(), Stream.of(${v}))
                            .collect(Collectors.toList())));
            #else
            update(getDelegate().with${cap}(
                   Stream.concat(getDelegate().get${cap}().stream(), Stream.of(${v}.getDelegate()))
                            .collect(Collectors.toList())));
            ${v}.childrenTracking = this::replace;
            #end
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. pkg/ptr/pointer.go

    	var empty T
    	if t != empty {
    		return t
    	}
    	return def
    }
    
    // Empty returns an empty T type
    func Empty[T any]() T {
    	var empty T
    	return empty
    }
    
    // ToList returns an empty list if t is nil, or a list with a single element
    func ToList[T any](t *T) []T {
    	if t == nil {
    		return nil
    	}
    	return []T{*t}
    }
    
    // TypeName returns the name of the type
    func TypeName[T any]() string {
    	var empty T
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 07 14:56:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/IsolatedGradleProjectInternalBuilder.java

    import org.gradle.tooling.provider.model.ParameterizedToolingModelBuilder;
    
    import java.util.List;
    import java.util.Objects;
    
    import static java.util.stream.Collectors.toList;
    import static org.gradle.plugins.ide.internal.tooling.ToolingModelBuilderSupport.buildFromTask;
    
    /**
     * Builds the {@link IsolatedGradleProjectInternal} that contains information about a project and its tasks.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 08 14:39:54 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/composite/DefaultBuildIncluder.java

            }).collect(Collectors.toList());
        }
    
        @Override
        public Collection<IncludedBuildState> getIncludedBuildsForPluginResolution() {
            BuildState thisBuild = gradle.getOwner();
            return buildRegistry.getIncludedBuilds().stream().filter(build ->
                build != thisBuild && !build.isImplicitBuild() && !build.isPluginBuild()
            ).collect(Collectors.toList());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:28 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  6. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

                    .filter(c -> c.isAnnotationPresent(Inject.class))
                    .collect(toList());
    
            List<Method> factoryMethods = Arrays.stream(cls.getDeclaredMethods())
                    .filter(method -> method.getReturnType() == cls && Modifier.isStatic(method.getModifiers()))
                    .collect(toList());
            List<Method> injectFactoryMethods = factoryMethods.stream()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslRuntimeGeneratedSources.java

    import org.gradle.kotlin.dsl.provider.KotlinScriptClassPathProvider;
    
    import javax.inject.Inject;
    import java.io.File;
    
    import static com.google.common.collect.Iterables.getOnlyElement;
    import static java.util.stream.Collectors.toList;
    
    /**
     * Extracts Kotlin DSL runtime generated sources.
     *
     * Current implementation extracts these from the wrapper's API jars.
     * This is not correct as it should do this with the built distribution instead.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 19 17:15:23 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                assertThat("Has errors", richReport.errors.map { it.message }, CoreMatchers.equalTo(errors.toList()))
            }
    
            fun assertHasWarnings(vararg warnings: String) {
                assertThat("Has warnings", richReport.warnings.map { it.message }, CoreMatchers.equalTo(warnings.toList()))
            }
    
            fun assertHasInformation(vararg information: String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. pkg/apis/core/install/install_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if version != "10" {
    		t.Errorf("unexpected version %v", version)
    	}
    
    	podList := internal.PodList{ListMeta: metav1.ListMeta{ResourceVersion: "10"}}
    	version, err = meta.NewAccessor().ResourceVersion(&podList)
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if version != "10" {
    		t.Errorf("unexpected version %v", version)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 27 06:11:15 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.kt

         *
         * @see getCallableSignatures
         */
        public fun getCallableSignatures(vararg names: Name): Sequence<KaCallableSignature<*>> = withValidityAssertion {
            getCallableSignatures(names.toList())
        }
    
        /**
         * Return a sequence of [KaClassifierSymbol] which current scope contain if classifier name matches [nameFilter]. The sequence includes:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top