Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 232 for SELECTION (0.25 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	metav1.TypeMeta `json:",inline"`
    
    	// connectionServices contains a list of egress selection client configurations
    	EgressSelections []EgressSelection `json:"egressSelections"`
    }
    
    // EgressSelection provides the configuration for a single egress selection client.
    type EgressSelection struct {
    	// name is the name of the egress selection.
    	// Currently supported values are "controlplane", "master", "etcd" and "cluster"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/recv.go

    // For all other types it is the identity function.
    // It does not look at underlying types.
    // The result may be an alias.
    //
    // Use this function to strip off the optional pointer on a receiver
    // in a field or method selection, without losing the named type
    // (which is needed to compute the method set).
    //
    // See also [typeparams.MustDeref], which removes one level of
    // indirection from the type, regardless of named types (analogous to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	metav1.TypeMeta `json:",inline"`
    
    	// connectionServices contains a list of egress selection client configurations
    	EgressSelections []EgressSelection `json:"egressSelections"`
    }
    
    // EgressSelection provides the configuration for a single egress selection client.
    type EgressSelection struct {
    	// name is the name of the egress selection.
    	// Currently supported values are "controlplane", "master", "etcd" and "cluster"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K 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