Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 4,772 for startm (0.12 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/DiffUtils.java

                    break;
                }
                // Calculate the start line index of the current block in fullDiff
                start = max(0, next - contextSize);
    
                // Record the start line number in original and revised file of the current block
                startLineOrigin = lineNumOrigin - (next - start - 1);
                startLineRevised = lineNumRevised - (next - start - 1);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            def build1 = executer.withStackTraceChecksDisabled().withArguments("-d").withTasks("lock").start()
            def build2 = executer.withStackTraceChecksDisabled().withArguments("-d").withTasks("lock").start()
            def build3 = executer.withStackTraceChecksDisabled().withArguments("-d").withTasks("lock").start()
            poll(120) {
                assert requestReceived
                assertConfirmationCount(build1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         *
         * @return The result.
         */
        ExecutionFailure runWithFailure();
    
        /**
         * Starts executing the build asynchronously.
         *
         * @return the handle, never null.
         */
        GradleHandle start();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_serving_content.go

    }
    
    // Run starts the controller and blocks until context is killed.
    func (c *DynamicCertKeyPairContent) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	klog.InfoS("Starting controller", "name", c.name)
    	defer klog.InfoS("Shutting down controller", "name", c.name)
    
    	// doesn't matter what workers say, only start one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/go/doc/comment/parse.go

    					forceIndent = end
    					end--
    				}
    
    				if start == end && forceIndent > start {
    					i = start
    					continue Spans
    				}
    			}
    
    			// Span is either paragraph or heading.
    			if end-start == 1 && isHeading(lines[start]) {
    				kind = spanHeading
    			} else if end-start == 1 && isOldHeading(lines[start], lines, start) {
    				kind = spanOldHeading
    			} else {
    				kind = spanPara
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  6. pilot/pkg/leaderelection/leaderelection_test.go

    				})
    			}
    		}
    	}
    
    	for _, start := range cases {
    		t.Run(fmt.Sprint(start), func(t *testing.T) {
    			checkCycles(t, start, cases, nil)
    		})
    	}
    }
    
    func alreadyHit(cur instance, chain []instance) bool {
    	for _, cc := range chain {
    		if cur == cc {
    			return true
    		}
    	}
    	return false
    }
    
    func checkCycles(t *testing.T, start instance, cases []instance, chain []instance) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/ServeDocs.java

    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    import java.util.Arrays;
    
    /**
     * Serves the given directory with a simple HTTP server.
     */
    @DisableCachingByDefault(because = "This task starts a HTTP server and should not be cached.")
    public abstract class ServeDocs extends DefaultTask {
        @InputFiles
        @PathSensitive(PathSensitivity.RELATIVE)
        protected abstract DirectoryProperty getDocsDirectory();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 12:38:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/inline.go

    						d = 1
    					}
    					del := p.Text[0] == '~'
    					x := &Emph{Marker: p.Text[:d], Inner: append([]Inline(nil), dst[start.i+1:]...)}
    					start.Text = start.Text[:len(start.Text)-d]
    					p.Text = p.Text[d:]
    					if start.Text == "" {
    						dst = dst[:start.i]
    					} else {
    						dst = dst[:start.i+1]
    					}
    					trimStack()
    					if del {
    						dst = append(dst, (*Del)(x))
    					} else if d == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. src/go/doc/testdata/benchmark.go

    	benchmark InternalBenchmark
    	bytes     int64
    	timerOn   bool
    	result    BenchmarkResult
    }
    
    // StartTimer starts timing a test. This function is called automatically
    // before a benchmark starts, but it can also used to resume timing after
    // a call to StopTimer.
    func (b *B) StartTimer() {
    	if !b.timerOn {
    		b.start = time.Now()
    		b.timerOn = true
    	}
    }
    
    // StopTimer stops timing a test. This can be used to pause the timer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

            return this.daemonRegistry;
        }
    
        /**
         * Starts the daemon, receiving connections asynchronously (i.e. returns immediately).
         *
         * @throws IllegalStateException if this daemon is already running, or has already been stopped.
         */
        public void start() {
            LOGGER.info("start() called on daemon - {}", daemonContext);
            lifecycleLock.lock();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top