Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,291 for enum1 (0.05 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

       * <p><b>Note:</b> if elements are non-null and won't be added or removed after this point, use
       * {@link ImmutableSet#of()} or {@link ImmutableSet#copyOf(Object[])} instead. If {@code E} is an
       * {@link Enum} type, use {@link EnumSet#of(Enum, Enum[])} instead. Otherwise, strongly consider
       * using a {@code LinkedHashSet} instead, at the cost of increased memory footprint, to get
       * deterministic iteration behavior.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ScriptChangeFixture.groovy

                    case ScriptType.INIT:
                        return "gradle/my.init"
                }
            }
        }
    
        enum ScriptDiscovery {
            DEFAULT,
            APPLIED
        }
    
        enum ScriptLanguage {
            GROOVY,
            KOTLIN
        }
    
        enum ScriptType {
            PROJECT,
            SETTINGS,
            INIT,
            BUILDSRC_PROJECT,
            BUILDSRC_SETTINGS,
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Sets.java

       * with an implementation specialized for enums. Unlike {@link ImmutableSet#toImmutableSet}, the
       * resulting set will iterate over elements in their enum definition order, not encounter order.
       *
       * @since 21.0
       */
      public static <E extends Enum<E>> Collector<E, ?, ImmutableSet<E>> toImmutableEnumSet() {
        return CollectCollectors.toImmutableEnumSet();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  4. tests/test_jsonable_encoder.py

    from collections import deque
    from dataclasses import dataclass
    from datetime import datetime, timezone
    from decimal import Decimal
    from enum import Enum
    from pathlib import PurePath, PurePosixPath, PureWindowsPath
    from typing import Optional
    
    import pytest
    from fastapi._compat import PYDANTIC_V2, Undefined
    from fastapi.encoders import jsonable_encoder
    from pydantic import BaseModel, Field, ValidationError
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/typeProvider/FirIdeNormalAnalysisSourceModuleHasCommonSubtypeTestGenerated.java

        runTest("analysis/analysis-api/testData/components/typeProvider/haveCommonSubtype/dataClasses.kt");
      }
    
      @Test
      @TestMetadata("enums.kt")
      public void testEnums() {
        runTest("analysis/analysis-api/testData/components/typeProvider/haveCommonSubtype/enums.kt");
      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/management/DependencyResolutionManagementInternal.java

        RulesModeInternal getConfiguredRulesMode();
    
        @Override
        Property<String> getDefaultProjectsExtensionName();
    
        List<VersionCatalogBuilder> getDependenciesModelBuilders();
    
        enum RepositoriesModeInternal {
            PREFER_PROJECT(true),
            PREFER_SETTINGS(false),
            FAIL_ON_PROJECT_REPOS(false);
    
            private final boolean useProjectRepositories;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/MavenDependencyType.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.external.model.maven;
    
    /**
     * The context for a dependency parsed from a Maven POM. Note that the order of this enum is important for the module metadata cache.
     */
    public enum MavenDependencyType {
        DEPENDENCY(false),
        RELOCATION(false),
        OPTIONAL_DEPENDENCY(true),
        DEPENDENCY_MANAGEMENT(true);
    
        public final boolean optional;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/JavadocMemberLevel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.external.javadoc;
    
    /**
     * This enum maps to the -public, -protected, -package and -private options of the javadoc executable.
     */
    public enum JavadocMemberLevel {
        /**
         * Shows only public classes and members.
         */
        PUBLIC,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/descriptor/MavenScope.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.external.descriptor;
    
    /**
     * A "scope" taken from a Maven POM. Note that the order of this enum is important for the module metadata cache.
     */
    public enum MavenScope {
        Compile("compile"),
        Runtime("runtime"),
        Provided("provided"),
        Test("test"),
        System("system");
    
        private final String lowerName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/DefaultTestLoggingTest.groovy

            logging.events == [] as Set
            logging.minGranularity == -1
            logging.maxGranularity == -1
            logging.stackTraceFilters == [TRUNCATE] as Set
        }
    
        def "allows events to be added as enum values"() {
            when:
            logging.events STARTED, SKIPPED
    
            then:
            logging.events == [STARTED, SKIPPED] as Set
        }
    
        def "allows events to be added as string values"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top