Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 444 for step2 (0.04 sec)

  1. pkg/kubelet/util/node_startup_latency_tracker_test.go

    			kubeletStartTime: frozenTime,
    			clock:            fakeClock,
    		}
    
    		fakeClock.Step(100 * time.Millisecond)
    		tracker.RecordAttemptRegisterNode()
    
    		fakeClock.Step(200 * time.Millisecond)
    		tracker.RecordRegisteredNewNode()
    
    		fakeClock.Step(300 * time.Millisecond)
    		tracker.RecordNodeReady()
    
    		fakeClock.Step(700 * time.Millisecond)
    		tracker.RecordNodeReady()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 05:54:25 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

        private final OutputSnapshotter outputSnapshotter;
        private final Step<? super PreviousExecutionContext, ? extends CachingResult> delegate;
    
        public AssignImmutableWorkspaceStep(
            Deleter deleter,
            FileSystemAccess fileSystemAccess,
            ImmutableWorkspaceMetadataStore workspaceMetadataStore,
            OutputSnapshotter outputSnapshotter,
            Step<? super PreviousExecutionContext, ? extends CachingResult> delegate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/concepts.md

    ## Previous Steps Before Starting
    
    There are many cases where you want to perform some steps **before starting** your application.
    
    For example, you might want to run **database migrations**.
    
    But in most cases, you will want to perform these steps only **once**.
    
    So, you will want to have a **single process** to perform those **previous steps**, before starting the application.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/compare.go

    				convType = types.Types[types.TINT64]
    				step = 8 / t.Elem().Size()
    			case remains >= 4 && combine32bit:
    				convType = types.Types[types.TUINT32]
    				step = 4 / t.Elem().Size()
    			case remains >= 2 && combine16bit:
    				convType = types.Types[types.TUINT16]
    				step = 2 / t.Elem().Size()
    			default:
    				step = 1
    			}
    			if step == 1 {
    				comp(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. src/os/signal/signal_cgo_test.go

    	// 5. Make the child foreground process group again.
    	// 6. Continue the child.
    	//
    	// On Darwin, step 4 results in the read() returning EINTR once the
    	// process continues. internal/poll should automatically retry the
    	// read.
    	//
    	// These steps are complicated by the rules around foreground process
    	// groups. A process group cannot be foreground if it is "orphaned",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/regexp/exec.go

    				if advance < 0 {
    					break
    				}
    				pos += advance
    				r, width = i.step(pos)
    				r1, width1 = i.step(pos + width)
    			}
    		}
    		if !m.matched {
    			if len(m.matchcap) > 0 {
    				m.matchcap[0] = pos
    			}
    			m.add(runq, uint32(m.p.Start), pos, m.matchcap, &flag, nil)
    		}
    		flag = newLazyFlag(r, r1)
    		m.step(runq, nextq, pos, pos+width, r, &flag)
    		if width == 0 {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  7. android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

        } catch (AssertionError e) {
          return;
        }
        fail("Should have caught jdk6 bug in target iterator");
      }
    
      private static final int STEPS = 3;
    
      static class TesterThatCountsCalls extends IteratorTester<Integer> {
        TesterThatCountsCalls() {
          super(STEPS, MODIFIABLE, newArrayList(1), IteratorTester.KnownOrder.KNOWN_ORDER);
        }
    
        int numCallsToNewTargetIterator;
        int numCallsToVerify;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // (surprise!) parameter generators. Here is a  summary of them, which
    // are all in the testing namespace:
    //
    //
    //  Range(begin, end [, step]) - Yields values {begin, begin+step,
    //                               begin+step+step, ...}. The values do not
    //                               include end. step defaults to 1.
    //  Values(v1, v2, ..., vN)    - Yields values {v1, v2, ..., vN}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. src/crypto/internal/bigmod/nat.go

    			//
    			// Instead of running two loops, one for Step 1 and one for Steps 2–6,
    			// the result of Step 1 is computed during the next loop. This is
    			// possible because each iteration only uses T[i] in Step 2 and then
    			// discards it in Step 6.
    			d := bLimbs[i]
    			c1 := addMulVVW(T[i:n+i], aLimbs, d)
    
    			// Step 6 is replaced by shifting the virtual window we operate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    - Understand the Gradle wrapper
    ****
    
    [[part1_begin]]
    == Step 0. Before you Begin
    
    1. Make sure you have <<installation.adoc#installation,Gradle installed>>.
    
    2. Install link:https://www.jetbrains.com/idea/download/[IntelliJ IDEA].
    The Community Edition is a free version of IntelliJ IDEA.
    
    == Step 1. Initializing the Project
    To test the Gradle installation, run Gradle from the command-line:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top