Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 554 for SELECTION (0.16 sec)

  1. releasenotes/notes/36434.yaml

    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/36462
    
    releaseNotes:
      - |
        **Fixed** an issue where specifying conflict protocols for a service target port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 20 19:01:33 UTC 2021
    - 287 bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

    private inline fun <reified T : KtElement> KtFile.findSmallestElementOfTypeContainingSelection(selection: TextRange): T? =
        findElementAt(selection.startOffset)
            ?.parentsOfType<T>(withSelf = true)
            ?.firstOrNull { selection in it.textRange }
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

            expect:
            exception.message == toPlatformLineSeparators("""Could not find any version that matches org:a:1.+.
    Versions that do not match:
      - 0.9
      - 0.10
    Versions rejected by component selection rules:
      - 1.1
      - 1.2
    Searched in the following locations:
      - http://somewhere
      - file:/somewhere""")
        }
    
        def "formats message for selector and locations when versions attempted and all rejected"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/common-body.adoc.template

      2: application
      3: library
      4: Gradle plugin
    Enter selection (default: basic) [1..4] ${componentTypeIndex.raw}
    
    Select implementation language:
      1: C++
      2: Groovy
      3: Java
      4: Kotlin
      5: Scala
      6: Swift
    Enter selection (default: Java) [1..6] ${languageIndex.raw}
    
    Select build script DSL:
      1: Groovy
      2: Kotlin
    Enter selection (default: Groovy) [1..2] 1
    ${testFrameworkChoice.raw}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/inspectingDependencies-dependencyReason/tests/dependencyReasonReport.out

        | org.gradle.dependency.bundling |          | external     |
        | org.gradle.jvm.environment     |          | standard-jvm |
        | org.gradle.jvm.version         |          | 11           |
       Selection reasons:
          - Was requested: we require a JDK 9 compatible bytecode generator
    
    org.ow2.asm:asm:7.1
    \--- compileClasspath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 846 bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultPlanExecutorTest.groovy

            1 * workerLease.tryLock() >> true
            1 * workSource.executionState() >> WorkSource.State.MaybeWorkReadyToStart
            1 * workSource.selectNext() >> WorkSource.Selection.of(node)
            1 * worker.execute(node)
            1 * workSource.finishedExecuting(node, null)
    
            then:
            1 * cancellationHandler.isCancellationRequested() >> false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ResolverResults.java

         * </ul>
         */
        interface LegacyResolverResults {
    
            /**
             * Returns the artifacts visited during graph resolution, filterable by the legacy selection mechanism.
             */
            LegacyVisitedArtifactSet getLegacyVisitedArtifactSet();
    
            /**
             * Get a legacy {@link ResolvedConfiguration}.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 03:03:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation' : 'Validation',
            'compilation' : 'Compilation',
            'deprecation' : 'Deprecation',
            'compilation:java' : 'Java compilation',
            'task-selection' : 'Task selection',
            'dependency-version-catalog' : 'Version catalog',
            'compilation:groovy-dsl' : 'Groovy DSL script compilation',
            'validation:property-validation' : 'Property validation problems',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DependencyMetadata.java

        /**
         * Select the matching variants for this dependency from the given target component.
         *
         * @implSpec An instance of {@link ResolutionFailureHandler} is supplied to this method, and
         * any failures during selection should be routed through that handler. This is done to keep all failure handling done
         * in a consistent manner.  See {@link GraphVariantSelector} for comparison.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 11:43:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

        /**
         * Returns the public view of all variants of this component that are available for variant selection, either during graph resolution or artifact resolution.
         */
        List<ResolvedVariantResult> getAllSelectableVariantResults();
    
        /**
         * Returns the candidates for variant selection during graph resolution.
         */
        GraphSelectionCandidates getCandidatesForGraphVariantSelection();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top