Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,431 for tuning (0.24 sec)

  1. cmd/main.go

    	cli.BoolFlag{
    		Name:   "compat",
    		Usage:  "enable strict S3 compatibility by turning off certain performance optimizations",
    		Hidden: true,
    	},
    	// This flag is hidden and to be used only during certain performance testing.
    	cli.BoolFlag{
    		Name:   "no-compat",
    		Usage:  "disable strict S3 compatibility by turning on certain performance optimizations",
    		Hidden: true,
    	},
    }
    
    // Help template for minio.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vcweb/vcstest/vcstest_test.go

    	host = flag.String("host", "localhost", "hostname on which to serve HTTP")
    	port = flag.Int("port", -1, "port on which to serve HTTP; if nonnegative, skips running tests")
    )
    
    func TestMain(m *testing.M) {
    	flag.Parse()
    
    	if *port >= 0 {
    		err := serveStandalone(*host, *port)
    		if err != nil {
    			log.Fatal(err)
    		}
    		os.Exit(0)
    	}
    
    	m.Run()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 16:04:21 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    You can also list the tasks only available in the `app` subproject by running `./gradlew :app:tasks`.
    
    TIP: You can obtain more information in the task listing using the `--all` option: `./gradlew tasks --all`.
    
    In <<part1_gradle_init.adoc#part1_begin,part 1>> of the tutorial, we ran the `build` task using the `./gradlew build` command.
    
    == Step 2. Understanding Tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/trieval.go

    // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
    
    package idna
    
    // This file contains definitions for interpreting the trie value of the idna
    // trie generated by "go run gen*.go". It is shared by both the generator
    // program and the resultant package. Sharing is achieved by the generator
    // copying gen_trieval.go to trieval.go and changing what's above this comment.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 04:45:15 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

                reference(injectedServiceType)
                text(" caused by invocation ")
                reference(getterName)
            }
                .exception("Accessing non-serializable type '$injectedServiceType' during execution time is unsupported.")
                .documentationSection(DocumentationSection.RequirementsDisallowedTypes)
                .build()
            problems.onProblem(problem)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/runtime/debug/stack.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package debug contains facilities for programs to debug themselves while
    // they are running.
    package debug
    
    import (
    	"internal/poll"
    	"os"
    	"runtime"
    	_ "unsafe" // for linkname
    )
    
    // PrintStack prints to standard error the stack trace returned by runtime.Stack.
    func PrintStack() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

        /**
         * The prefix for the message logged when an unhealthy condition is detected.
         * Used to strip this message from the logs during integration testing.
         */
        public static final String EXPIRE_DAEMON_MESSAGE = "The Daemon will expire ";
    
        /**
         * Used to determine if a status of a given severity has already been logged.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/types.go

    	"k8s.io/kubernetes/pkg/kubelet/lifecycle"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/cache"
    	schedulerframework "k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // Manager manages all the Device Plugins running on a node.
    type Manager interface {
    	// Start starts device plugin registration service.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonFeedbackIntegrationSpec.groovy

    task sleep {
        doLast {
            println 'taking a nap...'
            Thread.sleep(10000)
            println 'finished the nap...'
        }
    }
    """
    
            when:
            def sleeper = executer.withArguments('-i').withTasks('sleep').start()
    
            then:
            poll(60) {
                assert readLog(executer.daemonBaseDir).contains("taking a nap...")
            }
    
            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)
  10. android/guava/src/com/google/common/util/concurrent/AbstractIdleService.java

    import java.util.concurrent.Executor;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    
    /**
     * Base class for services that do not need a thread while "running" but may need one during startup
     * and shutdown. Subclasses can implement {@link #startUp} and {@link #shutDown} methods, each which
     * run in an executor which by default uses a separate thread for each method.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 13:59:28 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top