Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 340 for DecInt (0.12 sec)

  1. 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)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/protocol/InterHubMessage.java

            /**
             * Message should be delivered to all current handlers. Discarded if no handler is available.
             */
            AllHandlers,
            /**
             * Message should be delivered to all handlers. Most recent stateful message is queued and also delivered to each new handler.
             */
            Stateful
        }
    
        public abstract Delivery getDelivery();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. test/fixedbugs/issue27518a.go

    	// At this point x's dead stack slot points to dead memory.
    
    	// Trigger a sigpanic. Since this is an implicit panic, we
    	// don't have an explicit liveness map here.
    	// Traceback used to use the liveness map of the most recent defer,
    	// but in that liveness map, x will be live again even though
    	// it points to dead memory. The fix is to use the liveness
    	// map of a deferreturn call instead.
    	*nilp = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:23 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/objectivecpp/ObjectiveCppUnsupportedIntegrationTest.groovy

        def helloWorldApp = new ObjectiveCppHelloWorldApp()
    
        def "setup"() {
            buildFile << helloWorldApp.pluginScript
            buildFile << helloWorldApp.extraConfiguration
        }
    
        def "fails with decent error message with visual studio toolchain"() {
            given:
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec)
        }
    }
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. .github/workflows/stale-pr.yml

              exempt-pr-labels: "from:contributor"
              stale-pr-label: stale
              stale-pr-message: >
                This pull request has been automatically marked as stale because it has not had recent activity.
                It will be closed in 14 days if no further activity occurs.
                If you don't want the stale bot to close it, then set a milestone for it.
              days-before-pr-close: 14
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_pseudo_other_branch.txt

    # tag that appears in any commit that is a (transitive) parent of the commit
    # supplied to 'go get', regardless of branches
    
    [short] skip
    [!git] skip
    
    # For this test repository:
    #  tag v0.2.1 is most recent tag on master itself
    #  tag v0.2.2 is on branch2, which was then merged to master
    #  master is a merge commit with both tags as parents
    #
    # The pseudo-version hence sorts immediately after v0.2.2 rather
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/BinaryTypeModelRuleExtractorTest.groovy

                assert role == ModelActionRole.Mutate
                assert action.subject == ModelReference.of(ComponentSpecFactory)
            }
            0 * _
        }
    
        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
    - 9.6K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLock.java

     * limitations under the License.
     */
    package org.gradle.cache;
    
    import java.io.Closeable;
    import java.io.File;
    
    public interface FileLock extends Closeable, FileAccess {
        /**
         * Returns true if the most recent mutation method ({@link #updateFile(Runnable)} or {@link #writeFile(Runnable)} attempted by any process succeeded
         * (ie a process did not crash while updating the target file).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/ProjectDependencyFactoryTest.groovy

            projectDependency.getDependencyProject() == projectDummy
            projectDependency.targetConfiguration == "compile"
            projectDependency.isTransitive() == expectedTransitive
        }
    
        def "fails with decent message if provided map is invalid"() {
            given:
            projectFinder.getProject(':foo:bar') >> projectDummy
    
            when:
            factory.createFromMap(projectFinder, GUtil.map("paths", ":foo:bar"));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top