Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 181 for warmup (0.14 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/AbstractTaskOutputCachingPerformanceTest.groovy

            context.iteration >= firstWarmupWithCache || context.phase == Phase.MEASURE
        }
    
        boolean isFirstRunWithCache(BuildContext context) {
            context.iteration == firstWarmupWithCache && context.phase == Phase.WARM_UP
        }
    
        String getRemoteCacheSettingsScript() {
            """
                def httpCacheClass = Class.forName('org.gradle.caching.http.HttpBuildCache')
                buildCache {
                    local {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/encoding/Identifier.java

        private static final String NON_PRECOMPOSED_NON_ASCII = "-√æ∫ʙ₦∆√∫";
        private static final String FILESYSTEM_RESERVED_CHARS = "-./\\?%*:|\"<>";
        private static final String XML_MARKUP_CHARS = "-<with>some<xml-markup/></with>";
        private static final String GRADLE_NAME_FORBIDDEN_CHARACTERS = " /\\:<>\"?*|"; //See: NameValidator.FORBIDDEN_CHARACTERS
    
        private final String suffix;
        private final String displayName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/runtime/lock_futex.go

    // One-time notifications.
    func noteclear(n *note) {
    	n.key = 0
    }
    
    func notewakeup(n *note) {
    	old := atomic.Xchg(key32(&n.key), 1)
    	if old != 0 {
    		print("notewakeup - double wakeup (", old, ")\n")
    		throw("notewakeup - double wakeup")
    	}
    	futexwakeup(key32(&n.key), 1)
    }
    
    func notesleep(n *note) {
    	gp := getg()
    	if gp != gp.m.g0 {
    		throw("notesleep not on g0")
    	}
    	ns := int64(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/runtime/lock_wasip1.go

    	}
    	l.key = mutex_unlocked
    }
    
    // One-time notifications.
    func noteclear(n *note) {
    	n.key = 0
    }
    
    func notewakeup(n *note) {
    	if n.key != 0 {
    		print("notewakeup - double wakeup (", n.key, ")\n")
    		throw("notewakeup - double wakeup")
    	}
    	n.key = 1
    }
    
    func notesleep(n *note) {
    	throw("notesleep not supported by wasi")
    }
    
    func notetsleep(n *note, ns int64) bool {
    	throw("notetsleep not supported by wasi")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/ar.go

    	}
    
    	var arhdr ArHdr
    	l := nextar(f, f.Offset(), &arhdr)
    	if l <= 0 {
    		Exitf("%s missing armap", name)
    	}
    
    	var armap archiveMap
    	if arhdr.name == "/" || arhdr.name == "/SYM64/" {
    		armap = readArmap(name, f, arhdr)
    	} else {
    		Exitf("%s missing armap", name)
    	}
    
    	loaded := make(map[uint64]bool)
    	any := true
    	for any {
    		var load []uint64
    		returnAllUndefs := -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  6. cmd/warm-backend.go

    Harshavardhana <******@****.***> 1713699798 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/library-api-docs.adoc.template

    The code generated by the Build Init plugin already placed a comment on the `${sourceFile.raw}` file.
    Replace `/*` in the comment by `/**` so that it becomes `javadoc` markup:
    
    .src/main/${languageLC.raw}/${sourceFile.raw}
    [source,java]
    ----
    /**
     * This java source file was generated by the Gradle 'init' task.
     */
     ...
    ----
    Run the `javadoc` task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/runtime/trace.go

    // timer *and* nothing else will call wake concurrently.
    func (s *wakeableSleep) close() {
    	// Set wakeup to nil so that a late timer ends up being a no-op.
    	lock(&s.lock)
    	if raceenabled {
    		raceacquire(unsafe.Pointer(&s.lock))
    	}
    	wakeup := s.wakeup
    	s.wakeup = nil
    
    	// Close the channel.
    	close(wakeup)
    
    	if raceenabled {
    		racerelease(unsafe.Pointer(&s.lock))
    	}
    	unlock(&s.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. cmd/warm-backend-gcs.go

    Harshavardhana <******@****.***> 1713699798 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. cmd/warm-backend-minio.go

    Harshavardhana <******@****.***> 1713699798 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top