Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for annotationsValue (1.99 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml

    apiVersion: v1
    kind: PodStatusResult
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json

        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
        "labels": {
          "labelsKey": "labelsValue"
        },
        "annotations": {
          "annotationsKey": "annotationsValue"
        },
        "ownerReferences": [
          {
            "apiVersion": "apiVersionValue",
            "kind": "kindValue",
            "name": "nameValue",
            "uid": "uidValue",
            "controller": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValue.kt

    public class KaAnnotationApplicationValue @KaAnalysisApiInternals constructor(
        annotationValue: KaAnnotation,
        token: KaLifetimeToken
    ) : KaAnnotationValue(token) {
        public val annotationValue: KaAnnotation = annotationValue
            get() = withValidityAssertion { field }
    
        override val sourcePsi: KtElement?
            get() = withValidityAssertion { annotationValue.psi }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtInitializerValue.kt

     * Initializer of property of annotation, which can not be which cannot be represented as Kotlin const value,
     *   but can be represented as [KaAnnotationValue]
     */
    public class KaConstantValueForAnnotation(
        public val annotationValue: KaAnnotationValue,
        override val initializerPsi: KtExpression?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValueRenderer.kt

            append(value.callableId?.asSingleFqName()?.asString())
        }
    
        private fun StringBuilder.renderAnnotationConstantValue(application: KaAnnotationApplicationValue) {
            renderAnnotationApplication(application.annotationValue)
        }
    
        private fun StringBuilder.renderAnnotationApplication(value: KaAnnotation) {
            append(value.classId)
            if (value.arguments.isNotEmpty()) {
                append("(")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top