Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for regular (0.43 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. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        // Section 4.6 > Relationship 13 states an associated transposed
        // convolution should have `s = 1`.
        // For `VALID` padding, the condition below will always hold true.
        // For `SAME` padding, express via regular convolution.
        return output_height > input_height && output_width > input_width &&
               stride_height == 1 && stride_width == 1;
      }
    
      bool IsSamePadding(
          stablehlo::ConvolutionOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. pkg/api/pod/util_test.go

    		mask           ContainerType
    	}{
    		{
    			desc:           "empty podspec",
    			spec:           &api.PodSpec{},
    			wantContainers: []string{},
    			mask:           AllContainers,
    		},
    		{
    			desc: "regular containers",
    			spec: &api.PodSpec{
    				Containers: []api.Container{
    					{Name: "c1"},
    					{Name: "c2"},
    				},
    				InitContainers: []api.Container{
    					{Name: "i1"},
    					{Name: "i2"},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top