Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,997 for START (0.11 sec)

  1. src/cmd/objdump/main.go

    // symbols with names matching the regular expression.
    //
    // Alternate usage:
    //
    //	go tool objdump binary start end
    //
    // In this mode, objdump disassembles the binary starting at the start address and
    // stopping at the end address. The start and end addresses are program
    // counters written in hexadecimal with optional leading 0x prefix.
    // In this mode, objdump prints a sequence of stanzas of the form:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/trace/testdata/testprog/main.go

    	cpuHog(20 * time.Millisecond)
    }
    
    func cpuHog(dt time.Duration) {
    	start := time.Now()
    	for i := 0; ; i++ {
    		if i%1000 == 0 && time.Since(start) > dt {
    			return
    		}
    	}
    }
    
    func allocHog(dt time.Duration) {
    	start := time.Now()
    	var s [][]byte
    	for i := 0; ; i++ {
    		if i%1000 == 0 {
    			if time.Since(start) > dt {
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/Bytes.java

        final byte[] array;
        final int start;
        final int end;
    
        ByteArrayAsList(byte[] array) {
          this(array, 0, array.length);
        }
    
        ByteArrayAsList(byte[] 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
    - 14.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

            try {
                final long start = System.currentTimeMillis();
                final SuggestWriterResult result = suggestWriter.write(client, settings, index, array, true);
                return new SuggestIndexResponse(items.length, items.length, result.getFailures(), System.currentTimeMillis() - start);
            } catch (final Exception e) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. src/encoding/json/indent.go

    			if start < i {
    				dst = append(dst, src[start:i]...)
    			}
    			dst = append(dst, '\\', 'u', '2', '0', '2', hex[src[i+2]&0xF])
    			start = i + 3
    		}
    		v := scan.step(scan, c)
    		if v >= scanSkipSpace {
    			if v == scanError {
    				break
    			}
    			if start < i {
    				dst = append(dst, src[start:i]...)
    			}
    			start = i + 1
    		}
    	}
    	if scan.eof() == scanError {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal.go

    		if xmlname.name != "" {
    			start.Name.Space, start.Name.Local = xmlname.xmlns, xmlname.name
    		} else {
    			fv := xmlname.value(val, dontInitNilPointers)
    			if v, ok := fv.Interface().(Name); ok && v.Local != "" {
    				start.Name = v
    			}
    		}
    	}
    	if start.Name.Local == "" && finfo != nil {
    		start.Name.Space, start.Name.Local = finfo.xmlns, finfo.name
    	}
    	if start.Name.Local == "" {
    		name := typ.Name()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/deployment/internal/DefaultDeploymentRegistryTest.groovy

            objectFactory.newInstance(TestDeploymentHandle) >> testHandle
            testHandle.running >> true
    
            registry.start("id1", DeploymentRegistry.ChangeBehavior.NONE, TestDeploymentHandle)
            registry.start("id2", DeploymentRegistry.ChangeBehavior.NONE, TestDeploymentHandle)
            registry.start("id3", DeploymentRegistry.ChangeBehavior.NONE, TestDeploymentHandle)
    
            when:
            registry.stop()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceProjectLockTest.groovy

            when:
            async {
                start {
                    workerLeaseService.withLocks([taskLease]) {
                        instant.worker1Locked
                        thread.block()
                        instant.worker1Unlocked
                    }
                }
                start {
                    thread.blockUntil.worker1Locked
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. src/cmd/trace/goroutinegen.go

    		} else {
    			gs.stop(ev.Time(), ev.Stack(), ctx)
    		}
    	}
    	if !from.Executing() && to.Executing() {
    		start := ev.Time()
    		if from == trace.GoUndetermined {
    			// Back-date the event to the start of the trace.
    			start = ctx.startTime
    		}
    		gs.start(start, goID, ctx)
    	}
    
    	if from == trace.GoWaiting {
    		// Goroutine unblocked.
    		gs.unblock(ev.Time(), ev.Stack(), ev.Goroutine(), ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildGateIntegrationTest.groovy

                    static BuildGateKeeper gateKeeper
                    static void start(ContinuousExecutionGate continuousExecutionGate) {
                        if (gateKeeper == null) {
                            println "Starting gatekeeper"
                            gateKeeper = new BuildGateKeeper(continuousExecutionGate)
                            new Thread(gateKeeper).start()
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top