Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 307 for massage (0.15 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    		}
    		if to.Namespace != nil {
    			return nil, &ConfigError{Reason: InvalidDestination, Message: "namespace may not be set with Hostname type"}
    		}
    		hostname := string(to.Name)
    		if ctx.Context.GetService(hostname, namespace) == nil {
    			invalidBackendErr = &ConfigError{Reason: InvalidDestinationNotFound, Message: fmt.Sprintf("backend(%s) not found", hostname)}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            return model;
        }
    
        private boolean containsCoordinates(String message, String groupId, String artifactId, String version) {
            return message != null
                    && (groupId == null || message.contains(groupId))
                    && (artifactId == null || message.contains(artifactId))
                    && (version == null || message.contains(version));
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    	}
    
    	// Determine a human-friendly message.
    	var reason, message string
    	if args.DesiredReplicas >= args.CurrentReplicas {
    		reason = "ScaleUpStabilized"
    		message = "recent recommendations were lower than current one, applying the lowest recent recommendation"
    	} else {
    		reason = "ScaleDownStabilized"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    				Decisions: []validating.PolicyDecision{
    					{
    						Action:  validating.ActionDeny,
    						Message: "correct type",
    					},
    				},
    			}
    		}
    		return validating.ValidateResult{
    			Decisions: []validating.PolicyDecision{
    				{
    					Action:  validating.ActionDeny,
    					Message: "Incorrect param type",
    				},
    			},
    		}
    	})
    
    	configMapParam := &v1.ConfigMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

        }
      }
    
      @JvmName("-deprecated_url")
      @Deprecated(
        message = "moved to toUrl()",
        replaceWith = ReplaceWith(expression = "toUrl()"),
        level = DeprecationLevel.ERROR,
      )
      fun url(): URL = toUrl()
    
      @JvmName("-deprecated_uri")
      @Deprecated(
        message = "moved to toUri()",
        replaceWith = ReplaceWith(expression = "toUri()"),
        level = DeprecationLevel.ERROR,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
Back to top