Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for RELEASE (0.93 sec)

  1. src/cmd/go/go_test.go

    	addVar(sys, 2)
    	tg.wantStale("p1", "stale dependency: runtime", "./testgo list claims p1 is NOT stale, incorrectly, after changing sys.go again")
    	tg.run("install", "p1")
    	tg.wantNotStale("p1", "", "./testgo list claims p1 is stale after building with new release")
    
    	// Restore to "old" release.
    	restore()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Scavenging free pages.
    //
    // This file implements scavenging (the release of physical pages backing mapped
    // memory) of free and unused pages in the heap as a way to deal with page-level
    // fragmentation and reduce the RSS of Go applications.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ==== Backward compatibility
    
    Our approach is to only do backwards-breaking Kotlin upgrades on a major Gradle release. We will always clearly document which Kotlin version we ship and announce upgrade plans before a major release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    func (item *WorkChannelItem) Close() {
    	item.lock.Lock()
    	defer item.lock.Unlock()
    	if item.out != nil {
    		close(item.out)
    		item.out = nil
    	}
    }
    
    // Release blocks until all work is passed on the chain
    func (item *WorkChannelItem) Release() {
    	item.lock.Lock()
    	defer item.lock.Unlock()
    	item.pause = false
    	for i := 0; i < item.queue; i++ {
    		item.out <- struct{}{}
    	}
    	item.queue = 0
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ppc64/ssa.go

    		// LDAR or LWAR
    		p0 := s.Prog(ld)
    		p0.From.Type = obj.TYPE_MEM
    		p0.From.Reg = r0
    		p0.To.Type = obj.TYPE_REG
    		p0.To.Reg = ppc64.REGTMP
    		// If it is a Compare-and-Swap-Release operation, set the EH field with
    		// the release hint.
    		if v.AuxInt == 0 {
    			p0.AddRestSourceConst(0)
    		}
    		// CMP reg1,reg2
    		p1 := s.Prog(cmp)
    		p1.From.Type = obj.TYPE_REG
    		p1.From.Reg = r1
    		p1.To.Reg = ppc64.REGTMP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    				// Set this *after* we trace the end to make sure
    				// that we emit an in-progress event if this is
    				// the first event for the goroutine in the trace
    				// or trace generation. Also, do this between
    				// acquire/release because this is part of the
    				// goroutine's trace state, and it must be atomic
    				// with respect to the tracer.
    				gp.inMarkAssist = false
    				traceRelease(trace)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            conf.getAttributes().attribute(buildType, new BuildTypeImpl(name: 'release'))
    
            then:
            !conf.attributes.isEmpty()
            conf.attributes.getAttribute(flavor).name == 'free'
            conf.attributes.getAttribute(buildType).name == 'release'
        }
    
        def "cannot define two attributes with the same name but different types"() {
            def conf = conf()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    	switch {
    	case p == 0:
    		return nil, 0
    	case p&(align-1) == 0:
    		return unsafe.Pointer(p), size + align
    	case GOOS == "windows":
    		// On Windows we can't release pieces of a
    		// reservation, so we release the whole thing and
    		// re-reserve the aligned sub-region. This may race,
    		// so we may have to try again.
    		sysFreeOS(unsafe.Pointer(p), size+align)
    		p = alignUp(p, align)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            mavenRepo.module("org", "a", "2.0").publish()
            mavenRepo.module("org", "c", "1.0").dependsOn("org", "d", "1.0").publish()
            mavenRepo.module("org", "d", "1.0").dependsOn("org", "e", "latest.release").publish()
    
    
            buildFile << """
                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
                configurations {
                    compile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // addListener says that listeners execute 'immediate' if the future isDone(). However, our
        // protocol for completing a future is to assign the value field (which sets isDone to true) and
        // then to release waiters, followed by executing afterDone(), followed by releasing listeners.
        // That means that it is possible to observe that the future isDone and that your listeners
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top