Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for italian (0.3 sec)

  1. docs/en/docs/release-notes.md

    * 🌐 Update Turkish translation for `docs/tr/docs/benchmarks.md`. PR [#11005](https://github.com/tiangolo/fastapi/pull/11005) by [@hasansezertasan](https://github.com/hasansezertasan).
    * 🌐 Add Italian translation for `docs/it/docs/index.md`. PR [#5233](https://github.com/tiangolo/fastapi/pull/5233) by [@matteospanio](https://github.com/matteospanio).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

                    colors.add(newBoldColor());
                } else if (emphasis.equals(Style.Emphasis.REVERSE)) {
                    colors.add(newReverseColor());
                } else if (emphasis.equals(Style.Emphasis.ITALIC)) {
                    colors.add(newItalicColor());
                }
            }
    
            if (style.getColor().equals(Style.Color.GREY)) {
                colors.add(new BrightForegroundColor(Ansi.Color.BLACK));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/object_test.go

    	"fmt"
    	"internal/testenv"
    	"strings"
    	"testing"
    
    	. "cmd/compile/internal/types2"
    )
    
    func TestIsAlias(t *testing.T) {
    	check := func(obj *TypeName, want bool) {
    		if got := obj.IsAlias(); got != want {
    			t.Errorf("%v: got IsAlias = %v; want %v", obj, got, want)
    		}
    	}
    
    	// predeclared types
    	check(Unsafe.Scope().Lookup("Pointer").(*TypeName), false)
    	for _, name := range Universe.Names() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/go/types/object_test.go

    import (
    	"fmt"
    	"internal/testenv"
    	"strings"
    	"testing"
    
    	. "go/types"
    )
    
    func TestIsAlias(t *testing.T) {
    	check := func(obj *TypeName, want bool) {
    		if got := obj.IsAlias(); got != want {
    			t.Errorf("%v: got IsAlias = %v; want %v", obj, got, want)
    		}
    	}
    
    	// predeclared types
    	check(Unsafe.Scope().Lookup("Pointer").(*TypeName), false)
    	for _, name := range Universe.Names() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/javadoc.css

     }
     /* Lato (normal, italic) */
     @font-face {
         font-display: swap;
         font-family: Lato;
         font-weight: 400;
         font-style: italic;
         src: url("https://assets.gradle.com/lato/fonts/lato-normal-italic/lato-normal-italic.woff2") format("woff2"),
         url("https://assets.gradle.com/lato/fonts/lato-normal-italic/lato-normal-italic.woff") format("woff");
     }
     /* Lato (bold, regular) */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/base.css

        cursor: help;
        border-bottom: 1px dotted #e5e5e5;
    }
    
    b, strong, dfn {
        font-weight: 700;
    }
    
    em, dfn {
        font-style: italic;
    }
    
    sup, sub {
        line-height: 0;
    }
    
    address {
        margin: 0 0 1.5em;
        font-style: italic;
    }
    
    del {
        color: #666;
    }
    
    blockquote {
        padding: .5rem 1rem;
        margin: .8rem 0;
        color: #7a7a7a;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    /* Lato (normal, italic) */
    @font-face {
    	font-display: swap;
    	font-family: Lato;
    	font-weight: 400;
    	font-style: italic;
    	src: url("https://assets.gradle.com/lato/fonts/lato-normal-italic/lato-normal-italic.woff2") format("woff2"),
    		url("https://assets.gradle.com/lato/fonts/lato-normal-italic/lato-normal-italic.woff") format("woff");
    }
    
    /* Lato (bold, regular) */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. docs/en/mkdocs.yml

      - link: /fr/
        name: fr - français
      - link: /he/
        name: he - עברית
      - link: /hu/
        name: hu - magyar
      - link: /id/
        name: id - Bahasa Indonesia
      - link: /it/
        name: it - italiano
      - link: /ja/
        name: ja - 日本語
      - link: /ko/
        name: ko - 한국어
      - link: /pl/
        name: pl - Polski
      - link: /pt/
        name: pt - português
      - link: /ru/
        name: ru - русский язык
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/go/types/object.go

    	obj := NewTypeName(pos, pkg, name, nil)
    	NewNamed(obj, nil, nil).loader = load
    	return obj
    }
    
    // IsAlias reports whether obj is an alias name for a type.
    func (obj *TypeName) IsAlias() bool {
    	switch t := obj.typ.(type) {
    	case nil:
    		return false
    	// case *Alias:
    	//	handled by default case
    	case *Basic:
    		// unsafe.Pointer is not an alias.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/decl.go

    			// this information explicitly in the object.
    			var alias bool
    			if check.conf.EnableAlias {
    				alias = obj.IsAlias()
    			} else {
    				if d := check.objMap[obj]; d != nil {
    					alias = d.tdecl.Alias // package-level object
    				} else {
    					alias = obj.IsAlias() // function local object
    				}
    			}
    			if !alias {
    				ndef++
    			}
    		case *Func:
    			// ignored for now
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top