Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,003 for daemons (0.2 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

    }
    
    // DaemonSetStatus represents the current status of a daemon set.
    message DaemonSetStatus {
      // The number of nodes that are running at least 1
      // daemon pod and are supposed to run the daemon pod.
      // More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
      optional int32 currentNumberScheduled = 1;
    
      // The number of nodes that are running the daemon pod, but are
      // not supposed to run the daemon pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    	"desiredNumberScheduled": "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/",
    	"numberReady":            "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.",
    	"observedGeneration":     "The most recent generation observed by the daemon set controller.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

    }
    
    // DaemonSetStatus represents the current status of a daemon set.
    message DaemonSetStatus {
      // The number of nodes that are running at least 1
      // daemon pod and are supposed to run the daemon pod.
      // More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
      optional int32 currentNumberScheduled = 1;
    
      // The number of nodes that are running the daemon pod, but are
      // not supposed to run the daemon pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractGradleBuildConfigurationCacheSmokeTest.groovy

                ]
            }
            run(
                tasks + ccOptions,
                // use a unique testKitDir per daemonId other than 0 as 0 means default daemon.
                daemonId != 0 ? file("test-kit/$daemonId") : null
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/EstablishBuildEnvironment.java

            if(!setEnvironmentResult.isSuccess()) {
                LOGGER.warn("Warning: Unable able to set daemon's environment variables to match the client because: "
                    + System.getProperty("line.separator") + "  "
                    + setEnvironmentResult
                    + System.getProperty("line.separator") + "  "
                    + "If the daemon was started with a significantly different environment from the client, and your build "
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonStartupCommunicationSpec.groovy

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.bootstrap
    
    import org.gradle.internal.remote.internal.inet.MultiChoiceAddress
    import spock.lang.Specification
    
    class DaemonStartupCommunicationSpec extends Specification {
        def comm = new DaemonStartupCommunication()
        def dummyFile = new File("C:\\foo;;\\daemon-123.log\n\r\n\u03b1")
        def uuid = UUID.randomUUID()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller_test.go

    		expectSyncDaemonSets(t, manager, ds, podControl, 2, 5, 0)
    	}
    }
    
    // Daemon with node selector should launch pods on nodes matching selector.
    func TestSelectorDaemonLaunchesPods(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		daemon := newDaemonSet("foo")
    		daemon.Spec.UpdateStrategy = *strategy
    		daemon.Spec.Template.Spec.NodeSelector = simpleNodeLabel
    		_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/ForwardInput.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * Carries some text that should be made available via the daemon's System.in
     */
    public class ForwardInput extends InputMessage {
        private final byte[] bytes;
    
        public ForwardInput(byte[] bytes) {
            this.bytes = bytes;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 966 bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonFeedbackIntegrationSpec.groovy

            getLogs(executer.daemonBaseDir).size() == 0 //we should connect to the foreground daemon so no log was created
    
            // Output is delivered asynchronously to the daemon's output, so wait for it to appear
            poll(60) { assert daemon.standardOutput.count("info me!") == 1 }
            daemon.standardOutput.count("debug me!") == 0
            daemon.standardOutput.count(DaemonMessages.ABOUT_TO_START_RELAYING_LOGS) == 0
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. pkg/controller/daemon/update.go

    			logger.V(5).Info("DaemonSet pod on node is available, remove old pod", "daemonset", klog.KObj(ds), "newPod", klog.KObj(newPod), "node", nodeName, "oldPod", klog.KObj(oldPod))
    			oldPodsToDelete = append(oldPodsToDelete, oldPod.Name)
    		}
    	}
    
    	// use any of the candidates we can, including the allowedNewNodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top