Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 371 for finishes (0.34 sec)

  1. pkg/scheduler/framework/interface.go

    	PluginsRunner
    	// SnapshotSharedLister returns listers from the latest NodeInfo Snapshot. The snapshot
    	// is taken at the beginning of a scheduling cycle and remains unchanged until
    	// a pod finishes "Permit" point.
    	//
    	// It should be used only during scheduling cycle:
    	// - There is no guarantee that the information remains unchanged in the binding phase of scheduling.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. src/internal/fuzz/worker.go

    		w.client.Close()
    		w.cmd = nil
    		w.client = nil
    		return w.waitErr
    	default:
    		// Worker still running.
    	}
    
    	// Tell the worker to stop by closing fuzz_in. It won't actually stop until it
    	// finishes with earlier calls.
    	closeC := make(chan struct{})
    	go func() {
    		w.client.Close()
    		close(closeC)
    	}()
    
    	sig := os.Interrupt
    	if runtime.GOOS == "windows" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. src/runtime/time.go

    	//
    	// Setting minWhenModified = 0 *before* the scan could make wakeTime
    	// return an incorrect value: if minWhenModified < minWhenHeap, then clearing
    	// it to 0 will make wakeTime return minWhenHeap (too late) until the scan finishes.
    	// To avoid that, we want to set minWhenModified to 0 *after* the scan.
    	//
    	// Setting minWhenModified = 0 *after* the scan could result in missing
    	// concurrent timer modifications in other goroutines; those will lock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/rangefunc/rewrite.go

    		used -= 3
    		r.branchNext[branch{syntax.Break, l}] = used
    		r.branchNext[branch{syntax.Continue, l}] = used + 1
    		r.branchNext[branch{syntax.Goto, l}] = used + 2
    	}
    }
    
    // endLoop finishes the conversion of a range-over-func loop.
    // We have inspected and rewritten the body of the loop and can now
    // construct the body function and rewrite the for loop into a call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. src/runtime/panic.go

    // it's not a problem if user code holds onto it beyond
    // the lifetime of drangefunc.)
    //
    // TODO: We could arrange for the compiler to call into the
    // runtime after the loop finishes normally, to do an eager
    // deferconvert, which would catch calling the loop body
    // and having it defer after the loop is done. If we have a
    // more general catch of loop body misuse, though, this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                }
            }
    
            private boolean nothingMoreToStart() {
                return finished || (autoFinish && queues.isEmpty());
            }
    
            public void add(PlanDetails planDetails) {
                coordinationService.withStateLock(() -> {
                    if (finished) {
                        throw new IllegalStateException("This queue has been closed.");
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/DefaultBuildOperationRunner.java

                            }
                        }
    
                        private void assertNotFinished() {
                            if (finished) {
                                throw new IllegalStateException(String.format("Operation (%s) has already finished.", descriptor));
                            }
                        }
                    };
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:33:49 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

                } finally {
                    connection.close()
                }
            }
    
            then:
            concurrent.finished()
            //only one thread should log that progress message
            1 == allProgress.count {
                it.contains("Wait for the other thread to finish acquiring the distribution")
            }
        }
    
        def "during model building receives distribution progress"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    					}, func() {
    						startWG.Done()
    						_ = <-finishCh
    					})
    					cts.requestWG.Done()
    				}(matches, isResource, rdu)
    				if rng.Float32() < 0.8 {
    					if testDebugLogs {
    						t.Logf("Immediate request %#+v, plName=%s", rdu, expectedPLName)
    					}
    					close(finishCh)
    				} else {
    					cts.addHeldRequest(expectedPLName, rdu, finishCh)
    				}
    			}
    		}
    	}
    	startWG.Wait()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

                        } else {
                            SerializedOperationFinish finish = new SerializedOperationFinish(map);
    
                            PendingOperation pending = pendings.remove(finish.id);
                            assert pending != null;
    
                            List<BuildOperationRecord> children = childrens.remove(finish.id);
                            assert children != null;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top