Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 497 for bstart (0.36 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

        }
    
        def "can ask yes/no and handle invalid input in interactive build"() {
            given:
            interactiveExecution()
    
            when:
            def gradleHandle = executer.withTasks("askYesNo").start()
    
            then:
            poll(INTERACTIVE_WAIT_TIME_SECONDS) {
                assert gradleHandle.standardOutput.contains(YES_NO_PROMPT)
            }
            gradleHandle.stdinPipe.write(input.bytes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/runtime/mgclimit.go

    	// The top limiterEventBits bits of the timestamp are derived from the current time
    	// when computing a duration.
    	start := int64((uint64(now) & limiterEventTypeMask) | (uint64(s) &^ limiterEventTypeMask))
    	if now < start {
    		return 0
    	}
    	return now - start
    }
    
    // type extracts the event type from the stamp.
    func (s limiterEventStamp) typ() limiterEventType {
    	return limiterEventType(s >> (64 - limiterEventBits))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    }
    
    // removeMatching removes nested instances of start..end from name.
    func removeMatching(name string, start, end byte) string {
    	s := string(start) + string(end)
    	var nesting, first, current int
    	for index := strings.IndexAny(name[current:], s); index != -1; index = strings.IndexAny(name[current:], s) {
    		switch current += index; name[current] {
    		case start:
    			nesting++
    			if nesting == 1 {
    				first = current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pkg/test/framework/suite.go

    		return s.doSkip(ctx)
    	}
    
    	defer func() {
    		end := time.Now()
    		scopes.Framework.Infof("=== Suite %q run time: %v ===", ctx.Settings().TestID, end.Sub(start))
    
    		ctx.RecordTraceEvent("suite-runtime", end.Sub(start).Seconds())
    		ctx.RecordTraceEvent("echo-calls", echo.GlobalEchoRequests.Load())
    		ctx.RecordTraceEvent("yaml-apply", GlobalYAMLWrites.Load())
    		traceFile := filepath.Join(ctx.Settings().BaseDir, "trace.yaml")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. cmd/server-main.go

    {{if .VisibleFlags}}
    FLAGS:
      {{range .VisibleFlags}}{{.}}
      {{end}}{{end}}
    EXAMPLES:
      1. Start MinIO server on "/home/shared" directory.
         {{.Prompt}} {{.HelpName}} /home/shared
    
      2. Start single node server with 64 local drives "/mnt/data1" to "/mnt/data64".
         {{.Prompt}} {{.HelpName}} /mnt/data{1...64}
    
      3. Start distributed MinIO server on an 32 node setup with 32 drives each, run following command on all the nodes
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

        }
    
        def "receive blocks until message available"() {
            def waiting = new CountDownLatch(1)
            def received = new CountDownLatch(1)
            def result = null
    
            when:
            start {
                waiting.countDown()
                result = daemonConnection.receive(20, TimeUnit.SECONDS)
                received.countDown()
            }
            waiting.await()
            Thread.sleep(500)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ExternalProcessFixture.groovy

                }
            }
        }
    
        static PrintProcessOutput processBuilder() {
            return new ProcessApiPrintOutput("new ProcessBuilder(command).start()", "ProcessBuilder(*command).start()", "new ProcessBuilder(command).start()")
        }
    
        static PrintProcessOutput stringArrayExecute() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/utils.go

    	//
    	// However, if there is a bug somewhere, or incorrect clock
    	// on controller's server or apiservers (for setting creationTimestamp)
    	// then there could be so many missed start times (it could be off
    	// by decades or more), that it would eat up all the CPU and memory
    	// of this controller. In that case, we want to not try to list
    	// all the missed start times.
    	//
    	// I've somewhat arbitrarily picked 100, as more than 80,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    	}
    	copy(wcib.buffer, events)
    
    	return wcib
    }
    
    func generateEvents(start, end int) []*watchCacheEvent {
    	n := end - start
    	events := make([]*watchCacheEvent, n)
    	for i := 0; i < n; i++ {
    		events[i] = &watchCacheEvent{
    			Type:   watch.Added,
    			Object: makeTestPod(fmt.Sprintf("pod%d", start+i), uint64(start+i)),
    		}
    	}
    	return events
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            "http://localhost:${server.port}"
        }
    
        private String getDefaultAuthenticatedBaseUrl() {
            "http://jdoe:changeit@localhost:${server.port}"
        }
    
        def setup() {
            server.start()
            file("build.gradle") << """
        task hello {
            doLast {
                println 'hello'
            }
        }
    
        task echoProperty {
            doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top