Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,759 for Forked (0.11 sec)

  1. pilot/pkg/leaderelection/k8sleaderelection/README.md

    election gets upstreamed in the near future ([KEP](https://github.com/kubernetes/enhancements/pull/2836)), and hopefully what gets merged isn't too far from what we have forked here (if it is, we'd have to potentially maintain migration code in our fork for a few releases before abandoning). Once merged we can abandon this forked code and use upstream again....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 935 bytes
    - Viewed (0)
  2. pkg/util/oom/oom_linux.go

    		}
    		// There's a slight race. A process might have forked just before we write its OOM score adjust.
    		// The fork might copy the parent process's old OOM score, then this function might execute and
    		// update the parent's OOM score, but the forked process id might not be reflected in cgroup.procs
    		// for a short amount of time. So this function might return without changing the forked process's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 07:13:28 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. api/maven-api-plugin/src/main/java/org/apache/maven/api/plugin/descriptor/lifecycle/package-info.java

    // CHECKSTYLE_OFF: RegexpHeader
    /**
     * Maven Plugin forked lifecycle model.
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 138 bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/ProcessWorkerSpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.workers;
    
    /**
     * A worker spec providing the requirements of a forked process with a custom classpath.
     *
     * @since 5.6
     */
    public interface ProcessWorkerSpec extends ForkingWorkerSpec, ClassLoaderWorkerSpec {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 849 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ProjectConfigurationChildrenProgressCrossVersionSpec.groovy

            } else {
                "workerExecutor.${actionName == 'Forked' ? 'process' : 'no'}Isolation().submit(${actionName}WorkAction) { }"
            }
        }
    
        def "generates events for worker actions executed in-process and forked"() {
            given:
            settingsFile << "rootProject.name = 'single'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. hack/verify-shellcheck.sh

      # - ./.git/* - Ignore anything in the git object store.
      # - ./vendor* - Vendored code should be fixed upstream instead.
      # - ./third_party/*, but re-include ./third_party/forked/*  - only code we
      #    forked should be linted and fixed.
      while IFS=$'\n' read -r script;
        do git check-ignore -q "$script" || scripts_to_check+=("$script");
      done < <(find . -name "*.sh" \
        -not \( \
          -path ./_\*      -o \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/BuildEnvironmentIntegrationTest.groovy

            "UTF-8"       | "UTF-8"
            "US-ASCII"    | "US-ASCII"
            null          | Charset.defaultCharset().name()
        }
    
        @Unroll("forked java processes inherit default encoding - input = #inputEncoding, expectedEncoding: #expectedEncoding")
        def "forked java processes inherit default encoding"() {
            given:
            executerEncoding inputEncoding
    
            and:
            file("src", "main", "java").mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. maven-compat/src/main/resources/META-INF/maven/plugin.xml

            <session implementation="org.apache.maven.execution.MavenSession" default-value="${session}"/>
            <forkId implementation="int" default-value="-1">${forkId}</forkId>
          </configuration>
        </mojo>
        <mojo>
          <goal>clear-fork-context</goal>
          <description>Tear down any build state used during the previous forked execution.</description>
          <requiresDirectInvocation>false</requiresDirectInvocation>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/workerApi/workerDaemon/kotlin/build.gradle.kts

        @get:OutputDirectory
        abstract val outputDir: DirectoryProperty
    
        @TaskAction
        fun reverseFiles() {
            // tag::worker-daemon[]
            // Create a WorkQueue with process isolation
            val workQueue = workerExecutor.processIsolation() {
                // Configure the options for the forked process
                forkOptions {
                    maxHeapSize = "512m"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/main/java/org/gradle/workers/ForkingWorkerSpec.java

     * limitations under the License.
     */
    
    package org.gradle.workers;
    
    import org.gradle.api.Action;
    import org.gradle.process.JavaForkOptions;
    
    /**
     * A worker spec providing the requirements of a forked process.
     *
     * @since 5.6
     */
    public interface ForkingWorkerSpec extends WorkerSpec {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top