Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 941 for Starting (0.32 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/dataFlowInfoProvider/AbstractExitPointSnapshotTest.kt

            var candidate = PsiTreeUtil.findElementOfClassAtOffset(mainFile, textRange.startOffset, KtExpression::class.java, true)
                ?: error("Cannot find a starting element in range $textRange")
    
            while (true) {
                val parent = candidate.parent
                if (parent is KtExpression && parent.textRange in textRange && parent.startOffset == candidate.startOffset) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJvmVersionDetector.java

            if(parentFolder == null || !parentFolder.exists()) {
                Exception cause = new NoSuchFileException(javaCommand);
                throw new ExecException("A problem occurred starting process 'command '" + javaCommand + "''", cause);
            }
            return getVersionFromJavaHome(parentFolder.getParentFile());
        }
    
        private int getVersionFromJavaHome(File javaHome) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationTimeline.java

            return new DeprecationTimeline("This will change in %s.", version);
        }
    
        static DeprecationTimeline startingWithVersion(GradleVersion version, String message) {
            return new DeprecationTimeline("Starting with %s, %s.", version, message);
        }
    
        @Override
        public String toString() {
            return message == null ? String.format(messagePattern, targetVersion) : String.format(messagePattern, targetVersion, message);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonOutputConsumerTest.groovy

        }
    
        def "connecting streams is required initially"() {
            expect:
            illegalStateReportedWhen { consumer.start() }
            illegalStateReportedWhen { consumer.processOutput }
        }
    
        def "starting is required"() {
            when:
            consumer.connectStreams(process(""), "cool process", executor)
    
            then:
            illegalStateReportedWhen { consumer.processOutput }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/Environment.java

        /**
         * Common interface for tracked access to system properties and environment variables.
         */
        interface Properties {
            /**
             * Selects the properties that have a name longer than and starting with the given prefix.
             *
             * The returned map keys still contain the prefix.
             *
             * @return a map containing only the properties whose name start with the given prefix.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskLogger.kt

      queue: TaskQueue,
      block: () -> T,
    ): T {
      var startNs = -1L
      val loggingEnabled = isLoggable(Level.FINE)
      if (loggingEnabled) {
        startNs = queue.taskRunner.backend.nanoTime()
        log(task, queue, "starting")
      }
    
      var completedNormally = false
      try {
        val result = block()
        completedNormally = true
        return result
      } finally {
        if (loggingEnabled) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. docs/bucket/replication/test_del_marker_proxying.sh

    	rm -rf /tmp/siteb
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    
    # Start MinIO instances
    echo -n "Starting MinIO instances ..."
    minio server --address ":9001" --console-address ":10000" /tmp/sitea/{1...4}/disk{1...4} /tmp/sitea/{5...8}/disk{1...4} >/tmp/sitea_1.log 2>&1 &
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 11:38:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/go/types/typeparam.go

    // respective 64 bit atomic instructions are not available
    // on all platforms.
    var lastID atomic.Uint32
    
    // nextID returns a value increasing monotonically by 1 with
    // each call, starting with 1. It may be called concurrently.
    func nextID() uint64 { return uint64(lastID.Add(1)) }
    
    // A TypeParam represents a type parameter type.
    type TypeParam struct {
    	check *Checker  // for lazy type bound completion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/regexp/backtrack.go

    	if re.prog.Inst[pc].Op != syntax.InstFail && (arg || b.shouldVisit(pc, pos)) {
    		b.jobs = append(b.jobs, job{pc: pc, arg: arg, pos: pos})
    	}
    }
    
    // tryBacktrack runs a backtracking search starting at pos.
    func (re *Regexp) tryBacktrack(b *bitState, i input, pc uint32, pos int) bool {
    	longest := re.longest
    
    	b.push(re, pc, pos, false)
    	for len(b.jobs) > 0 {
    		l := len(b.jobs) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInstallation.groovy

            this.mvn = findMvnExecutable(home)
        }
    
        static File findMvnExecutable(File home) {
            def bin = new File(home, "bin")
            if (IS_WINDOWS) {
                // Maven moved from .bat to .cmd starting with 3.3.1 (3.3.0 was canceled)
                def bat = new File(bin, "mvn.bat")
                return bat.isFile() ? bat : new File(bin, "mvn.cmd")
            }
            return new File(bin, "mvn")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top