Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 123 for args_ (0.04 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/EntryPoint.java

        /**
         * Unless the createCompleter() method is overridden, the JVM will exit before returning from this method.
         */
        public void run(String[] args) {
            RecordingExecutionListener listener = new RecordingExecutionListener();
            try {
                doAction(args, listener);
            } catch (Throwable e) {
                createErrorHandler().execute(e);
                listener.onFailure(e);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/gradle-cli-main/src/main/java/org/gradle/launcher/GradleMain.java

     */
    
    package org.gradle.launcher;
    
    import org.gradle.internal.jvm.GradleVersionNumberLoader;
    import org.gradle.launcher.bootstrap.ProcessBootstrap;
    
    public class GradleMain {
        public static void main(String[] args) throws Exception {
            String javaVersion = System.getProperty("java.specification.version");
            if (javaVersion.equals("1.6") || javaVersion.equals("1.7")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. gradlew

    if ! command -v xargs >/dev/null 2>&1
    then
        die "xargs is not available"
    fi
    
    # Use "xargs" to parse quoted args.
    #
    # With -n1 it outputs one arg per line, with the quotes and backslashes removed.
    #
    # In Bash we could simply go:
    #
    #   readarray ARGS < <( xargs -n1 <<<"$var" ) &&
    #   set -- "${ARGS[@]}" "$@"
    #
    # but POSIX shell has neither arrays nor command substitution, so instead we
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/configuration/DaemonParametersTest.groovy

            parameters.baseDir == new File(userHomeDir, "daemon")
            parameters.systemProperties.isEmpty()
            parameters.effectiveJvmArgs.size() == 1 + 3 // + 1 because effective JVM args contains -Dfile.encoding, +3 for locale props
        }
    
        def "configuring jvmargs replaces the defaults"() {
            when:
            parameters.setJvmArgs(["-Xmx17m"])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

            given:
            setupBuildWithDependencyResolution()
    
            expect:
            server.expectConcurrent(1, 'root', 'a', 'b')
            def models = withConnection {
                def action = action(new ActionRunsNestedActions())
                collectOutputs(action)
                action.addArguments(args)
                action.run()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/godefs.go

    	"os"
    	"path/filepath"
    	"strings"
    )
    
    // godefs returns the output for -godefs mode.
    func (p *Package) godefs(f *File, args []string) string {
    	var buf strings.Builder
    
    	fmt.Fprintf(&buf, "// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n")
    	fmt.Fprintf(&buf, "// %s %s\n", filepath.Base(args[0]), strings.Join(args[1:], " "))
    	fmt.Fprintf(&buf, "\n")
    
    	override := make(map[string]string)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingClosure.kt

        trackingProjectAccess(crossProjectModelAccess, referrerProject, delegate.thisObject)
    ) {
        @Suppress("unused")
        fun doCall(vararg args: Any) {
            val numClosureArgs = delegate.maximumNumberOfParameters
            val finalArgs: Array<out Any> = args.take(numClosureArgs).map { trackingProjectAccess(crossProjectModelAccess, referrerProject, it) }.toTypedArray()
            delegate.call(*finalArgs)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/internal/trace/base.go

    type baseEvent struct {
    	typ  event.Type
    	time Time
    	args timedEventArgs
    }
    
    // extra returns a slice representing extra available space in args
    // that the parser can use to pass data up into Event.
    func (e *baseEvent) extra(v version.Version) []uint64 {
    	switch v {
    	case version.Go122:
    		return e.args[len(go122.Specs()[e.typ].Args)-1:]
    	}
    	panic(fmt.Sprintf("unsupported version: go 1.%d", v))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/TrackingDynamicLookupRoutine.kt

                DeprecationLogger.whileDisabled(Factory<Map<String, *>> { receiver.properties })
            }
    
        override fun invokeMethod(receiver: DynamicObject, name: String, args: Array<Any>): Any? =
            withDynamicCall(receiver) {
                receiver.invokeMethod(name, *args)
            }
    
        override fun tryGetProperty(receiver: DynamicObject, name: String): DynamicInvokeResult =
            withDynamicCall(receiver) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. cmd/main.go

    }
    
    func printMinIOVersion(c *cli.Context) {
    	io.Copy(c.App.Writer, versionBanner(c))
    }
    
    // Main main for minio server.
    func Main(args []string) {
    	// Set the minio app name.
    	appName := filepath.Base(args[0])
    
    	if env.Get("_MINIO_DEBUG_NO_EXIT", "") != "" {
    		freeze := func(_ int) {
    			// Infinite blocking op
    			<-make(chan struct{})
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top