Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for STARTED (0.1 sec)

  1. cmd/kubelet/app/server.go

    	if runOnce {
    		if _, err := k.RunOnce(podCfg.Updates()); err != nil {
    			return fmt.Errorf("runonce failed: %w", err)
    		}
    		klog.InfoS("Started kubelet as runonce")
    	} else {
    		startKubelet(k, podCfg, &kubeServer.KubeletConfiguration, kubeDeps, kubeServer.EnableServer)
    		klog.InfoS("Started kubelet")
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            }
            if (isDebugLauncher()) {
                if (System.getenv().containsKey("CI")) {
                    throw new IllegalArgumentException("Builds cannot be started with the debugger enabled on CI. This will cause tests to hang forever. Remove the call to startLauncherInDebugger().");
                }
                gradleInvocation.implicitLauncherJvmArgs.add(debugLauncher.toDebugArgument());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	assert.NoError(t, result.Error())
    	expected = []*cRecord{
    		// The first init container instance is purged and no longer visible.
    		// The second (attempt == 1) instance has been started and is running.
    		{name: initContainers[0].Name, attempt: 1, state: runtimeapi.ContainerState_CONTAINER_RUNNING},
    		// All containers are killed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	//
    	// There are 2 ways a P can stop: ProcStop and ProcSteal. ProcStop is used when the P
    	// is stopped by the same M that started it, while ProcSteal is used when another M
    	// steals the P by stopping it from a distance.
    	//
    	// Since a P is bound to an M, and we're stopping on the same M we started, it must
    	// always be possible to advance the current M's P from a ProcStop. This is also why
    	// ProcStop doesn't need a sequence number.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. hack/local-up-cluster.sh

      ${PROXY_LOG:-}
      ${SCHEDULER_LOG:-}
    EOF
    fi
    
    if [[ "${START_MODE}" == "all" ]]; then
      echo "  ${KUBELET_LOG}"
    elif [[ "${START_MODE}" == *"nokubelet"* ]]; then
      echo
      echo "No kubelet was started because you set START_MODE=nokubelet"
      echo "Run this script again with START_MODE=kubeletonly to run a kubelet"
    fi
    
    if [[ "${START_MODE}" != "kubeletonly" ]]; then
      echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		// HTTP/2 stream close; the latter is done if either the connection has been "hijacked" or some
    		// other goroutine (e.g., the one running the inner handler) has started to write a response.
    		// In the scenario tested here, there is thus a race between two goroutines to respond to
    		// the second request and any of their responses is allowed by the test.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		if watcher.allowWatchBookmarks {
    			c.bookmarkWatchers.addWatcherThreadUnsafe(watcher)
    		}
    		c.watcherIdx++
    	}()
    
    	if !addedWatcher {
    		// Watcher isn't really started at this point, so it's safe to just drop it.
    		//
    		// We're simulating the immediate watch termination, which boils down to simply
    		// closing the watcher.
    		return newImmediateCloseWatcher(), nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      # Compute kube-proxy args
      $kubeproxy_args_str = ${kube_env}['KUBEPROXY_ARGS']
      $kubeproxy_args = $kubeproxy_args_str.Split(" ")
      Log-Output "kubeproxy_args from metadata: ${kubeproxy_args}"
    
      # kubeproxy is started on Linux nodes using
      # kube-manifests/kubernetes/gci-trusty/kube-proxy.manifest, which is
      # generated by start-kube-proxy in configure-helper.sh and contains e.g.:
      #   kube-proxy --master=https://35.239.84.171
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// core TensorFlow upon registration (see the `TF_FilesystemPluginInfo`
      /// structure in Section 4).
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if transaction successfuly started.
      ///   * Must set `status` to `TF_FAILED_PRECONDITION` if multiple transactions
      ///     are not supported
      ///   * Might use any other error value for `status` to signal other errors.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  10. src/testing/testing.go

    //
    // When fuzzing is disabled, the fuzz target is called with the seed inputs
    // registered with F.Add and seed inputs from testdata/fuzz/<Name>. In this
    // mode, the fuzz test acts much like a regular test, with subtests started
    // with F.Fuzz instead of T.Run.
    //
    // See https://go.dev/doc/fuzz for documentation about fuzzing.
    //
    // # Skipping
    //
    // Tests or benchmarks may be skipped at run time with a call to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top