Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,221 for lasta (0.04 sec)

  1. src/go/doc/example.go

    	// Do nothing if there is no "Output:" or "Unordered output:" comment.
    	i, last := lastComment(body, comments)
    	if last == nil || !outputPrefix.MatchString(last.Text()) {
    		return body, comments
    	}
    
    	// Copy body and comments, as the originals may be used elsewhere.
    	newBody := &ast.BlockStmt{
    		Lbrace: body.Lbrace,
    		List:   body.List,
    		Rbrace: last.Pos(),
    	}
    	newComments := make([]*ast.CommentGroup, len(comments)-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. docs/es/docs/external-links.md

    # Enlaces Externos y Artículos
    
    **FastAPI** tiene una gran comunidad en constante crecimiento.
    
    Hay muchas publicaciones, artículos, herramientas y proyectos relacionados con **FastAPI**.
    
    Aquí hay una lista incompleta de algunos de ellos.
    
    !!! tip "Consejo"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Feb 02 18:09:12 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    			uss.t.Logf("%s last=%v got SeatDemand average of %v and expected %v", uss.name, last, got, expected)
    		} else {
    			uss.t.Errorf("%s last=%v got SeatDemand average of %v but expected %v", uss.name, last, got, expected)
    		}
    		if got, expected := float64NaNTo0(subjectResults.Deviation), float64NaNTo0(checkResults.Deviation); float64close(got, expected) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  4. src/math/rand/v2/chacha8.go

    import (
    	"errors"
    	"internal/byteorder"
    	"internal/chacha8rand"
    )
    
    // A ChaCha8 is a ChaCha8-based cryptographically strong
    // random number generator.
    type ChaCha8 struct {
    	state chacha8rand.State
    
    	// The last readLen bytes of readBuf are still to be consumed by Read.
    	readBuf [8]byte
    	readLen int // 0 <= readLen <= 8
    }
    
    // NewChaCha8 returns a new ChaCha8 seeded with the given seed.
    func NewChaCha8(seed [32]byte) *ChaCha8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/versions/ReleasedVersionDistributions.java

                throw new RuntimeException("Unable to get the last version");
            }
    
            return buildContext.distribution(mostRecent);
        }
    
        public GradleDistribution getMostRecentReleaseSnapshot() {
            String mostRecentSnapshot = getProperties().getProperty("mostRecentSnapshot");
    
            if (mostRecentSnapshot == null) {
                throw new RuntimeException("Unable to get the last snapshot version");
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/coordination/v1/generated.proto

      // to wait to force acquire it. This is measure against time of last
      // observed renewTime.
      // +optional
      optional int32 leaseDurationSeconds = 2;
    
      // acquireTime is a time when the current lease was acquired.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.MicroTime acquireTime = 3;
    
      // renewTime is a time when the current holder of a lease has last
      // updated the lease.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/encoding/ascii85/ascii85.go

    	if len(p) == 0 {
    		return 0, nil
    	}
    	if d.err != nil {
    		return 0, d.err
    	}
    
    	for {
    		// Copy leftover output from last decode.
    		if len(d.out) > 0 {
    			n = copy(p, d.out)
    			d.out = d.out[n:]
    			return
    		}
    
    		// Decode leftover input from last read.
    		var nn, nsrc, ndst int
    		if d.nbuf > 0 {
    			ndst, nsrc, d.err = Decode(d.outbuf[0:], d.buf[0:d.nbuf], d.readErr != nil)
    			if ndst > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. pkg/scheduler/metrics/metrics.go

    			Subsystem: SchedulerSubsystem,
    			Name:      "pod_scheduling_duration_seconds",
    			Help:      "E2e latency for a pod being scheduled which may include multiple scheduling attempts.",
    			// Start with 10ms with the last bucket being [~88m, Inf).
    			Buckets:           metrics.ExponentialBuckets(0.01, 2, 20),
    			StabilityLevel:    metrics.STABLE,
    			DeprecatedVersion: "1.29.0",
    		},
    		[]string{"attempts"})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. cmd/data-scanner-metric.go

    	currentPaths sync.Map
    
    	cycleInfoMu sync.Mutex
    	cycleInfo   *currentScannerCycle
    }
    
    var globalScannerMetrics scannerMetrics
    
    const (
    	// START Realtime metrics, that only to records
    	// last minute latencies and total operation count.
    	scannerMetricReadMetadata scannerMetric = iota
    	scannerMetricCheckMissing
    	scannerMetricSaveUsage
    	scannerMetricApplyAll
    	scannerMetricApplyVersion
    	scannerMetricTierObjSweep
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 25 05:15:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

                    toc.append("<li class=\"mainTopic\"><a/></li>").children().last().select("a").first().text(name).attr("href", "#" + anchor);
                } else if(!name.startsWith("Table") && tag.equals("h3")){
                    toc.append("<li class=\"subTopic\"><a/></li>").children().last().select("a").first().text(name).attr("href", "#" + anchor);
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top