Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 181 for warmup (0.12 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

        Property<String> getBaselines() {
            return baselines
        }
    
        @Option(option = "warmups", description = "Number of warmups before measurements")
        void setWarmups(@Nullable String warmups) {
            this.warmups = warmups
        }
    
        @Option(option = "runs", description = "Number of iterations of measurements")
        void setRuns(@Nullable String runs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                    performanceTestCommandLine(
                        "clean performance:%testProject%PerformanceAdHocTest --tests \"%scenario%\"",
                        "%performance.baselines%",
                        """--warmups %warmups% --runs %runs% --checks %checks% --channel %channel% --profiler %profiler% %additional.gradle.parameters%""",
                        os,
                        arch,
                        "%testJavaVersion%",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-plugin-performance/src/performanceTest/groovy/org/gradle/performance/BuildScanPluginPerformanceTest.groovy

        public static final int WARMUPS = 10
        public static final int INVOCATIONS = 20
    
        def "with and without plugin application (#scenario)"() {
            given:
            def jobArgs = ['--continue', '-Dscan.capture-task-input-files'] + scenarioArgs
    
            runner.baseline {
                warmUpCount WARMUPS
                invocationCount INVOCATIONS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 09:04:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/markdown/MarkdownHtmlCompile.groovy

            }
        }
    
        def doGenerateIndex() {
            File indexFile = new File(destinationDir, "index.html")
            indexFile.withWriter { writer ->
                def markup = new groovy.xml.MarkupBuilder(writer)  // the builder
                markup.html{
                    h1"Sample Userguide"
                    h2"Content"
                    ol {
                        getSource().each { sourceFile ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/runtime/lock_sema.go

    		throw("notewakeup - double wakeup")
    	default:
    		// Must be the waiting m. Wake it up.
    		semawakeup((*m)(unsafe.Pointer(v)))
    	}
    }
    
    func notesleep(n *note) {
    	gp := getg()
    	if gp != gp.m.g0 {
    		throw("notesleep not on g0")
    	}
    	semacreate(gp.m)
    	if !atomic.Casuintptr(&n.key, 0, uintptr(unsafe.Pointer(gp.m))) {
    		// Must be locked (got wakeup).
    		if n.key != locked {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java

                final Map<String, AccessResultImpl<Long>> arMap = dataHelper.getAccessResultMap(accessResult.getSessionId());
                if (arMap.containsKey(accessResult.getUrl())) {
                    throw new CrawlerSystemException(accessResult.getUrl() + " already exists.");
                }
                arMap.put(accessResult.getUrl(), accessResult);
            }
    
        }
    
        /*
         * (non-Javadoc)
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

            gradleStep(
                listOf(
                    "clean",
                    "performance:${testProject}PerformanceAdHocTest",
                    tests.map { """--tests "$it"""" }.joinToString(" "),
                    """--warmups 2 --runs 2 --checks none""",
                    "-PtestJavaVersion=${os.perfTestJavaVersion.major}",
                    "-PtestJavaVendor=${os.perfTestJavaVendor}",
                    "-PautoDownloadAndroidStudio=true",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MemoryDataHelper.java

            Map<String, AccessResultImpl<Long>> arMap = sessionMap.get(sessionId);
            if (arMap == null) {
                arMap = new HashMap<>();
                sessionMap.put(sessionId, arMap);
            }
            return arMap;
        }
    
        public synchronized void deleteAccessResultMap(final String sessionId) {
            sessionMap.remove(sessionId);
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/runtime/netpoll_aix.go

    	rdwake         int32
    	wrwake         int32
    	pendingUpdates int32
    
    	netpollWakeSig atomic.Uint32 // used to avoid duplicate calls of netpollBreak
    )
    
    func netpollinit() {
    	// Create the pipe we use to wakeup poll.
    	r, w, errno := nonblockingPipe()
    	if errno != 0 {
    		throw("netpollinit: failed to create pipe")
    	}
    	rdwake = r
    	wrwake = w
    
    	// Pre-allocate array of pollfd structures for poll.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/xml-markup-interpolation/pom.xml

      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-3924</name>
      <description>
        Test that interpolation of properties that resolve to XML markup doesn't crash the project builder.
      </description>
    
      <properties>
        <!-- That's the property containing escaped XML markup -->
        <xmlMarkup>&lt;?xml version='1.0'?&gt;Tom&amp;Jerry</xmlMarkup>
        <!-- That's a property where the above property will be resolved -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top