Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,380 for tstart (0.81 sec)

  1. src/cmd/trace/pprof.go

    type interval struct {
    	start, end trace.Time
    }
    
    func (i interval) duration() time.Duration {
    	return i.end.Sub(i.start)
    }
    
    func (i1 interval) overlap(i2 interval) time.Duration {
    	// Assume start1 <= end1 and start2 <= end2
    	if i1.end < i2.start || i2.end < i1.start {
    		return 0
    	}
    	if i1.start < i2.start { // choose the later one
    		i1.start = i2.start
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

            when:
            async {
                start {
                    events1.each {
                        broadcaster.foo(it)
                    }
                }
                start {
                    events2.each {
                        broadcaster.foo(it)
                    }
                }
                start {
                    events3.each {
                        broadcaster.foo(it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

            def oldDistApi = new ToolingApi(last, temporaryFolder)
    
            buildFile << "apply plugin: 'java'"
    
            when:
            concurrent.start { useToolingApi(toolingApi) }
            concurrent.start { useToolingApi(oldDistApi) }
    
            then:
            concurrent.finished()
        }
    
        def useToolingApi(ToolingApi target) {
            target.withConnection { ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. src/cmd/trace/tasks.go

    	}
    
    	return &taskFilter{name: strings.Join(name, ","), cond: conditions}, nil
    }
    
    func taskInterval(t *parsedTrace, s *trace.UserTaskSummary) interval {
    	var i interval
    	if s.Start != nil {
    		i.start = s.Start.Time()
    	} else {
    		i.start = t.startTime()
    	}
    	if s.End != nil {
    		i.end = s.End.Time()
    	} else {
    		i.end = t.endTime()
    	}
    	return i
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/internal/objfile/disasm.go

    // Decode disassembles the text segment range [start, end), calling f for each instruction.
    func (d *Disasm) Decode(start, end uint64, relocs []Reloc, gnuAsm bool, f func(pc, size uint64, file string, line int, text string)) {
    	if start < d.textStart {
    		start = d.textStart
    	}
    	if end > d.textEnd {
    		end = d.textEnd
    	}
    	code := d.text[:end-d.textStart]
    	lookup := d.lookup
    	for pc := start; pc < end; {
    		i := pc - d.textStart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Ints.java

        final int[] array;
        final int start;
        final int end;
    
        IntArrayAsList(int[] array) {
          this(array, 0, array.length);
        }
    
        IntArrayAsList(int[] array, int start, int end) {
          this.array = array;
          this.start = start;
          this.end = end;
        }
    
        @Override
        public int size() {
          return end - start;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/TestWorkerProgressListenerTest.groovy

            1 * progressLoggerFactory.newOperation(TestWorkerProgressListener.class, parentProgressLogger) >> testWorkerProgressLogger2
            1 * testWorkerProgressLogger1.start(testEvent1.progressLoggerDescription, testEvent1.progressLoggerDescription)
            1 * testWorkerProgressLogger2.start(testEvent2.progressLoggerDescription, testEvent2.progressLoggerDescription)
            testWorkerProgressListener.testWorkerProgressLoggers.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. cluster/images/etcd/migrate/integration_test.go

    				}
    				migrator := &Migrator{server.cfg, dataDir, server.client}
    				err = migrator.MigrateIfNeeded(start)
    				if err != nil {
    					t.Fatalf("Migration failed: %v", err)
    				}
    				err = server.Start(start.version)
    				if err != nil {
    					t.Fatalf("Failed to start server: %v", err)
    				}
    			})
    
    			// Write a value to each server, read it back.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Splitter.java

               * of the next returned substring -- so nextStart stays the same.
               */
              offset++;
              if (offset > toSplit.length()) {
                offset = -1;
              }
              continue;
            }
    
            while (start < end && trimmer.matches(toSplit.charAt(start))) {
              start++;
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/DiscreteDomain.java

          }
          return result;
        }
    
        @Override
        public long distance(Long start, Long end) {
          long result = end - start;
          if (end > start && result < 0) { // overflow
            return Long.MAX_VALUE;
          }
          if (end < start && result > 0) { // underflow
            return Long.MIN_VALUE;
          }
          return result;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top