Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 755 for told (0.05 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    		dotColor(float64(node.CumValue())/float64(abs64(b.config.Total)), true))
    
    	// Add on extra attributes if provided.
    	if attrs != nil {
    		// Make bold if specified.
    		if attrs.Bold {
    			attr += ` style="bold,filled"`
    		}
    
    		// Add peripheries if specified.
    		if attrs.Peripheries != 0 {
    			attr += fmt.Sprintf(` peripheries=%d`, attrs.Peripheries)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/css/base.css

        padding-left: 1.125em;
        padding-right: 1.25em;
    }
    
    .note p:first-child:before {
        content: "Note: ";
        font-weight: bold;
    }
    
    .tip p:first-child:before {
        content: "Tip: ";
        font-weight: bold;
    }
    
    .note .title, .tip .title {
        margin-left: 0px;
    }
    
    .tip h1, .note h1
    .tip h2, .note h2,
    .tip h3, .note h3,
    .tip h4, .note h4,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

         * Specifies the Java home directory to use for this operation.
         * <p>
         * {@link org.gradle.tooling.model.build.BuildEnvironment} model contains information such as Java or Gradle environment.
         * If you want to get hold of this information you can ask tooling API to build this model.
         * <p>
         * If not configured or null is passed, then the sensible default will be used.
         *
         * @param javaHome to use for the Gradle process
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. src/runtime/lockrank_on.go

    	}
    }
    
    // acquireLockRankAndM acquires a rank which is not associated with a mutex
    // lock. To maintain the invariant that an M with m.locks==0 does not hold any
    // lock-like resources, it also acquires the M.
    //
    // This function may be called in nosplit context and thus must be nosplit.
    //
    //go:nosplit
    func acquireLockRankAndM(rank lockRank) {
    	acquirem()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/regexp/syntax/regexp.go

    	switch re.Op {
    	default:
    		return 0, 0
    
    	case OpLiteral:
    		// If literal is fold-sensitive, return (flagI, 0) or (0, flagI)
    		// according to whether (?i) is active.
    		// If literal is not fold-sensitive, return 0, 0.
    		for _, r := range re.Rune {
    			if minFold <= r && r <= maxFold && unicode.SimpleFold(r) != r {
    				if re.Flags&FoldCase != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top