Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,090 for runfinq (0.12 sec)

  1. src/main/java/org/codelibs/fess/util/InputStreamThread.java

            br = new BufferedReader(new InputStreamReader(is, charset));
        }
    
        @Override
        public void run() {
            boolean running = true;
            while (running) {
                try {
                    final String line = br.readLine();
                    if (line == null) {
                        running = false;
                    } else {
                        if (logger.isDebugEnabled()) {
                            logger.debug(line);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g1 := t.Generation(1)
    
    	// A running goroutine blocks.
    	b10 := g1.Batch(trace.ThreadID(0), 0)
    	b10.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b10.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning)
    	b10.Event("GoStop", "whatever", testgen.NoStack)
    
    	// The running goroutine gets unblocked.
    	b11 := g1.Batch(trace.ThreadID(1), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomBinaryTasksIntegrationTest.groovy

                    ":assemble"
    
            output.contains "running sampleLibBinaryOneTaskOne"
            output.contains "running sampleLibBinaryOneTaskTwo"
            output.contains "running sampleLibBinaryTwoTaskOne"
            output.contains "running sampleLibBinaryTwoTaskTwo"
        }
    
        def "reports failure in rule method"() {
            given:
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/node/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/node/v1beta1";
    
    // Overhead structure represents the resource overhead associated with running a pod.
    message Overhead {
      // podFixed represents the fixed resource overhead associated with running a pod.
      // +optional
      map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> podFixed = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/async/ServiceLifecycle.java

     */
    public class ServiceLifecycle implements AsyncStoppable {
        private enum State {RUNNING, STOPPING, STOPPED}
    
        private final String displayName;
        private final Lock lock = new ReentrantLock();
        private final Condition condition = lock.newCondition();
        private final Map<Thread, Integer> usages = new HashMap<>();
        private State state = State.RUNNING;
    
        public ServiceLifecycle(String displayName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/emitdata_test.go

    		true, rdir, edir)
    
    	// We expect an error here.
    	if err == nil {
    		t.Logf("%s", output)
    		t.Fatalf("running 'harness -tp %s': did not get expected error", tp)
    	}
    
    	got := strings.TrimSpace(string(output))
    	want := "WriteCountersDir invoked for program built"
    	if !strings.Contains(got, want) {
    		t.Errorf("running 'harness -tp %s': got:\n%s\nwant: %s",
    			tp, got, want)
    	}
    	upmergeCoverData(t, edir, naMode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/kubectlcmd/kubectlcmd.go

    	if r.runningTasks.IsEmpty() {
    		return
    	}
    	common.LogAndPrintf("The following fetches are still running: \n")
    	for t := range r.runningTasks {
    		common.LogAndPrintf("  %s\n", t)
    	}
    	common.LogAndPrintf("\n")
    }
    
    func (r *Runner) addRunningTask(task string) {
    	// Limit the concurrency of running tasks.
    	r.taskSem <- struct{}{}
    
    	r.runningTasksMu.Lock()
    	defer r.runningTasksMu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/pilot.libsonnet

        + row.withPanels([
          panels.timeSeries.simple('Pilot Versions', queries.istioBuild, 'Version number of each running instance'),
        ]),
      ], panelHeight=5)
      + grid.makeGrid([
        row.new('Resource Usage')
        + row.withPanels([
          panels.timeSeries.bytes('Memory Usage', queries.goMemoryUsage, 'Memory usage of each running instance'),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/cc/training/coordinator.h

      ~Coordinator();
    
      /// Registers a runner, i.e. a unit of running threads which is usually a
      /// QueueRunner. It takes the ownership of runner to avoid lifecycle-related
      /// problems. Note, the coordinator would not start these threads; they are
      /// supposed to be in running state when they are registered here.
      Status RegisterRunner(std::unique_ptr<RunnerInterface> runner);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/node/v1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/node/v1";
    
    // Overhead structure represents the resource overhead associated with running a pod.
    message Overhead {
      // podFixed represents the fixed resource overhead associated with running a pod.
      // +optional
      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> podFixed = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top