Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for lost (0.11 sec)

  1. src/go/ast/commentmap_test.go

    	// very correct association of comments
    	for n, list := range cmap {
    		key := fmt.Sprintf("%2d: %T", fset.Position(n.Pos()).Line, n)
    		got := ctext(list)
    		want := res[key]
    		if got != want {
    			t.Errorf("%s: got %q; want %q", key, got, want)
    		}
    	}
    
    	// verify that no comments got lost
    	if n := len(cmap.Comments()); n != len(f.Comments) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/lex/lex.go

    // the text of the most recently returned token is, and where it was found.
    // The underlying scanner elides all spaces except newline, so the input looks like a stream of
    // Tokens; original spacing is lost but we don't need it.
    type TokenReader interface {
    	// Next returns the next token.
    	Next() ScanToken
    	// The following methods all refer to the most recent token returned by Next.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. src/runtime/metrics/description_test.go

    		t.Fatal("no doc comment in doc.go")
    	}
    	pkg, err := doc.NewFromFiles(fset, []*ast.File{f}, "runtime/metrics")
    	if err != nil {
    		t.Fatal(err)
    	}
    	if pkg.Doc == "" {
    		t.Fatal("doc.NewFromFiles lost doc comment")
    	}
    	doc := new(comment.Parser).Parse(pkg.Doc)
    	expectCode := false
    	foundCode := false
    	updated := false
    	for _, block := range doc.Content {
    		switch b := block.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 22:54:22 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/async-tests.md

    !!! tip "Tipp"
        Beachten Sie, dass wir async/await mit dem neuen `AsyncClient` verwenden – der Request ist asynchron.
    
    !!! warning "Achtung"
        Falls Ihre Anwendung auf Lifespan-Events angewiesen ist, der `AsyncClient` löst diese Events nicht aus. Um sicherzustellen, dass sie ausgelöst werden, verwenden Sie `LifespanManager` von <a href="https://github.com/florimondmanca/asgi-lifespan#usage" class="external-link" target="_blank">florimondmanca/asgi-lifespan</a>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:25:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/net/http/httputil/dump.go

    	absRequestURI := strings.HasPrefix(req.RequestURI, "http://") || strings.HasPrefix(req.RequestURI, "https://")
    	if !absRequestURI {
    		host := req.Host
    		if host == "" && req.URL != nil {
    			host = req.URL.Host
    		}
    		if host != "" {
    			fmt.Fprintf(&b, "Host: %s\r\n", host)
    		}
    	}
    
    	chunked := len(req.TransferEncoding) > 0 && req.TransferEncoding[0] == "chunked"
    	if len(req.TransferEncoding) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ForwardingSet.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public abstract class ForwardingSet<E extends @Nullable Object> extends ForwardingCollection<E>
        implements Set<E> {
      // TODO(lowasser): identify places where thread safety is actually lost
    
      /** Constructor for use by subclasses. */
      protected ForwardingSet() {}
    
      @Override
      protected abstract Set<E> delegate();
    
      @Override
      public boolean equals(@CheckForNull Object object) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  7. src/runtime/debug/stack.go

    		// when this process crashes.
    		//
    		// A side effect of Fd() is that it calls SetBlocking,
    		// which is important so that writes of a crash report
    		// to a full pipe buffer don't get lost.
    		fd2, _, err := poll.DupCloseOnExec(int(f.Fd()))
    		if err != nil {
    			return err
    		}
    		runtime.KeepAlive(f) // prevent finalization before dup
    		fd = uintptr(fd2)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. docs/de/docs/how-to/graphql.md

    Sie können normale FastAPI-*Pfadoperationen* mit GraphQL in derselben Anwendung kombinieren.
    
    !!! tip "Tipp"
        **GraphQL** löst einige sehr spezifische Anwendungsfälle.
    
        Es hat **Vorteile** und **Nachteile** im Vergleich zu gängigen **Web-APIs**.
    
        Wiegen Sie ab, ob die **Vorteile** für Ihren Anwendungsfall die **Nachteile** ausgleichen. 🤓
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:31 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/os/dir_darwin.go

    		if errno != nil {
    			return nil, nil, nil, &PathError{Op: call, Path: f.name, Err: errno}
    		}
    		d = &dirInfo{dir: dir}
    		if f.dirinfo.CompareAndSwap(nil, d) {
    			break
    		}
    		// We lost the race: try again.
    		d.close()
    	}
    
    	size := n
    	if size <= 0 {
    		size = 100
    		n = -1
    	}
    
    	var dirent syscall.Dirent
    	var entptr *syscall.Dirent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/language/doc.go

    // license that can be found in the LICENSE file.
    
    // Package language implements BCP 47 language tags and related functionality.
    //
    // The most important function of package language is to match a list of
    // user-preferred languages to a list of supported languages.
    // It alleviates the developer of dealing with the complexity of this process
    // and provides the user with the best experience
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top