Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 928 for tuning (0.35 sec)

  1. src/runtime/race/output_test.go

    Previous write at 0x[0-9,a-f]+ by main goroutine:
      main\.store\(\)
          .+/main\.go:14 \+0x[0-9,a-f]+
      main\.main\(\)
          .+/main\.go:10 \+0x[0-9,a-f]+
    
    Goroutine [0-9] \(running\) created at:
      main\.startRacer\(\)
          .+/main\.go:19 \+0x[0-9,a-f]+
      main\.main\(\)
          .+/main\.go:9 \+0x[0-9,a-f]+
    ==================
    Found 1 data race\(s\)
    exit status 66
    `}},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 20:44:25 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  5. 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)
  6. 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 (1)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr2_build_lifecycle.adoc

    > Configure project :app
    BUILD SCRIPT: This is executed during the configuration phase       //<2>
    REGISTER TASK1: This is executed during the configuration phase     //<2>
    NAMED TASK1: This is executed during the configuration phase        //<2>
    
    > Task :app:task1
    NAMED TASK1 - doFirst: This is executed during the execution phase  //<3>
    NAMED TASK1 - doLast: This is executed during the execution phase   //<3>
    
    BUILD SUCCESSFUL in 25s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 05:44:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/buildlifecycle/basic/tests/buildlifecycle.out

    This is executed during the initialization phase.
    
    > Configure project :
    This is executed during the configuration phase.
    This is executed during the configuration phase as well, because :testBoth is used in the build.
    
    > Task :test
    This is executed during the execution phase.
    
    > Task :testBoth
    This is executed first during the execution phase.
    This is executed last during the execution phase.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 452 bytes
    - Viewed (0)
Back to top