Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 273 for message1 (0.19 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            }
    
            when:
            registry.realize("foo")
    
            then:
            ModelRuleExecutionException e = thrown()
            e.message == /Exception thrown while executing model rule: mutate foo as Integer/
            e.cause instanceof DuplicateModelException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            then:
            def e = thrown(IllegalStateException)
            e.message == 'The value for <display> is final and cannot be changed any further.'
    
            when:
            collection.setFrom()
    
            then:
            def e2 = thrown(IllegalStateException)
            e2.message == 'The value for <display> is final and cannot be changed any further.'
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Message represents the message displayed when validation fails. The message is required if the Expression contains
      // line breaks. The message must not contain line breaks.
      // If unset, the message is "failed rule: {Rule}".
      // e.g. "must be a URL with the host matching spec.host"
      // If the Expression contains line breaks. Message is required.
      // The message must not contain line breaks.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string reason = 5;
    
      // message is a human readable message indicating details about the transition.
      // This may be an empty string.
      // +required
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:MaxLength=32768
      optional string message = 6;
    }
    
    // CreateOptions may be provided when creating an API object.
    message CreateOptions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string reason = 5;
    
      // message is a human readable message indicating details about the transition.
      // This may be an empty string.
      // +required
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:MaxLength=32768
      optional string message = 6;
    }
    
    // CreateOptions may be provided when creating an API object.
    message CreateOptions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

            "status": "statusValue",
            "lastProbeTime": "2003-01-01T01:01:01Z",
            "lastTransitionTime": "2004-01-01T01:01:01Z",
            "reason": "reasonValue",
            "message": "messageValue"
          }
        ],
        "message": "messageValue",
        "reason": "reasonValue",
        "nominatedNodeName": "nominatedNodeNameValue",
        "hostIP": "hostIPValue",
        "hostIPs": [
          {
            "ip": "ipValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		tMessage, checkLogs := getTerminationMessage(status, annotatedInfo.TerminationMessagePath, fallbackToLogs)
    		if checkLogs {
    			tMessage = m.readLastStringFromContainerLogs(status.GetLogPath())
    		}
    		// Enrich the termination message written by the application is not empty
    		if len(tMessage) != 0 {
    			if len(cStatus.Message) != 0 {
    				cStatus.Message += ": "
    			}
    			cStatus.Message += tMessage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            def ex = thrown NullPointerException
            ex.message == "Cannot add an entry with a null key to a property of type ${type().simpleName}."
        }
    
        def "throws NullPointerException when adding an entry with a null value to the property"() {
            when:
            property.put('k', (String) null)
            then:
            def ex = thrown NullPointerException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  9. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"image/x-xwindowdump",
    				"message/cpim",
    				"message/delivery-status",
    				"message/disposition-notification",
    				"message/example",
    				"message/external-body",
    				"message/global",
    				"message/global-delivery-status",
    				"message/global-disposition-notification",
    				"message/global-headers",
    				"message/http",
    				"message/imdn+xml",
    				"message/news",
    				"message/partial",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Preconditions.java

       * @param errorMessageTemplate a template for the exception message should the check fail. The
       *     message is formed by replacing each {@code %s} placeholder in the template with an
       *     argument. These are matched by position - the first {@code %s} gets {@code
       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top