Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 831 for Daemons (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/AbstractCompileAvoidanceIntegrationTest.kt

        }
    
        protected
        fun withKotlinDslPluginInBuildSrc() {
            // this is to force buildSrc/build.gradle.kts to be written to test-local buildscript cache
            // and not to be reused from daemon's cache from other tests when daemon is in use
            withBuildScriptIn("buildSrc", scriptWithKotlinDslPlugin())
                .bustScriptCache()
        }
    
        private
        fun File.bustScriptCache() {
            appendText(
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:43 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	maxPods int
    
    	// Monitor Kubelet's sync loop
    	syncLoopMonitor atomic.Value
    
    	// Container restart Backoff
    	backOff *flowcontrol.Backoff
    
    	// Information about the ports which are opened by daemons on Node running this Kubelet server.
    	daemonEndpoints *v1.NodeDaemonEndpoints
    
    	// A queue used to trigger pod workers.
    	workQueue queue.WorkQueue
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // is empty, but should not rely on the stability of the Error text across Kubelet versions.
      // +optional
      optional string error = 4;
    }
    
    // NodeDaemonEndpoints lists ports opened by daemons running on the Node.
    message NodeDaemonEndpoints {
      // Endpoint on which Kubelet is listening.
      // +optional
      optional DaemonEndpoint kubeletEndpoint = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	*/
    
    	// Port number of the given endpoint.
    	Port int32
    }
    
    // NodeDaemonEndpoints lists ports opened by daemons running on the Node.
    type NodeDaemonEndpoints struct {
    	// Endpoint on which Kubelet is listening.
    	// +optional
    	KubeletEndpoint DaemonEndpoint
    }
    
    // NodeRuntimeHandlerFeatures is a set of runtime features.
    type NodeRuntimeHandlerFeatures struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (NodeConfigStatus) SwaggerDoc() map[string]string {
    	return map_NodeConfigStatus
    }
    
    var map_NodeDaemonEndpoints = map[string]string{
    	"":                "NodeDaemonEndpoints lists ports opened by daemons running on the Node.",
    	"kubeletEndpoint": "Endpoint on which Kubelet is listening.",
    }
    
    func (NodeDaemonEndpoints) SwaggerDoc() map[string]string {
    	return map_NodeDaemonEndpoints
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SupportedBuildJvmIntegrationTest.groovy

            succeeds("help")
        }
    
        // This test deletes a JDK installation while the daemon is running.
        // This is difficult to setup on Windows since you can't delete files
        // that are in use.
        @Requires(UnitTestPreconditions.NotWindows)
        @Issue("https://github.com/gradle/gradle/issues/16816")
        def "can successful start after a running daemon's JDK has been removed"() {
            def installedJdk = Jvm.current().javaHome
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top