Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 192 for Reflection (0.2 sec)

  1. tests/go.mod

    	github.com/jackc/pgpassfile v1.0.0 // indirect
    	github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
    	github.com/jackc/pgx/v5 v5.6.0 // indirect
    	github.com/jinzhu/inflection v1.0.0 // indirect
    	github.com/kr/text v0.2.0 // indirect
    	github.com/mattn/go-sqlite3 v1.14.22 // indirect
    	github.com/microsoft/go-mssqldb v1.7.2 // indirect
    	github.com/pmezard/go-difflib v1.0.0 // indirect
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

                    }
                }
            }
        }
    }
    
    public abstract class KaReferenceShortener : KaSessionComponent() {
        public abstract fun collectShortenings(
            file: KtFile,
            selection: TextRange,
            shortenOptions: ShortenOptions,
            classShortenStrategy: (KaClassLikeSymbol) -> ShortenStrategy,
            callableShortenStrategy: (KaCallableSymbol) -> ShortenStrategy
        ): ShortenCommand
    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphSelectionCandidates.java

         * component does not support attribute matching.
         */
        List<? extends VariantGraphResolveState> getVariantsForAttributeMatching();
    
        /**
         * Returns the variant to use when attribute-based variant selection is not enabled.
         */
        @Nullable
        default VariantGraphResolveState getLegacyVariant(ResolutionFailureHandler failureHandler) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ReferenceShortener.kt

    ) : KaReferenceShortener(), KaFe10SessionComponent {
        override val token: KaLifetimeToken
            get() = analysisSession.token
    
        override fun collectShortenings(
            file: KtFile,
            selection: TextRange,
            shortenOptions: ShortenOptions,
            classShortenStrategy: (KaClassLikeSymbol) -> ShortenStrategy,
            callableShortenStrategy: (KaCallableSymbol) -> ShortenStrategy,
        ): ShortenCommand {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/ResolvedComponentResultInternal.java

         */
        @Nullable
        String getRepositoryId();
    
        /**
         * Returns all the variants of this component available for selection. Does not include variants that cannot be consumed, which means this
         * may not include all the variants returned by {@link #getVariants()}.
         *
         * <p>
         * Note: for performance reasons,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/SelectOptionPromptEventTest.groovy

            def event = new SelectOptionPromptEvent(123, "question", ["11", "12", "13"], 1)
    
            assert event.prompt == TextUtil.toPlatformLineSeparators("""question:
      1: 11
      2: 12
      3: 13
    Enter selection (default: 12) [1..3] """)
        }
    
        def "accepts valid input"() {
            def event = new SelectOptionPromptEvent(123, "question", ["1", "2", "3", "4"], 1)
    
            expect:
            def result = event.convert(input)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/ConfigurationMetadataFactory.java

         *
         * <p>This includes all consumable configurations with and without attributes. Configurations visited
         * by this method may not be suitable for selection via attribute matching.</p>
         */
        void visitConsumableConfigurations(Consumer<LocalConfigurationGraphResolveMetadata> visitor);
    
        /**
         * Invalidates any caching used for producing configuration metadata.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/SelectOptionPromptEvent.java

                builder.append(i + 1);
                builder.append(": ");
                builder.append(options.get(i));
                builder.append(TextUtil.getPlatformLineSeparator());
            }
            builder.append("Enter selection (default: ");
            builder.append(options.get(defaultOption));
            builder.append(") [1..");
            builder.append(options.size());
            builder.append("] ");
            return builder.toString();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    [[sec:custom_status_scheme]]
    == Modifying metadata on the component level for version selection based on status
    
    Gradle and Gradle Module Metadata also allow attributes to be set on the whole component instead of a single variant.
    Each of these attributes carries special semantics as they influence version selection which is done _before_ variant selection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/Choice.java

     *
     * @param <T> The type of the options of this choice.
     */
    public interface Choice<T> {
        /**
         * Specifies the option to present to the user as the default selection, and the option to use when not connected to a console.
         * Both of these values default to the first option.
         *
         * <p>Replaces any value set using {@link #whenNotConnected(Object)}.
         *
         * @return this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top