Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,573 for NCases (0.1 sec)

  1. pkg/controller/storageversiongc/gc_controller.go

    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/util/workqueue"
    	"k8s.io/kubernetes/pkg/controlplane"
    
    	"k8s.io/klog/v2"
    )
    
    // Controller watches kube-apiserver leases and storageversions, and delete stale
    // storage version entries and objects.
    type Controller struct {
    	kubeclientset kubernetes.Interface
    
    	leaseLister  coordlisters.LeaseLister
    	leasesSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    limitations under the License.
    */
    
    package phases
    
    import (
    	"fmt"
    	"io"
    	"text/template"
    	"time"
    
    	"github.com/lithammer/dedent"
    	"github.com/pkg/errors"
    
    	clientset "k8s.io/client-go/kubernetes"
    	kubeletconfig "k8s.io/kubelet/config/v1beta1"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow"
    	"k8s.io/kubernetes/cmd/kubeadm/app/componentconfigs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/topology_hints_test.go

    		}
    	}
    }
    
    func TestGetPodTopologyHints(t *testing.T) {
    	tcases := getCommonTestCases()
    	tcases = append(tcases, getPodScopeTestCases()...)
    
    	for _, tc := range tcases {
    		m := ManagerImpl{
    			allDevices:       NewResourceDeviceInstances(),
    			healthyDevices:   make(map[string]sets.Set[string]),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  4. samples/ambient-argo/README.md

    In a phased model, there is generally a single version of Istio available in the cluster.  When a new version becomes available, the phases are moved one at a time to the new version, in order, until all phases have upgraded to the new model.  The phased model supports any number of phases based on the needs of your platform.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/html.go

    	}
    	w.prevHash = hash
    }
    
    // flushPhases collects any pending phases and titles, writes them to the html, and resets the pending slices.
    func (w *HTMLWriter) flushPhases() {
    	phaseLen := len(w.pendingPhases)
    	if phaseLen == 0 {
    		return
    	}
    	phases := strings.Join(w.pendingPhases, "  +  ")
    	w.WriteMultiTitleColumn(
    		phases,
    		w.pendingTitles,
    		fmt.Sprintf("hash-%x", w.prevHash),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ModelBlockTransformer.java

    import org.codehaus.groovy.ast.expr.MethodCallExpression;
    import org.codehaus.groovy.ast.stmt.Statement;
    import org.codehaus.groovy.control.CompilationFailedException;
    import org.codehaus.groovy.control.Phases;
    import org.codehaus.groovy.control.SourceUnit;
    import org.codehaus.groovy.syntax.SyntaxException;
    import org.gradle.groovy.scripts.internal.AbstractScriptTransformer;
    import org.gradle.groovy.scripts.internal.AstUtils;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/reset/unmount_linux_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package phases
    
    import (
    	"testing"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    )
    
    func TestFlagsToInt(t *testing.T) {
    
    	tests := []struct {
    		name           string
    		input          []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 10:58:44 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/upgrade/node/data.go

    import (
    	"io"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	clientset "k8s.io/client-go/kubernetes"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    )
    
    // Data is the interface to use for kubeadm upgrade node phases.
    // The "nodeData" type from "cmd/upgrade/node.go" must satisfy this interface.
    type Data interface {
    	EtcdUpgrade() bool
    	RenewCerts() bool
    	DryRun() bool
    	Cfg() *kubeadmapi.UpgradeConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/common_test.go

    		t.Errorf("Unable to create test file %q: %v", fullPath, err)
    	}
    	defer f.Close()
    	if _, err = f.WriteString(testConfigToken); err != nil {
    		t.Errorf("Unable to write test file %q: %v", fullPath, err)
    	}
    	tcases := []struct {
    		name               string
    		newK8sVersion      string
    		dryRun             bool
    		flags              applyPlanFlags
    		expectedErr        string
    		expectedErrNonRoot string
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/options/options_test.go

    					LeaseDuration:     metav1.Duration{Duration: 15 * time.Second},
    					RenewDeadline:     metav1.Duration{Duration: 10 * time.Second},
    					RetryPeriod:       metav1.Duration{Duration: 2 * time.Second},
    					ResourceLock:      "leases",
    					ResourceNamespace: "kube-system",
    					ResourceName:      "kube-scheduler",
    				},
    				ClientConnection: componentbaseconfig.ClientConnectionConfiguration{
    					Kubeconfig:  configKubeconfig,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
Back to top