Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Rebooted (0.13 sec)

  1. pkg/kubelet/events/event.go

    	WarnAlreadyMountedVolume             = "AlreadyMountedVolume"
    	SuccessfulAttachVolume               = "SuccessfulAttachVolume"
    	SuccessfulMountVolume                = "SuccessfulMountVolume"
    	NodeRebooted                         = "Rebooted"
    	NodeShutdown                         = "Shutdown"
    	ContainerGCFailed                    = "ContainerGCFailed"
    	ImageGCFailed                        = "ImageGCFailed"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/caclient/credentials.go

    // will be returned, causing no authorization header to be set. This ensures that even if the JWT
    // token is missing (for example, on a VM that has rebooted, causing the token to be removed from
    // volatile memory), we can still proceed and allow other authentication methods to potentially
    // handle the request, such as mTLS.
    func (t *DefaultTokenProvider) GetToken() (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters.go

    				// and event is recorded or neither should happen, see issue #6055.
    				recordEventFunc(v1.EventTypeWarning, events.NodeRebooted,
    					fmt.Sprintf("Node %s has been rebooted, boot id: %s", nodeName, info.BootID))
    			}
    			node.Status.NodeInfo.BootID = info.BootID
    
    			// TODO: all the node resources should use ContainerManager.GetCapacity instead of deriving the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	if containerStatus != nil {
    		restartCount = containerStatus.RestartCount + 1
    	} else {
    		// The container runtime keeps state on container statuses and
    		// what the container restart count is. When nodes are rebooted
    		// some container runtimes clear their state which causes the
    		// restartCount to be reset to 0. This causes the logfile to
    		// start at 0.log, which either overwrites or appends to the
    		// already existing log.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. cluster/gce/windows/common.psm1

    # Kubernetes releases depend on the release structure remaining stable.
    
    # Disable progress bar to increase download speed.
    $ProgressPreference = 'SilentlyContinue'
    
    # REDO_STEPS affects the behavior of a node that is rebooted after initial
    # bringup. When true, on a reboot the scripts will redo steps that were
    # determined to have already been completed once (e.g. to overwrite
    # already-existing config files). When false the scripts will perform the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent_test.go

    				return a
    			})
    			a.Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    		})
    		t.Run("reboot", func(t *testing.T) {
    			// Switch the JWT to a bogus path, to simulate the VM being rebooted
    			a := Setup(t, func(a AgentTest) AgentTest {
    				a.XdsAuthenticator.Set("", fakeSpiffeID)
    				a.CaAuthenticator.Set("", fakeSpiffeID)
    				a.Security.OutputKeyCertToDir = dir
    				a.Security.ProvCert = dir
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters_test.go

    					},
    				},
    			},
    			expectEvents: []testEvent{
    				{
    					eventType: v1.EventTypeWarning,
    					event:     events.NodeRebooted,
    					message:   fmt.Sprintf("Node %s has been rebooted, boot id: %s", nodeName, "bar"),
    				},
    			},
    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.desc, func(t *testing.T) {
    			ctx := context.Background()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. misc/ios/go_ios_exec.go

    }
    
    func installSimulator(appdir string) error {
    	cmd := exec.Command(
    		"xcrun", "simctl", "install",
    		"booted", // Install to the booted simulator.
    		appdir,
    	)
    	if out, err := cmd.CombinedOutput(); err != nil {
    		os.Stderr.Write(out)
    		return fmt.Errorf("xcrun simctl install booted %q: %v", appdir, err)
    	}
    	return nil
    }
    
    func uninstallDevice(bundleID string) error {
    	cmd := idevCmd(exec.Command(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * the request has become less ready for future requests", i.e. its caches become stale, and
       * requests become more likely to trigger expensive operations (a more extreme case of this
       * example is when a server has just booted, and it is mostly busy with getting itself up to
       * speed).
       *
       * To deal with such scenarios, we add an extra dimension, that of "past underutilization",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * the request has become less ready for future requests", i.e. its caches become stale, and
       * requests become more likely to trigger expensive operations (a more extreme case of this
       * example is when a server has just booted, and it is mostly busy with getting itself up to
       * speed).
       *
       * To deal with such scenarios, we add an extra dimension, that of "past underutilization",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top