Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 496 for gold (0.04 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

         * @return The domain object list.
         * @since 6.1
         */
        <T> NamedDomainObjectList<T> namedDomainObjectList(Class<T> elementType);
    
        /**
         * Creates a {@link Property} implementation to hold values of the given type. The property has no initial value.
         *
         * <p>For certain types, there are more specialized property factory methods available:</p>
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/trace/goroutines.go

    	"log"
    	"net/http"
    	"slices"
    	"sort"
    	"strings"
    	"time"
    )
    
    // GoroutinesHandlerFunc returns a HandlerFunc that serves list of goroutine groups.
    func GoroutinesHandlerFunc(summaries map[trace.GoID]*trace.GoroutineSummary) http.HandlerFunc {
    	return func(w http.ResponseWriter, r *http.Request) {
    		// goroutineGroup describes a group of goroutines grouped by name.
    		type goroutineGroup struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/environment/kube/flags.go

    		LoadBalancerSupported: true,
    		Architecture:          ArchAMD64,
    	}
    	// hold kubeconfigs from command line to split later
    	kubeConfigs string
    	// hold controlPlaneTopology from command line to parse later
    	controlPlaneTopology string
    	// hold networkTopology from command line to parse later
    	networkTopology string
    	// hold configTopology from command line to parse later
    	configTopology string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. cmd/dependencyverifier/dependencyverifier.go

    			// disappeared entirely
    			log.Printf("Good news! Unwanted dependency %q is no longer referenced. Remove status.unwantedReferences[%q] in %s to ensure it doesn't get reintroduced.", expectedRef, expectedRef, dependenciesJSONPath)
    			needUpdate = true
    			continue
    		}
    		removedReferences, unwantedReferences := difference(expectedFrom, actualFrom)
    		if len(removedReferences) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 01:48:30 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. cmd/bucket-object-lock.go

    // For objects in "Compliance" mode, retention date cannot be shortened, and mode cannot be altered.
    // For objects with legal hold header set, the s3:PutObjectLegalHold permission is expected to be set
    // Both legal hold and retention can be applied independently on an object
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/sccp.go

    		OpNot:
    		lt1 := t.getLatticeCell(val.Args[0])
    
    		if lt1.tag == constant {
    			// here we take a shortcut by reusing generic rules to fold constants
    			t.latticeCells[val] = computeLattice(t.f, val, lt1.val)
    		} else {
    			t.latticeCells[val] = lattice{lt1.tag, nil}
    		}
    	// fold 2-input operations
    	case
    		// add
    		OpAdd64, OpAdd32, OpAdd16, OpAdd8,
    		OpAdd32F, OpAdd64F,
    		// sub
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/internal/trace/generation.go

    		if err != nil {
    			return nil, err
    		}
    		goid := GoID(g)
    		if g == 0 {
    			goid = NoGoroutine
    		}
    
    		// Read the sample's stack.
    		s, err := binary.ReadUvarint(r)
    		if err != nil {
    			return nil, err
    		}
    
    		// Add the sample to the slice.
    		samples = append(samples, cpuSample{
    			schedCtx: schedCtx{
    				M: mid,
    				P: pid,
    				G: goid,
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

            def stopMarkerFile = projectDir.file("stop.marker")
            def stopTimer = Time.startCountdownTimer(stopTimeoutMs)
            stopMarkerFile << new Date().toString()
    
            // Does the tooling API hold the JVM open (which will also hold the build open)?
            while (handle.running) {
                if (stopTimer.hasExpired()) {
                    // This test can fail if we have started a thread pool in Gradle and have not shut it down
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

          throw AssertionError("Thread ${Thread.currentThread().name} MUST hold lock on $this")
        }
      }
    
      @Suppress("NOTHING_TO_INLINE")
      internal inline fun Any.assertThreadDoesntHoldLock() {
        if (assertionsEnabled && taskRunner.lock.isHeldByCurrentThread) {
          throw AssertionError("Thread ${Thread.currentThread().name} MUST NOT hold lock on $this")
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    			(SLLI <typ.UInt64> [3] (ANDI <typ.UInt64> [3] ptr)))) mem)
    
    (AtomicAnd32 ...) => (LoweredAtomicAnd32 ...)
    
    (AtomicCompareAndSwap32 ptr old new mem) => (LoweredAtomicCas32 ptr (SignExt32to64 old) new mem)
    (AtomicCompareAndSwap64 ...) => (LoweredAtomicCas64 ...)
    
    (AtomicExchange(64|32) ...) => (LoweredAtomicExchange(64|32) ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
Back to top