Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for DecInt (1.26 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionFailureIntegrationTest.groovy

            failure.assertHasDescription("Problem configuring task :other:someTask from command line.")
            failure.assertHasCause("Unknown command-line option '--first'.")
        }
    
        def "using an unknown option yields decent error message"() {
            given:
            buildFile << """
                task foo
                task someTask(type: SomeTask)
                task someTask2(type: SomeTask)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/runtime/proflabel.go

    	// setProfLabel operations, not just the most recent one. This
    	// is important because profBuf.read will observe different
    	// labels set by different setProfLabel operations on
    	// different goroutines, so it needs to synchronize with all
    	// of them (this wouldn't be an issue if we could synchronize
    	// on &getg().labels since we would synchronize with each
    	// most-recent labels write separately.)
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistry.java

    import java.util.Map;
    import java.util.Optional;
    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    /**
     * Reuses the services for the most recent Gradle user home dir. Could instead cache several most recent and clean these up on memory pressure, however in practise there is only a single user home dir associated with a given build process.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. 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)
  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. .github/bot_config.yml

       
          * Try Google Colab to use TensorFlow.
             * The easiest way to use TF will be to switch to [google colab](https://colab.sandbox.google.com/notebooks/welcome.ipynb#recent=true). You get pre-installed latest stable TF version. Also you can use ```pip install```  to install any other preferred TF version.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/FileZipInput.java

                    throw new FileException(e);
                }
            }
        }
    
        /**
         * {@link ZipFile} is more efficient, but causes memory leaks on older Java versions, so we only use it on more recent ones.
         */
        private static boolean isZipFileSafeToUse() {
            String versionString = System.getProperty("java.specification.version");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. 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)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r10rc1/PassingCommandLineArgumentsCrossVersionSpec.groovy

            debug.count("debugging stuff") == 1
            debug.count("infoing stuff") == 1
    
            and:
            info.count("debugging stuff") == 0
            info.count("infoing stuff") == 1
        }
    
        def "gives decent feedback for invalid option"() {
            when:
            withConnection { ProjectConnection it ->
                it.newBuild().withArguments('--foreground').run()
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/go/ast/commentmap.go

    		for r.end.Offset <= qpos.Offset {
    			// determine recent node group
    			if top := stack.pop(r.comment.Pos()); top != nil {
    				pg = top
    				pgend = fset.Position(pg.End())
    			}
    			// Try to associate a comment first with a node group
    			// (i.e., a node of "importance" such as a declaration);
    			// if that fails, try to associate it with the most recent
    			// node.
    			// TODO(gri) try to simplify the logic below
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top