Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 169 for processDest (0.26 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

        }
    
        /**
         * When the daemon is started on *nix, we need to detach it from the terminal session of the parent process,
         * otherwise if a ctrl-c is entered on the terminal, it will kill all processes in the session.  This test compiles
         * a native executable that can retrieve the session id of a process so that we can verify that the session id
         * of the daemon is different than the session id of the client.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    	metricNames := []string{"apiserver_stream_translator_requests_total"}
    	expected := `
    # HELP apiserver_stream_translator_requests_total [ALPHA] Total number of requests that were handled by the StreamTranslatorProxy, which processes streaming RemoteCommand/V5
    # TYPE apiserver_stream_translator_requests_total counter
    apiserver_stream_translator_requests_total{code="200"} 1
    `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
        @Issue("https://github.com/gradle/gradle/issues/22685")
        def "can visit and edit zip archive differently from settings script when gradle is run in two simultaneous processes"() {
            given: "a started server which can be used to cause the edits to begin at approximately the same time"
            server.start()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

        }
    
        void close() {
            assert isolatedToolingClient != null
            isolatedToolingClient.close()
        }
    
        /**
         * Specifies that the test use real daemon processes (not embedded) and a test-specific daemon registry. Uses a shared Gradle user home dir
         */
        void requireIsolatedDaemons() {
            if (useSeparateDaemonBaseDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

         *
         * @return The maximum number of forked test processes.
         */
        @Internal
        public int getMaxParallelForks() {
            return getDebug() ? 1 : maxParallelForks;
        }
    
        /**
         * Sets the maximum number of test processes to start in parallel.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  6. src/context/context.go

    // license that can be found in the LICENSE file.
    
    // Package context defines the Context type, which carries deadlines,
    // cancellation signals, and other request-scoped values across API boundaries
    // and between processes.
    //
    // Incoming requests to a server should create a [Context], and outgoing
    // calls to servers should accept a Context. The chain of function
    // calls between them must propagate the Context, optionally replacing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  7. pkg/volume/volume.go

    	// Volume. For Volumes that share a filesystem with the host (e.g.
    	// emptydir, hostpath), this is the available space on the underlying
    	// storage, and is shared with host processes and other Volumes.
    	Available *resource.Quantity
    
    	// InodesUsed represents the total inodes used by the Volume.
    	InodesUsed *resource.Quantity
    
    	// Inodes represents the total number of inodes available in the volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    ------------------------------------------------------------
    
    Other tasks
    -----------
    compileJava - Compiles main Java source.
    compileTestJava - Compiles test Java source.
    hello
    processResources - Processes main resources.
    processTestResources - Processes test resources.
    startScripts - Creates OS-specific scripts to run the project as a JVM application.
    ----
    
    You can execute the task in the build script with `./gradlew hello`:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/generate/generate.go

    specifies that the command "foo" represents the generator
    "go tool foo".
    
    Generate processes packages in the order given on the command line,
    one at a time. If the command line lists .go files from a single directory,
    they are treated as a single package. Within a package, generate processes the
    source files in a package in file name order, one at a time. Within
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginTest.groovy

            def processResources = project.tasks['processCustomResources']
            processResources.description == "Processes custom resources."
            processResources instanceof Copy
            TaskDependencyMatchers.dependsOn().matches(processResources)
            processResources.destinationDir == new File(project.buildDir, 'resources/custom')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 16.4K bytes
    - Viewed (0)
Back to top