Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 559 for Selections (0.2 sec)

  1. 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)
  2. src/cmd/go/internal/workcmd/sync.go

    workspace's modules
    
    The workspace's build list is the set of versions of all the
    (transitive) dependency modules used to do builds in the workspace. go
    work sync generates that build list using the Minimal Version Selection
    algorithm, and then syncs those versions back to each of modules
    specified in the workspace (with use directives).
    
    The syncing is done by sequentially upgrading each of the dependency
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/UnknownArtifactSelectionFailure.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.resolution.failure.type;
    
    /**
     * A {@link ResolutionFailure} that represents the an unknown, catch-all failure that occurred during variant selection.
     */
    public final class UnknownArtifactSelectionFailure extends AbstractVariantSelectionFailure {
        private final Exception cause;
    
        public UnknownArtifactSelectionFailure(String requestedName, Exception cause) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/DoubleInetAddressDns.kt

     * limitations under the License.
     */
    package okhttp3.internal
    
    import java.net.InetAddress
    import okhttp3.Dns
    
    /**
     * A network that always resolves two IP addresses per host. Use this when testing route selection
     * fallbacks to guarantee that a fallback address is available.
     */
    class DoubleInetAddressDns : Dns {
      override fun lookup(hostname: String): List<InetAddress> {
        val addresses = Dns.SYSTEM.lookup(hostname)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 10:26:25 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/TestLauncherTaskExecutionCrossVersionSpec.groovy

    import org.gradle.tooling.TestLauncher
    
    @ToolingApiVersion(">=7.6")
    @TargetGradleVersion(">=8.4")
    class TestLauncherTaskExecutionCrossVersionSpec extends ToolingApiSpecification {
    
        def "can run tasks without test selection"() {
            setup:
            buildFile << """
                tasks.register('foo') {
                    doLast {
                        System.out.println 'foo'
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/leaselock.go

    	LeaseMeta  metav1.ObjectMeta
    	Client     coordinationv1client.LeasesGetter
    	LockConfig ResourceLockConfig
    	lease      *coordinationv1.Lease
    }
    
    // Get returns the election record from a Lease spec
    func (ll *LeaseLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error) {
    	var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 04 16:02:26 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. samples/security/spire/README.md

      $ kubectl delete clusterrolebinding spire-server-cluster-role-binding spire-agent-cluster-role-binding manager-role-binding
      $ kubectl delete role spire-server-role leader-election-role
      $ kubectl delete rolebinding spire-server-role-binding leader-election-role-binding
      $ kubectl delete ValidatingWebhookConfiguration spire-controller-manager-webhook
      $ kubectl delete csidriver csi.spiffe.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelectionResult.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.model;
    
    import java.util.List;
    
    /**
     * This class is used to return the results of variant selection when building a dependency graph
     * using the {@link GraphVariantSelector}.
     */
    public class GraphVariantSelectionResult {
        private final List<? extends VariantGraphResolveState> variants;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. prow/config/default.yaml

        metadata:
          name: config
        etcd:
          local:
            # Run etcd in a tmpfs (in RAM) for performance improvements
            dataDir: /tmp/kind-cluster-etcd
        # We run single node, drop leader election to reduce overhead
        controllerManager:
          extraArgs:
            leader-elect: "false"
        scheduler:
          extraArgs:
            leader-elect: "false"
        apiServer:
          extraArgs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 19:17:14 UTC 2023
    - 1002 bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencySubstitutions.java

        ComponentSelector project(String path);
    
        /**
         * Transforms the supplied selector into a specific variant selector.
         *
         * @param selector the origin selector
         * @param detailsAction the variant selection details configuration
         * @since 6.6
         */
        ComponentSelector variant(ComponentSelector selector, Action<? super VariantSelectionDetails> detailsAction);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 24 20:12:31 UTC 2022
    - 5.8K bytes
    - Viewed (0)
Back to top