Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for italian (0.11 sec)

  1. src/cmd/vendor/golang.org/x/text/language/tags.go

    	Hungarian            Tag = Tag(compact.Hungarian)
    	Armenian             Tag = Tag(compact.Armenian)
    	Indonesian           Tag = Tag(compact.Indonesian)
    	Icelandic            Tag = Tag(compact.Icelandic)
    	Italian              Tag = Tag(compact.Italian)
    	Japanese             Tag = Tag(compact.Japanese)
    	Georgian             Tag = Tag(compact.Georgian)
    	Kazakh               Tag = Tag(compact.Kazakh)
    	Khmer                Tag = Tag(compact.Khmer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/compact/tags.go

    	Armenian             Tag = Tag{language: hyIndex, locale: hyIndex}
    	Indonesian           Tag = Tag{language: idIndex, locale: idIndex}
    	Icelandic            Tag = Tag{language: isIndex, locale: isIndex}
    	Italian              Tag = Tag{language: itIndex, locale: itIndex}
    	Japanese             Tag = Tag{language: jaIndex, locale: jaIndex}
    	Georgian             Tag = Tag{language: kaIndex, locale: kaIndex}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            getMockRequest().setLocale(Locale.JAPANESE);
            assertEquals("https://discuss.codelibs.org/c/FessJA/", systemHelper.getForumLink());
            getMockRequest().setLocale(Locale.ITALIAN);
            assertEquals("https://discuss.codelibs.org/c/FessEN/", systemHelper.getForumLink());
            getMockRequest().setLocale(null);
            assertEquals("https://discuss.codelibs.org/c/FessEN/", systemHelper.getForumLink());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/parse.go

    }
    
    // Add hack mapping to deal with a small number of cases that occur
    // in Accept-Language (with reasonable frequency).
    var acceptFallback = map[string]language.Language{
    	"english": _en,
    	"deutsch": _de,
    	"italian": _it,
    	"french":  _fr,
    	"*":       _mul, // defined in the spec to match all languages.
    }
    
    type tagSort struct {
    	tag []Tag
    	q   []float32
    }
    
    func (s *tagSort) Len() int {
    	return len(s.q)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/universe.go

    	// rather than just creating type alias *Sym's for the uint8 and
    	// int32  Hence, (bytetype|runtype).Sym.isAlias() is false.
    	// TODO(gri) Should we get rid of this special case (at the cost
    	// of less informative error messages involving bytes and runes)?
    	// NOTE(rsc): No, the error message quality is important.
    	// (Alternatively, we could introduce an OTALIAS node representing
    	// type aliases, albeit at the cost of having to deal with it everywhere).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/DefaultArchitecture.java

            return Architectures.X86.isAlias(name);
        }
    
        @Override
        public boolean isAmd64() {
            return Architectures.X86_64.isAlias(name);
        }
    
        @Override
        public boolean isIa64() {
            return Architectures.IA_64.isAlias(name);
        }
    
        @Override
        public boolean isArm32() {
            return Architectures.ARM_V7.isAlias(name);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/css/fonts.css

    @font-face {
      font-family: 'Roboto';
      font-style: italic;
      font-weight: 400;
      src: local('Roboto Italic'), local('Roboto-Italic'), url(https://fonts.gstatic.com/s/roboto/v19/KFOkCnqEu92Fr1Mu51xLIzIXKMnyrYk.woff2) format('woff2');
      unicode-range: U+0370-03FF;
    }
    /* vietnamese */
    @font-face {
      font-family: 'Roboto';
      font-style: italic;
      font-weight: 400;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  8. test/fixedbugs/issue24159.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    type intAlias = int
    
    func f() {
    	switch interface{}(nil) {
    	case uint8(0):
    	case byte(0): // ERROR "duplicate case"
    	case int32(0):
    	case rune(0): // ERROR "duplicate case"
    	case int(0):
    	case intAlias(0): // ERROR "duplicate case"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 07 01:26:00 UTC 2018
    - 423 bytes
    - Viewed (0)
  9. test/alias3.dir/a.go

    // license that can be found in the LICENSE file.
    
    package a
    
    import "go/build"
    
    type (
    	Float64 = float64
    	Rune    = rune
    )
    
    type (
    	Int       int
    	IntAlias  = Int
    	IntAlias2 = IntAlias
    	S         struct {
    		Int
    		IntAlias
    		IntAlias2
    	}
    )
    
    type (
    	Context = build.Context
    )
    
    type (
    	I1 interface {
    		M1(IntAlias2) Float64
    		M2() Context
    	}
    
    	I2 = interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 05:55:53 UTC 2017
    - 540 bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultColorMapTest.groovy

        }
    
        def canSetColorForACompoundStyleUsingSystemProperty() {
            given:
            System.properties['org.gradle.color.successheader'] = 'italic-cyan'
            System.properties['org.gradle.color.failure'] = 'magenta'
            System.properties['org.gradle.color.header'] = 'italic'
            System.properties['org.gradle.color.error'] = 'bold-red'
            //For this test the color map needs to be created after the system properties are set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top