Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for DecInt (0.12 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

      - 'scala-library'""")
        }
    
        def "gives decent error message when triggered with unknown dsl"() {
            when:
            fails('init', '--dsl', 'some-unknown-dsl')
    
            then:
            failure.assertHasCause("""The requested build script DSL 'some-unknown-dsl' is not supported. Supported DSLs:
      - 'kotlin'
      - 'groovy'""")
        }
    
        def "gives decent error message when using unknown test framework"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/runtime/mstats.go

    	// and only the garbage collector can run.
    	PauseTotalNs uint64
    
    	// PauseNs is a circular buffer of recent GC stop-the-world
    	// pause times in nanoseconds.
    	//
    	// The most recent pause is at PauseNs[(NumGC+255)%256]. In
    	// general, PauseNs[N%256] records the time paused in the most
    	// recent N%256th GC cycle. There may be multiple pauses per
    	// GC cycle; this is the sum of all pauses during a cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    			upperBoundCapacity: 5 * 2,
    			interval:           eventFreshDuration / 4,
    			expectCapacity:     5,
    			expectStartIndex:   0,
    		},
    		{
    			name:               "[capacity not equals 4*n] quarter of recent events outside eventFreshDuration cause cache shrinking",
    			eventCount:         5,
    			cacheCapacity:      5,
    			lowerBoundCapacity: 5 / 2,
    			upperBoundCapacity: 5 * 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/internal/ComponentTypeModelRuleExtractorTest.groovy

            "generalComponent" | ComponentModelBasePlugin
            "library"          | ComponentModelBasePlugin
            "application"      | ComponentModelBasePlugin
        }
    
        def "decent error message for rule declaration problem - #descr"() {
            def ruleMethod = ruleDefinitionForMethod(methodName)
            def ruleDescription = getStringDescription(ruleMethod.method)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. src/cmd/trace/gstate.go

    	// startRunning is the most recent event that caused a goroutine to
    	// transition to GoRunning.
    	startRunningTime trace.Time
    
    	// startSyscall is the most recent event that caused a goroutine to
    	// transition to GoSyscall.
    	syscall struct {
    		time   trace.Time
    		stack  trace.Stack
    		active bool
    	}
    
    	// startBlockReason is the StateTransition.Reason of the most recent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

         *
         * Those are the mount points of file systems that do not support watching.
         */
        private FileHierarchySet unwatchableFiles = FileHierarchySet.empty();
    
        /**
         * Hierarchies in usage order, most recent first.
         */
        private final Deque<File> hierarchies = new ArrayDeque<>();
        private final List<File> watchableHierarchiesSinceLastBuildFinish = new ArrayList<>();
    
        public WatchableHierarchies(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. src/runtime/debug/garbage.go

    	"runtime"
    	"slices"
    	"time"
    )
    
    // GCStats collect information about recent garbage collections.
    type GCStats struct {
    	LastGC         time.Time       // time of last collection
    	NumGC          int64           // number of garbage collections
    	PauseTotal     time.Duration   // total pause for all collections
    	Pause          []time.Duration // pause history, most recent first
    	PauseEnd       []time.Time     // pause end times history, most recent first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

            CipherSuite.TLS_RSA_WITH_AES_256_CBC_SHA,
            CipherSuite.TLS_RSA_WITH_3DES_EDE_CBC_SHA,
          )
    
        /** A secure TLS connection that requires a recent client platform and a recent server. */
        @JvmField
        val RESTRICTED_TLS =
          Builder(true)
            .cipherSuites(*RESTRICTED_CIPHER_SUITES.toTypedArray())
            .tlsVersions(TlsVersion.TLS_1_3, TlsVersion.TLS_1_2)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

                }
            }
    
            then:
            home.file("jdk/lib/tools.jar").absolutePath ==
                Jvm.forHome(home.file("jdk")).toolsJar.absolutePath
        }
    
        def "provides decent feedback if executable not found"() {
            given:
            def home = tmpDir.createDir("home")
            home.create {
                bin { file theOs.getExecutableName('java') }
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/internal/coverage/defs.go

    // files are of the form "covmeta.<hash>", where hash is a hash
    // computed from the hashes of all the package meta-data symbols in
    // the program.
    const MetaFilePref = "covmeta"
    
    // MetaFileVersion contains the current (most recent) meta-data file version.
    const MetaFileVersion = 1
    
    // MetaFileHeader stores file header information for a meta-data file.
    type MetaFileHeader struct {
    	Magic        [4]byte
    	Version      uint32
    	TotalLength  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top