Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,127 for list1 (0.03 sec)

  1. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplier.java

    import com.google.common.collect.Lists;
    import net.rubygrapefruit.platform.MissingRegistryEntryException;
    import net.rubygrapefruit.platform.WindowsRegistry;
    import org.gradle.internal.nativeintegration.NativeIntegrationUnavailableException;
    import org.gradle.internal.os.OperatingSystem;
    
    import java.io.File;
    import java.util.Collections;
    import java.util.List;
    import java.util.Set;
    import java.util.stream.Collectors;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/processenvironment/AbstractProcessEnvironment.java

            // need to take copy to prevent ConcurrentModificationException
            List<String> keysToRemove = Lists.newArrayList(Sets.difference(System.getenv().keySet(), source.keySet()));
            for (String key : keysToRemove) {
                removeEnvironmentVariable(key);
            }
            for (Map.Entry<String, String> entry : source.entrySet()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MutableModuleSources.java

     */
    package org.gradle.internal.component.model;
    
    import com.google.common.collect.Lists;
    import org.gradle.internal.Cast;
    
    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Objects;
    import java.util.Optional;
    import java.util.function.Consumer;
    
    public class MutableModuleSources implements ModuleSources {
        private List<ModuleSource> moduleSources;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/listers/cr/v1/example.go

    	"k8s.io/client-go/tools/cache"
    )
    
    // ExampleLister helps list Examples.
    // All objects returned here must be treated as read-only.
    type ExampleLister interface {
    	// List lists all Examples in the indexer.
    	// Objects returned here must be treated as read-only.
    	List(selector labels.Selector) (ret []*v1.Example, err error)
    	// Examples returns an object that can list and get Examples.
    	Examples(namespace string) ExampleNamespaceLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 11:15:04 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    // represent type lists.  In particular, TypesN<T1, T2, ..., TN>
    // represents a type list with N types (T1, T2, ..., and TN) in it.
    // Except for Types0, every struct in the family has two member types:
    // Head for the first type in the list, and Tail for the rest of the
    // list.
    
    // The empty type list.
    struct Types0 {};
    
    // Type lists of length 1, 2, 3, and so on.
    
    template <typename T1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractor.java

    import com.google.common.collect.Iterables;
    import com.google.common.collect.Lists;
    import org.gradle.model.internal.manage.schema.ModelSchema;
    import org.gradle.model.internal.manage.schema.cache.ModelSchemaCache;
    import org.gradle.model.internal.type.ModelType;
    
    import java.util.ArrayDeque;
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    import java.util.Queue;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/body-nested-models.md

        ```
    
    This will make `tags` be a list, although it doesn't declare the type of the elements of the list.
    
    ## List fields with type parameter
    
    But Python has a specific way to declare lists with internal types, or "type parameters":
    
    ### Import typing's `List`
    
    In Python 3.9 and above you can use the standard `list` to declare these type annotations as we'll see below. 💡
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/SimpleGeneratedJavaClassCompiler.java

            }
            formatter.endChildren();
            throw new GeneratedClassCompilationException(formatter.toString());
        }
    
        private static List<File> outputSourceFilesToSourceDir(File srcDir, List<ClassSource> classes) throws IOException {
            List<File> filesToCompile = Lists.newArrayListWithCapacity(classes.size());
            for (ClassSource classSource : classes) {
                String packageName = classSource.getPackageName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/cache/MultiWeakClassSet.java

            public Object apply(WeakReference<Class<?>> input) {
                return input.get();
            }
        };
    
        private final List<WeakReference<Class<?>>> references;
        private final int hash;
    
        MultiWeakClassSet(List<Class<?>> classes) {
            this.references = Lists.newArrayList(Iterables.transform(classes, TO_WEAK_REF));
            this.hash = classes.hashCode();
        }
    
        @Override
        public int hashCode() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/VirtualPlatformState.java

    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Set;
    
    public class VirtualPlatformState {
        private final Comparator<String> vC;
        private final ModuleResolveState platformModule;
        private final ResolveOptimizations resolveOptimizations;
    
        private final Set<ModuleResolveState> participatingModules = new LinkedHashSet<>();
        private final List<EdgeState> orphanEdges = Lists.newArrayListWithExpectedSize(2);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top