Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,517 for colist (0.22 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Emitter.kt

            else -> emptyList()
        }
    }
    
    
    private
    fun importsRequiredBy(vararg candidateTypes: TypeAccessibility): List<String> =
        importsRequiredBy(candidateTypes.asList())
    
    
    internal
    sealed class Accessor {
    
        data class ForConfiguration(val config: ConfigurationEntry<AccessorNameSpec>) : Accessor()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovyRuntime.java

    import org.gradle.util.internal.VersionNumber;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Set;
    
    import static java.util.stream.Collectors.toList;
    import static java.util.stream.Collectors.toSet;
    import static java.util.stream.StreamSupport.stream;
    import static org.gradle.util.internal.GroovyDependencyUtil.groovyModuleDependency;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

                }).collect(Collectors.toList()));
            }
            List<String> argumentList = new ArrayList<>();
            if (!modulePath.isEmpty()) {
                argumentList.addAll(Arrays.asList("--module-path", Joiner.on(File.pathSeparator).join(modulePath), "--add-modules", "ALL-MODULE-PATH"));
            }
            if (!classpath.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ConventionAwareHelperTest.java

        @Test public void canOverwriteProperties() {
            final List conventionList1 = toList("a");
            conventionAware.map("list1", new Callable<Object>() {
                public Object call() {
                    return conventionList1;
                }
            });
            assertSame(conventionList1, conventionAware.getConventionValue(null, "list1", false));
            List expectedList1 = toList("b");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            given:
            container.add(a)
    
            when:
            container.add(a)
    
            then:
            toList(container) == [a]
    
            when:
            container.addAll([a, b])
    
            then:
            toList(container) == [a, b]
        }
    
        def "element added using provider is not realized when added"() {
            containerAllowsExternalProviders()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                if (res2 != null) {
                    List<Supplier<Object>> list = res2.stream().map(this::compile).collect(Collectors.toList());
                    //noinspection unchecked
                    return () -> (Q) list(list);
                }
            }
            if (key.getRawType() == Map.class) {
                Key<?> k = key.getTypeParameter(0);
                Key<Object> v = key.getTypeParameter(1);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/list.go

    		// TODO(#61605): The extra ListU clause fixes a problem with Go 1.21rc3
    		// where "go mod tidy" and "go list -m -u all" fight over whether the go.sum
    		// should be considered up-to-date. The fix for now is to always treat the
    		// go.sum as up-to-date during list -m -u. Probably the right fix is more targeted,
    		// but in general list -u is looking up other checksums in the checksum database
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. guava/javadoc-link/j2objc-annotations/package-list

    cpovirk <******@****.***> 1509125686 -0700
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 27 17:43:17 UTC 2017
    - 30 bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/list.go

    Meng Zhuo <******@****.***> 1687231016 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 959 bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/list.txt

    -- input --
    Text.
    - Not a list.
     - Here is the list.
         • Using multiple bullets.
              * Indentation does not matter.
         + Lots of bullets.
    More text.
    
    -- gofmt --
    Text.
    - Not a list.
      - Here is the list.
      - Using multiple bullets.
      - Indentation does not matter.
      - Lots of bullets.
    
    More text.
    
    -- text --
    Text. - Not a list.
      - Here is the list.
      - Using multiple bullets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 776 bytes
    - Viewed (0)
Back to top