Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 372 for Lists (0.08 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractor.java

    package org.gradle.model.internal.manage.schema.extract;
    
    import com.google.common.base.Predicate;
    import com.google.common.collect.ImmutableList;
    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;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonRegistryUnavailableExpirationStrategy.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.server;
    
    import com.google.common.base.Function;
    import com.google.common.collect.Lists;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.launcher.daemon.context.DaemonContext;
    import org.gradle.launcher.daemon.registry.DaemonDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/GitIgnoreGenerator.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import com.google.common.collect.Lists;
    import com.google.common.collect.Sets;
    import org.gradle.api.UncheckedIOException;
    
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileReader;
    import java.io.FileWriter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. 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)
  5. android/guava-tests/test/com/google/common/io/CharSourceTester.java

     */
    
    package com.google.common.io;
    
    import com.google.common.base.Charsets;
    import com.google.common.base.Optional;
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.Lists;
    import com.google.common.io.SourceSinkFactory.ByteSourceFactory;
    import com.google.common.io.SourceSinkFactory.CharSourceFactory;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.Reader;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/MemoryUtilTest.java

    import org.apache.commons.io.FileUtils;
    import org.codelibs.core.collection.Maps;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.sai.internal.ir.debug.ObjectSizeCalculator;
    
    import com.google.common.collect.Lists;
    
    public class MemoryUtilTest extends UnitFessTestCase {
    
        public void test_byteCountToDisplaySize() {
            assertEquals("0bytes", MemoryUtil.byteCountToDisplaySize(0L));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/DefaultNodeInitializerRegistry.java

    import com.google.common.cache.CacheBuilder;
    import com.google.common.cache.CacheLoader;
    import com.google.common.cache.LoadingCache;
    import com.google.common.collect.ImmutableSortedSet;
    import com.google.common.collect.Lists;
    import com.google.common.util.concurrent.UncheckedExecutionException;
    import org.gradle.internal.UncheckedException;
    import org.gradle.model.internal.manage.binding.StructBindingsStore;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. src/go/printer/testdata/generics.golden

    	var _ []T[P]
    	_ = []T[P]{}
    }
    
    // type constraint literals with elided interfaces
    func _[P ~int, Q int | string]()	{}
    func _[P struct{ f int }, Q *P]()	{}
    
    // various potentially ambiguous type parameter lists (issue #49482)
    type _[P *T,] struct{}
    type _[P T | T] struct{}
    type _[P T | T | T | T] struct{}
    type _[P *T, _ any] struct{}
    type _[P *T,] struct{}
    type _[P *T, _ any] struct{}
    type _[P T] struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 16:18:34 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue39711.go

    // (Check types after interfaces have been completed.)
    type _ interface {
    	// TODO(rfindley) Once we have full type sets we can enable this again.
    	// Fow now we don't permit interfaces in term lists.
    	// type interface{ Error() string }, interface{ String() string }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 501 bytes
    - Viewed (0)
Back to top