Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for regular (0.13 sec)

  1. pkg/kubelet/kubelet_pods.go

    }
    
    // splitPodsByStatic separates a list of desired pods from the pod manager into
    // regular or static pods. Mirror pods are not valid config sources (a mirror pod
    // being created cannot cause the Kubelet to start running a static pod) and are
    // excluded.
    func splitPodsByStatic(pods []*v1.Pod) (regular, static []*v1.Pod) {
    	regular, static = make([]*v1.Pod, 0, len(pods)), make([]*v1.Pod, 0, len(pods))
    	for _, pod := range pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // control the execution of any test:
    //
    //	-bench regexp
    //	    Run only those benchmarks matching a regular expression.
    //	    By default, no benchmarks are run.
    //	    To run all benchmarks, use '-bench .' or '-bench=.'.
    //	    The regular expression is split by unbracketed slash (/)
    //	    characters into a sequence of regular expressions, and each
    //	    part of a benchmark's identifier must match the corresponding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    					},
    					ContainerStatuses: []v1.ContainerStatus{
    						runningState("containerA"),
    					},
    				},
    			},
    			false,
    			v1.PodPending,
    			"restartable init container started, 1/2 regular container running",
    		},
    		{
    			&v1.Pod{
    				Spec: desiredState,
    				Status: v1.PodStatus{
    					InitContainerStatuses: []v1.ContainerStatus{
    						startedState("containerX"),
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    <p>
    A <i>terminating statement</i> interrupts the regular flow of control in
    a <a href="#Blocks">block</a>. The following statements are terminating:
    </p>
    
    <ol>
    <li>
    	A <a href="#Return_statements">"return"</a> or
        	<a href="#Goto_statements">"goto"</a> statement.
    	<!-- ul below only for regular layout -->
    	<ul> </ul>
    </li>
    
    <li>
    	A call to the built-in function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	// running. The actual set of running pods is stored on the podWorkers. The manager is populated
    	// by the kubelet config loops which abstracts receiving configuration from many different sources
    	// (api for regular pods, local filesystem or http for static pods). The manager may be consulted
    	// by other components that need to see the set of desired pods. Note that not all desired pods are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Port */
        public static final String LABELS_PORT = "{labels.port}";
    
        /** The key of the message: Regular Expression */
        public static final String LABELS_REGEX = "{labels.regex}";
    
        /** The key of the message: Regular Name */
        public static final String LABELS_REGULAR_NAME = "{labels.regularName}";
    
        /** The key of the message: Replacement */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    			EventName: event.ObjectReplicationNotTracked,
    		})
    		return
    	}
    
    	// Lock the object name before starting replication operation.
    	// Use separate lock that doesn't collide with regular objects.
    	lk := objectAPI.NewNSLock(bucket, "/[replicate]/"+dobj.ObjectName)
    	lkctx, err := lk.GetLock(ctx, globalOperationTimeout)
    	if err != nil {
    		globalReplicationPool.queueMRFSave(dobj.ToMRFEntry())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

    			opts.HTTP.Headers = make(http.Header)
    		}
    		opts.HTTP.Headers.Set(headers.Host, opts.To.Config().ClusterLocalFQDN())
    		noTarget(src, opts)
    	}
    
    	// SingleRegualrPod is already applied leaving one regular pod, to only regular pods should leave a single workload.
    	// the following cases don't actually target workloads, we use the singleTarget filter to avoid duplicate cases
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "type": "integer"
              },
              "value": {
                "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.",
                "type": "string"
              }
            },
            "type": "object"
          },
          "io.k8s.api.node.v1.Overhead": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    			return
    		}
    
    		rs, rangeErr = parseRequestRangeSpec(rangeHeader)
    		// Handle only errInvalidRange. Ignore other
    		// parse error and treat it as regular Get
    		// request like Amazon S3.
    		if errors.Is(rangeErr, errInvalidRange) {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidRange), r.URL)
    			return
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top