Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Infoln (0.39 sec)

  1. cmd/kubeadm/app/cmd/upgrade/apply.go

    	// Start with the basics, verify that the cluster is healthy and get the configuration from the cluster (using the ConfigMap)
    	klog.V(1).Infoln("[upgrade/apply] verifying health of cluster")
    	klog.V(1).Infoln("[upgrade/apply] retrieving configuration from cluster")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/token.go

    			if len(args) > 0 {
    				bto.TokenStr = args[0]
    			}
    			klog.V(1).Infoln("[token] validating mixed arguments")
    			if err := validation.ValidateMixedArguments(tokenCmd.Flags()); err != nil {
    				return err
    			}
    
    			if err := bto.ApplyTo(cfg); err != nil {
    				return err
    			}
    
    			klog.V(1).Infoln("[token] getting Clientsets from kubeconfig file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/join/preflight.go

    	// Start with general checks
    	klog.V(1).Infoln("[preflight] Running general checks")
    	if err := preflight.RunJoinNodeChecks(utilsexec.New(), j.Cfg(), j.IgnorePreflightErrors()); err != nil {
    		return err
    	}
    
    	initCfg, err := j.InitCfg()
    	if err != nil {
    		return err
    	}
    
    	// Continue with more specific checks based on the init configuration
    	klog.V(1).Infoln("[preflight] Running configuration dependant checks")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/preflight/checks.go

    func (ContainerRuntimeCheck) Name() string {
    	return "CRI"
    }
    
    // Check validates the container runtime
    func (crc ContainerRuntimeCheck) Check() (warnings, errorList []error) {
    	klog.V(1).Infoln("validating the container runtime")
    	if err := crc.runtime.IsRunning(); err != nil {
    		errorList = append(errorList, err)
    	}
    	return warnings, errorList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    	r, ok := c.(resetData)
    	if !ok {
    		return errors.New("cleanup-node phase invoked with an invalid data struct")
    	}
    	certsDir := r.CertificatesDir()
    
    	// Try to stop the kubelet service
    	klog.V(1).Infoln("[reset] Getting init system")
    	initSystem, err := initsystem.GetInitSystem()
    	if err != nil {
    		klog.Warningln("[reset] The kubelet service could not be stopped by kubeadm. Unable to detect a supported init system!")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	}
    
    	// Configure the kubelet. In this short timeframe, kubeadm is trying to stop/restart the kubelet
    	// Try to stop the kubelet service so no race conditions occur when configuring it
    	if !data.DryRun() {
    		klog.V(1).Infoln("[kubelet-start] Stopping the kubelet")
    		kubeletphase.TryStopKubelet()
    	} else {
    		fmt.Println("[kubelet-start] Would stop the kubelet")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/addons/dns/dns.go

    	}
    	// show the migration changes
    	klog.V(2).Infof("the CoreDNS configuration has been migrated and applied: %v.", updatedCorefile)
    	klog.V(2).Infoln("the old migration has been saved in the CoreDNS ConfigMap under the name [Corefile-backup]")
    	klog.V(2).Infoln("The changes in the new CoreDNS Configuration are as follows:")
    	for _, change := range changes {
    		klog.V(2).Infof("%v", change.ToString())
    	}
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    	data, ok := c.(JoinData)
    	if !ok {
    		return errors.New("download-certs phase invoked with an invalid data struct")
    	}
    
    	if data.Cfg().ControlPlane == nil || len(data.CertificateKey()) == 0 {
    		klog.V(1).Infoln("[download-certs] Skipping certs download")
    		return nil
    	}
    
    	cfg, err := data.InitCfg()
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/unfold_splat_constant_pass.mlir

    // RUN: odml-to-stablehlo-opt %s -unfold-splat-constant-pass -cse -verify-diagnostics | FileCheck %s
    
    // CHECK-LABEL: @unfold_splat_constant_float
    func.func @unfold_splat_constant_float() -> tensor<1x750xf32> {
      %cst = mhlo.constant dense<7.680000e+02> : tensor<1x750xf32>
      func.return %cst : tensor<1x750xf32>
    
      // CHECK-DAG: %0 = mhlo.constant dense<7.680000e+02> : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfold_splat_constant_pass.cc

    #include "mlir/Pass/PassRegistry.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    namespace {
    
    #define DEBUG_TYPE "unfold-splat-constant-pass"
    
    #define GEN_PASS_DEF_UNFOLDSPLATCONSTANTPASS
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h.inc"
    
    // Undo the MHLO::BroadcastInDimOp folding pattern on splat tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top