Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,113 for bstart (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. android/guava/src/com/google/common/io/LineBuffer.java

              line.append(cbuf, start, pos - start);
              finishLine(true);
              start = pos + 1;
              break;
    
            default:
              // do nothing
          }
        }
        line.append(cbuf, start, off + len - start);
      }
    
      /** Called when a line is complete. */
      @CanIgnoreReturnValue
      private boolean finishLine(boolean sawNewline) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/LineBuffer.java

              line.append(cbuf, start, pos - start);
              finishLine(true);
              start = pos + 1;
              break;
    
            default:
              // do nothing
          }
        }
        line.append(cbuf, start, off + len - start);
      }
    
      /** Called when a line is complete. */
      @CanIgnoreReturnValue
      private boolean finishLine(boolean sawNewline) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/base/timings.go

    }
    
    func (t *Timings) append(labels []string, start bool) {
    	t.list = append(t.list, timestamp{time.Now(), strings.Join(labels, ":"), start})
    }
    
    // Start marks the beginning of a new phase and implicitly stops the previous phase.
    // The phase name is the colon-separated concatenation of the labels.
    func (t *Timings) Start(labels ...string) {
    	t.append(labels, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        protected long queryTime;
    
        // for testing
        protected QueryResponseList(final List<Map<String, Object>> documentList, final int start, final int pageSize, final int offset) {
            this.parent = documentList;
            this.offset = offset;
            this.start = start;
            this.pageSize = pageSize;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/statefulsetordinals.go

    type StatefulSetOrdinalsApplyConfiguration struct {
    	Start *int32 `json:"start,omitempty"`
    }
    
    // StatefulSetOrdinalsApplyConfiguration constructs an declarative configuration of the StatefulSetOrdinals type for use with
    // apply.
    func StatefulSetOrdinals() *StatefulSetOrdinalsApplyConfiguration {
    	return &StatefulSetOrdinalsApplyConfiguration{}
    }
    
    // WithStart sets the Start field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/Names.java

                        baseName.append(name.substring(start + 1, end));
                    } else {
                        baseName.append(name.substring(start, end));
                        lowerBaseName.append('-');
                    }
                    lowerBaseName.append(Character.toLowerCase(name.charAt(start)));
                    lowerBaseName.append(name.substring(start + 1, end));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. src/regexp/syntax/make_perl_groups.pl

      my ($class) = @_;
      my $regexp = "[$class]";
      my $start = -1;
      for (my $i=0; $i<=129; $i++) {
        if ($i == 129) { $i = 256; }
        if ($i <= 128 && ($overrides{"$class:$i"} // chr($i) =~ $regexp)) {
          if ($start < 0) {
            $start = $i;
          }
        } else {
          if ($start >= 0) {
            push @ranges, [$start, $i-1];
          }
          $start = -1;
        }
      }
      return @ranges;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top