Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Daemons (0.18 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        enum CliDaemonArgument {
            NOT_DEFINED,
            DAEMON,
            NO_DAEMON,
            FOREGROUND
        }
    
        protected CliDaemonArgument resolveCliDaemonArgument() {
            for (int i = args.size() - 1; i >= 0; i--) {
                final String arg = args.get(i);
                if (arg.equals("--daemon")) {
                    return DAEMON;
                }
                if (arg.equals("--no-daemon")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	// The number of nodes that are running the daemon pod, but are
    	// not supposed to run the daemon pod.
    	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    	NumberMisscheduled int32 `json:"numberMisscheduled" protobuf:"varint,2,opt,name=numberMisscheduled"`
    
    	// The total number of nodes that should be running the daemon
    	// pod (including nodes correctly running the daemon pod).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// The number of nodes that are running the daemon pod, but are
    	// not supposed to run the daemon pod.
    	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    	NumberMisscheduled int32 `json:"numberMisscheduled" protobuf:"varint,2,opt,name=numberMisscheduled"`
    
    	// The total number of nodes that should be running the daemon
    	// pod (including nodes correctly running the daemon pod).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// The number of nodes that are running the daemon pod, but are
    	// not supposed to run the daemon pod.
    	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    	NumberMisscheduled int32 `json:"numberMisscheduled" protobuf:"varint,2,opt,name=numberMisscheduled"`
    
    	// The total number of nodes that should be running the daemon
    	// pod (including nodes correctly running the daemon pod).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:not_yet_implemented:sharing]]
    === Sharing the configuration cache
    
    The configuration cache is currently stored locally only.
    It can be reused by hot or cold local Gradle daemons.
    But it can't be shared between developers or CI machines.
    
    See link:{gradle-issues}13510[gradle/gradle#13510].
    
    [[config_cache:not_yet_implemented:source_dependencies]]
    === Source dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    This affects all internal Gradle workers, which are used for a variety of tasks:
    
    - code-quality plugins (Checkstyle, CodeNarc, Pmd)
    - ScalaDoc
    - AntlrTask
    - JVM compiler daemons
    - tasks executed using process isolation via the link:worker_api.html[Worker API]
    
    New warnings and errors may appear in any tools, extensions, or plugins that perform deep reflection into JDK internals with the worker API.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    	if err != nil {
    		return fmt.Errorf("couldn't get node to daemon pod mapping for daemon set %q: %v", ds.Name, err)
    	}
    
    	// For each node, if the node is running the daemon pod but isn't supposed to, kill the daemon
    	// pod. If the node is supposed to run the daemon pod, but isn't, create the daemon pod on the node.
    	logger := klog.FromContext(ctx)
    	var nodesNeedingDaemonPods, podsToDelete []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

        def "virtual platform missing modules are cached across builds"() {
            // Disable daemon, so that the second run executes with the file cache
            // and therefore make sure that we read the "missing" status from disk
            executer.withArgument('--no-daemon')
    
            repository {
                path 'xml -> core'
                path 'json -> core'
                path 'xml:1.1 -> core:1.1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            then:
            outputContains("Providing metadata for group:projectB:2.2")
            outputContains("Providing metadata for group:projectB:1.1")
    
            when:
            // stop the daemon to make sure that when we run the build again
            // it's fetched from the persistent cache
            run '--stop'
            supplierInteractions.refresh('group:projectB:2.2', 'group:projectB:1.1')
            run 'checkDeps'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    The command line client now starts with 64MB of heap instead of 1GB.
    This may affect builds running directly inside the client VM using `--no-daemon` mode.
    We discourage the use of `--no-daemon`, but if you must use it, you can increase the available memory using the `GRADLE_OPTS` environment variable.
    
    The Gradle daemon now starts with 512MB of heap instead of 1GB.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top