Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for unreadable (0.35 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
              "description": "The last time this condition was updated."
            },
            "message": {
              "description": "A human readable message indicating details about the transition.",
              "type": "string"
            },
            "reason": {
              "description": "The reason for the condition's last transition.",
              "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

                "type": "string"
              },
              "message": {
                "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
                "type": "string"
              },
              "reason": {
                "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

                "type": "string"
              },
              "message": {
                "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
                "type": "string"
              },
              "reason": {
                "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "message": {
                "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
                "type": "string"
              },
              "reason": {
                "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "string"
              },
              "message": {
                "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
                "type": "string"
              },
              "reason": {
                "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    // human-readable approximation.
    func translateMicroTimestampSince(timestamp metav1.MicroTime) string {
    	if timestamp.IsZero() {
    		return "<unknown>"
    	}
    
    	return duration.HumanDuration(time.Since(timestamp.Time))
    }
    
    // translateTimestampSince returns the elapsed time since timestamp in
    // human-readable approximation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

              </description>
              <type>String</type>
            </field>
            <field>
              <name>name</name>
              <version>4.0.0+</version>
              <description>Human readable name of the repository.</description>
              <type>String</type>
            </field>
            <field>
              <name>url</name>
              <version>4.0.0+</version>
              <required>true</required>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    #  include <cxxabi.h>
    # elif defined(__HP_aCC)
    #  include <acxx_demangle.h>
    # endif  // GTEST_HASH_CXXABI_H_
    
    namespace testing {
    namespace internal {
    
    // GetTypeName<T>() returns a human-readable name of type T.
    // NB: This function is also used in Google Mock, so don't move it inside of
    // the typed-test-only section below.
    template <typename T>
    std::string GetTypeName() {
    # if GTEST_HAS_RTTI
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181.3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    #  include <cxxabi.h>
    # elif defined(__HP_aCC)
    #  include <acxx_demangle.h>
    # endif  // GTEST_HASH_CXXABI_H_
    
    namespace testing {
    namespace internal {
    
    // GetTypeName<T>() returns a human-readable name of type T.
    // NB: This function is also used in Google Mock, so don't move it inside of
    // the typed-test-only section below.
    template <typename T>
    std::string GetTypeName() {
    # if GTEST_HAS_RTTI
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

        }
    
        interface UnreachableCode : KaFirDiagnostic<KtElement> {
            override val diagnosticClass get() = UnreachableCode::class
            val reachable: List<PsiElement>
            val unreachable: List<PsiElement>
        }
    
        interface SenselessComparison : KaFirDiagnostic<KtExpression> {
            override val diagnosticClass get() = SenselessComparison::class
            val compareResult: Boolean
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
Back to top