Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 464 for finishes (0.54 sec)

  1. src/unique/handle.go

    		// Run cleanup.
    		for _, f := range cf {
    			f()
    		}
    
    		// Run cleanup notifications.
    		for _, f := range cleanupNotify {
    			f()
    		}
    		cleanupNotify = nil
    
    		// Finished.
    		cleanupMu.Unlock()
    	})
    }
    
    // Implemented in runtime.
    
    //go:linkname runtime_registerUniqueMapCleanup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. test-site/app/controllers/Suggest.java

                return ok("Finished to create suggest from content");
            } catch (Exception e){
                Logger.error("Failed to create suggest index. ", e);
                return internalServerError();
            }
        }
    
    
    
        public static Result createContent() {
            ContentsCreator getter = new ContentsCreator();
            getter.create();
            return ok("Finished to create content index;");
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 06 08:48:32 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  3. cmd/metacache.go

    	dataVersion  uint8      `msg:"v"`
    }
    
    func (m *metacache) finished() bool {
    	return !m.ended.IsZero()
    }
    
    // worthKeeping indicates if the cache by itself is worth keeping.
    func (m *metacache) worthKeeping() bool {
    	if m == nil {
    		return false
    	}
    	cache := m
    	switch {
    	case !cache.finished() && time.Since(cache.lastUpdate) > metacacheMaxRunningAge:
    		// Not finished and update for metacacheMaxRunningAge, discard it.
    		return false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/healthz_test.go

    		if err != nil {
    			t.Errorf("Got %v, expected no error", err)
    		}
    		c.Step(1 * time.Millisecond)
    		err = healthCheck.Check(nil)
    		if err == nil || err.Error() != "not finished" {
    			t.Errorf("Got '%v', but expected error to be 'not finished'", err)
    		}
    		close(doneCh)
    		err = healthCheck.Check(nil)
    		if err != nil {
    			t.Errorf("Got %v, expected no error", err)
    		}
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  5. src/testing/example.go

    // If the test panicked with nil, or invoked runtime.Goexit, it'll be
    // made to fail and panic with errNilPanicOrGoexit
    func (eg *InternalExample) processRunResult(stdout string, timeSpent time.Duration, finished bool, recovered any) (passed bool) {
    	passed = true
    	dstr := fmtDuration(timeSpent)
    	var fail string
    	got := strings.TrimSpace(stdout)
    	want := strings.TrimSpace(eg.Output)
    	if eg.Unordered {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandle.java

         */
        void abort();
    
        /**
         * Waits for the process to finish. Returns immediately if the process has already completed.
         *
         * @return result
         */
        ExecResult waitForFinish();
    
        /**
         * Returns the result of the process execution, if it has finished.  If the process has not finished, returns null.
         */
        @Nullable
        ExecResult getExecResult();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/process/internal/MultiRequestWorkerProcessIntegrationTest.groovy

            then:
            def e = thrown(WorkerProcessException)
            e.message == 'Failed to run broken worker'
            e.cause instanceof ExecException
            e.cause.message.matches("Process 'broken worker 1' finished with non-zero exit value \\d+")
    
            cleanup:
            stopBroken(worker)
        }
    
        def "reports failure when worker halts handling request"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/node_expander.go

    	// Indicates whether kubelet should assume resize operation as finished.
    	// For kubelet - resize operation could be assumed as finished even if
    	// actual resizing is *not* finished. This can happen, because certain prechecks
    	// are failing and kubelet should not retry expansion, or it could happen
    	// because resize operation is genuinely finished.
    	assumeResizeFinished bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/SimpleTimeLimiterTest.java

        assertThat(stopwatch.elapsed(MILLISECONDS)).isIn(Range.closed(NOT_ENOUGH_MS, DELAY_MS * 2));
        // Is it still computing away anyway?
        assertThat(target.finished).isFalse();
        MILLISECONDS.sleep(ENOUGH_MS);
        assertThat(target.finished).isFalse();
      }
    
      public void testNewProxy_badMethodWithEnoughTime() throws Exception {
        SampleImpl target = new SampleImpl(DELAY_MS);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/graph/CachingDirectedGraphWalker.java

                    if (cacheValues != null) {
                        // Already visited this node
                        details.values = cacheValues;
                        details.finished = true;
                        queue.removeFirst();
                        continue;
                    }
    
                    graph.getNodeValues(node, details.values, details.successors);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top