Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 283 for pdfork (0.14 sec)

  1. platforms/jvm/language-jvm/src/test/groovy/org/gradle/api/internal/tasks/compile/BaseForkOptionsConverterTest.groovy

    import spock.lang.Specification
    
    class BaseForkOptionsConverterTest extends Specification {
        BaseForkOptionsConverter converter = new BaseForkOptionsConverter(TestFiles.execFactory())
    
        def "converts a base fork options to a java fork options"() {
            BaseForkOptions baseForkOptions = new BaseForkOptions()
            baseForkOptions.memoryInitialSize = "128m"
            baseForkOptions.memoryMaximumSize = "1g"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/syscall/forkpipe2.go

    func hasWaitingReaders(rw *sync.RWMutex) bool
    
    // acquireForkLock acquires a write lock on ForkLock.
    // ForkLock is exported and we've promised that during a fork
    // we will call ForkLock.Lock, so that no other threads create
    // new fds that are not yet close-on-exec before we fork.
    // But that forces all fork calls to be serialized, which is bad.
    // But we haven't promised that serialization, and it is essentially
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 10 19:19:59 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/run.rc

    #!/bin/rc -e
    # Copyright 2012 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    rfork e
    
    if(! test -f ../bin/go){
    	echo 'run.rc must be run from $GOROOT/src after installing cmd/go' >[1=2]
    	exit wrongdir
    }
    
    GOENV=off
    eval `{../bin/go tool dist env}
    
    GOPATH=/nonexist-gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 20:19:28 UTC 2022
    - 406 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/plan9/const_plan9.go

    package plan9
    
    // Plan 9 Constants
    
    // Open modes
    const (
    	O_RDONLY  = 0
    	O_WRONLY  = 1
    	O_RDWR    = 2
    	O_TRUNC   = 16
    	O_CLOEXEC = 32
    	O_EXCL    = 0x1000
    )
    
    // Rfork flags
    const (
    	RFNAMEG  = 1 << 0
    	RFENVG   = 1 << 1
    	RFFDG    = 1 << 2
    	RFNOTEG  = 1 << 3
    	RFPROC   = 1 << 4
    	RFMEM    = 1 << 5
    	RFNOWAIT = 1 << 6
    	RFCNAMEG = 1 << 10
    	RFCENVG  = 1 << 11
    	RFCFDG   = 1 << 12
    	RFREND   = 1 << 13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1004 bytes
    - Viewed (0)
  5. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_CHROOT        = 61  // { int chroot(char *path); }
    	SYS_MSYNC         = 65  // { int msync(void *addr, size_t len, int flags); }
    	SYS_VFORK         = 66  // { pid_t vfork(void); }
    	SYS_SBRK          = 69  // { int sbrk(int incr); }
    	SYS_SSTK          = 70  // { int sstk(int incr); }
    	SYS_MUNMAP        = 73  // { int munmap(void *addr, size_t len); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    ### Setup your MinIO GitHub Repository
    
    Fork [MinIO upstream](https://github.com/minio/minio/fork) source repository to your own personal repository. Copy the URL of your MinIO fork (you will need it for the `git clone` command below).
    
    ```sh
    git clone https://github.com/minio/minio
    go install -v
    ls /go/bin/minio
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyForkOptions.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.tasks.compile;
    
    /**
     * Fork options for Groovy compilation. Only take effect if {@code GroovyCompileOptions.fork}
     * is {@code true}.
     */
    public abstract class GroovyForkOptions extends ProviderAwareCompilerDaemonForkOptions {
        private static final long serialVersionUID = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 925 bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/Names.java

    class Names {
        static String displayNameFor(Enum<?> value) {
            String[] parts = value.name().toLowerCase(Locale.US).split("_");
            return Joiner.on(' ').join(parts);
        }
    
        static String idFor(Enum<?> value) {
            String[] parts = value.name().toLowerCase(Locale.US).split("_");
            return Joiner.on('-').join(parts);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

            javaCompile.destinationDirectory.fileValue(new File('somewhere'))
            def invalidExecutable = temporaryFolder.file("invalidExecutable")
    
            when:
            javaCompile.options.fork = true
            javaCompile.options.forkOptions.executable = invalidExecutable
            javaCompile.createSpec()
    
            then:
            def e = thrown(AbstractProperty.PropertyQueryException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Execute.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Used if your Mojo needs to fork a <a href="/ref/3.0.4/maven-core/lifecycles.html">lifecycle</a>.
     *
     * @since 4.0.0
     */
    @Experimental
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface Execute {
        /**
         * Lifecycle phase to fork. Note that specifying a phase overrides specifying a goal.
         * @return the phase
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top