Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 214 for target01 (0.18 sec)

  1. cmd/listen-notification-handlers.go

    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    	}
    
    	rulesMap := event.NewRulesMap(eventNames, pattern, event.TargetID{ID: mustGetUUID()})
    
    	setEventStreamHeaders(w)
    
    	// Listen Publisher and peer-listen-client uses nonblocking send and hence does not wait for slow receivers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// Total number of non-terminated pods targeted by this deployment (their labels match the selector).
    	// +optional
    	Replicas int32 `json:"replicas,omitempty" protobuf:"varint,2,opt,name=replicas"`
    
    	// Total number of non-terminated pods targeted by this deployment that have the desired template spec.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    				klog.Errorf("Single channel byte should follow stream close signal. Got %d bytes", len(data)-1)
    				break
    			} else {
    				channel := data[1]
    				if int(channel) >= len(conn.channels) {
    					klog.Errorf("Close is targeted for a channel %d that is not valid, possible protocol error", channel)
    					break
    				}
    				klog.V(4).Infof("Received half-close signal from client; close %d stream", channel)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

         *
         * <p>The wrapper allows for verification of the downloaded Gradle distribution via SHA-256 hash sum comparison.
         * This increases security against targeted attacks by preventing a man-in-the-middle attacker from tampering with
         * the downloaded Gradle distribution.
         *
         * @since 4.5
         */
        @Nullable
        @Optional
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    	"updatedReplicas":     "Total number of non-terminated pods targeted by this deployment that have the desired template spec.",
    	"readyReplicas":       "Total number of ready pods targeted by this deployment.",
    	"availableReplicas":   "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy.go

    //		Rewrite: func(r *ProxyRequest) {
    //			r.SetURL(target)
    //			r.Out.Host = r.In.Host // if desired
    //		},
    //	}
    func NewSingleHostReverseProxy(target *url.URL) *ReverseProxy {
    	director := func(req *http.Request) {
    		rewriteRequestURL(req, target)
    	}
    	return &ReverseProxy{Director: director}
    }
    
    func rewriteRequestURL(req *http.Request, target *url.URL) {
    	targetQuery := target.RawQuery
    	req.URL.Scheme = target.Scheme
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

                    return false;
                }
                Element element = document.createElement("link");
                String targetId = String.format("%s.%s", classMetaData.getClassName(), href.substring(1));
                element.setAttribute("linkend", targetId);
                nodes.push(element);
                return true;
            }
    
            @Override
            public void onEndElement(String element) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 29.3K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/replica_calculator.go

    	}
    
    	if len(missingPods) > 0 {
    		if usageRatio < 1.0 {
    			// on a scale-down, treat missing pods as using 100% (all) of the resource request
    			// or the utilization target for targets higher than 100%
    			fallbackUtilization := int64(max(100, targetUtilization))
    			for podName := range missingPods {
    				metrics[podName] = metricsclient.PodMetric{Value: requests[podName] * fallbackUtilization / 100}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      // Total number of non-terminated pods targeted by this deployment (their labels match the selector).
      // +optional
      optional int32 replicas = 2;
    
      // Total number of non-terminated pods targeted by this deployment that have the desired template spec.
      // +optional
      optional int32 updatedReplicas = 3;
    
      // Total number of ready pods targeted by this deployment.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // Total number of non-terminated pods targeted by this deployment (their labels match the selector).
      // +optional
      optional int32 replicas = 2;
    
      // Total number of non-terminated pods targeted by this deployment that have the desired template spec.
      // +optional
      optional int32 updatedReplicas = 3;
    
      // Total number of ready pods targeted by this deployment.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
Back to top