Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for qualified (0.17 sec)

  1. api/maven-api-di/src/main/java/org/apache/maven/api/di/Named.java

    import java.lang.annotation.Documented;
    import java.lang.annotation.Retention;
    
    import static java.lang.annotation.ElementType.*;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    @Qualifier
    @Retention(RUNTIME)
    @Documented
    public @interface Named {
        String value() default "";
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.28.md

    - `kubeadm`: will now throw warnings instead of errors for deprecated feature gates. ([#118270](https://github.com/kubernetes/kubernetes/pull/118270), [@pacoxu](https://github.com/pacoxu))
    - `kubectl events --for` will also support fully qualified names such as replicasets.apps,
      etc. ([#117034](https://github.com/kubernetes/kubernetes/pull/117034), [@ardaguclu](https://github.com/ardaguclu))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 20:44:48 GMT 2024
    - 385.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

                val unresolvedName = when (val diagnostic = errorType?.diagnostic) {
                    is ConeUnresolvedTypeQualifierError -> diagnostic.qualifier
                    is ConeUnresolvedNameError -> diagnostic.qualifier
                    else -> null
                }
                qualifierParts += unresolvedName
                if (errorType != null && expression is FirPropertyAccessExpression) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

    import gradlebuild.basics.BuildParams.BUILD_SERVER_URL
    import gradlebuild.basics.BuildParams.BUILD_TIMESTAMP
    import gradlebuild.basics.BuildParams.BUILD_VCS_NUMBER
    import gradlebuild.basics.BuildParams.BUILD_VERSION_QUALIFIER
    import gradlebuild.basics.BuildParams.BUNDLE_GROOVY_4
    import gradlebuild.basics.BuildParams.CI_ENVIRONMENT_VARIABLE
    import gradlebuild.basics.BuildParams.DEFAULT_PERFORMANCE_BASELINES
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Jan 01 01:23:31 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    - The Pod API field `.spec.schedulingGates[*].name` now requires qualified names (like `example.com/mygate`), matching validation for names of `.spec.readinessGates[*].name`. Any uses of the alpha scheduling gate feature prior to 1.27 that do not match that validation must be renamed or deleted before upgrading to 1.27....
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 15:20:21 GMT 2024
    - 434.3K bytes
    - Viewed (3)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

                if (snapshot.getTimestamp() != null && snapshot.getBuildNumber() > 0) {
                    String qualifier = snapshot.getTimestamp() + '-' + snapshot.getBuildNumber();
                    version = version.substring(0, version.length() - SNAPSHOT.length()) + qualifier;
                }
                merge(SNAPSHOT, infos, versioning.getLastUpdated(), version, repository);
            }
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  7. manifests/charts/base/crds/crd-all.gen.yaml

                                  minimum: 0
                                  type: integer
                                service:
                                  description: The fully qualified service name for this
                                    cluster.
                                  type: string
                                subset:
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/callResolver/Fe10IdeNormalAnalysisSourceModuleResolveCallTestGenerated.java

      }
    
      @Test
      @TestMetadata("javaPropertyGetter_unqualified.kt")
      public void testJavaPropertyGetter_unqualified() {
        runTest("analysis/analysis-api/testData/components/callResolver/resolveCall/javaPropertyGetter_unqualified.kt");
      }
    
      @Test
      @TestMetadata("javaPropertyNestedGetter.kt")
      public void testJavaPropertyNestedGetter() {
    Java
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Apr 16 19:28:19 GMT 2024
    - 53.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/KtFe10FunctionalType.kt

        override val nullability: KtTypeNullability
            get() = withValidityAssertion { fe10Type.ktNullability }
    
        override val qualifiers: List<KtClassTypeQualifier.KtResolvedClassTypeQualifier>
            get() = withValidityAssertion {
                KtFe10JvmTypeMapperContext.getNestedType(fe10Type).allInnerTypes.map { innerType ->
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  10. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

      }
    
      return IdnaMappingTableData(
        sections = sectionIndexBuffer.readUtf8(),
        ranges = rangesBuffer.readUtf8(),
        mappings = mappingsBuffer.toString(),
      )
    }
    
    /**
     * If [mapping] qualifies to be encoded as [MappedRange.InlineDelta] return new instance, otherwise null.
     * An [MappedRange.InlineDelta] must be a mapping from a single code-point to a single code-point with a difference
     * that can be represented in 2^18-1.
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 8.2K bytes
    - Viewed (0)
Back to top