Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 239 for 250 (0.02 sec)

  1. docs/en/docs/how-to/extending-openapi.md

    And that function `get_openapi()` receives as parameters:
    
    * `title`: The OpenAPI title, shown in the docs.
    * `version`: The version of your API, e.g. `2.5.0`.
    * `openapi_version`: The version of the OpenAPI specification used. By default, the latest: `3.1.0`.
    * `summary`: A short summary of the API.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/net/textproto/textproto.go

    //
    //	if _, _, err = c.ReadCodeLine(110); err != nil {
    //		return nil, err
    //	}
    //	text, err := c.ReadDotBytes()
    //	if err != nil {
    //		return nil, err
    //	}
    //	return c.ReadCodeLine(250)
    func (c *Conn) Cmd(format string, args ...any) (id uint, err error) {
    	id = c.Next()
    	c.StartRequest(id)
    	err = c.PrintfLine(format, args...)
    	c.EndRequest(id)
    	if err != nil {
    		return 0, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/StartParameterInternal.java

        private boolean configurationCacheQuiet;
        private boolean searchUpwards = true;
        private boolean useEmptySettings = false;
        private Duration continuousBuildQuietPeriod = Duration.ofMillis(250);
    
        public StartParameterInternal() {
        }
    
        protected StartParameterInternal(BuildLayoutParameters layoutParameters) {
            super(layoutParameters);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 08:08:36 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/go.sum

    golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
    golang.org/x/net v0.25.0 h1:d/OCCoBEUq33pjydKrGQhw7IlUPI2Oylr+8qLx49kac=
    golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM=
    golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

        }
    
        def "includes execution time of project evaluation listener callbacks"() {
            given:
            def sleepMillis = 250
            file("build.gradle") << """
                apply plugin: MyPlugin
                class MyPlugin implements Plugin<Project> {
                    void apply(Project project) {
                        project.afterEvaluate {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. pkg/util/smallset/smallset.go

    	"istio.io/istio/pkg/slices"
    )
    
    // Set is an immutable set optimized for *small number of items*. For general purposes, Sets is likely better
    //
    // *Set construction*: sets is roughly 1kb allocations per 250 items. smallsets is 0.
    // *Contains* sets is O(1). smallsets is O(logn). smallsets is typically faster up to about 5 elements.
    //
    //	At 1000 items, it is roughly 5x slower (30ns vs 5ns).
    type Set[T constraints.Ordered] struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/JavaTestProjectGenerator.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    		tracker.ObservedPodOnWatch(podStarted, frozenTime.Add(time.Second*150))
    		tracker.ObservedPodOnWatch(podStarted, frozenTime.Add(time.Second*200))
    		tracker.ObservedPodOnWatch(podStarted, frozenTime.Add(time.Second*250))
    
    		if err := testutil.GatherAndCompare(metrics.GetGather(), strings.NewReader(wants), metricsName); err != nil {
    			t.Fatal(err)
    		}
    
    		// cleanup
    		tracker.DeletePodStartupState(podStarted.UID)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/MultiProjectContinuousIntegrationTest.groovy

            if (TestPrecondition.satisfied(UnitTestPreconditions.MacOs) && TestPrecondition.notSatisfied(UnitTestPreconditions.MacOsM1)) {
                def quietPeriod = 250
                waitAtEndOfBuildForQuietPeriod(quietPeriod)
            }
        }
    
        def "changes to upstream project triggers build of downstream"() {
            expect:
            succeeds "build"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. test/stress/runstress.go

    			go func() {
    				time.Sleep(time.Duration(rand.Intn(500)) * time.Millisecond)
    				c.Close()
    				Println("closed dial")
    			}()
    		}
    		// Don't run out of ephemeral ports too quickly:
    		time.Sleep(250 * time.Millisecond)
    	}
    }
    
    func stressNet() {
    	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		size, _ := strconv.Atoi(r.FormValue("size"))
    		w.Write(make([]byte, size))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top