Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for FRENCH (0.07 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedLanguageHelloWorldApp.groovy

            return  [
                new SourceFile("c", "hello.c", """
                #include <stdio.h>
                #include "hello.h"
    
                void DLL_FUNC sayHello() {
                    #ifdef FRENCH
                    printf("${HELLO_WORLD_FRENCH}\\n");
                    #else
                    printf("${HELLO_WORLD}\\n");
                    #endif
    
                    fflush(stdout);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/compact/tags.go

    	Persian              Tag = Tag{language: faIndex, locale: faIndex}
    	Finnish              Tag = Tag{language: fiIndex, locale: fiIndex}
    	Filipino             Tag = Tag{language: filIndex, locale: filIndex}
    	French               Tag = Tag{language: frIndex, locale: frIndex}
    	CanadianFrench       Tag = Tag{language: frCAIndex, locale: frCAIndex}
    	Gujarati             Tag = Tag{language: guIndex, locale: guIndex}
    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/cmd/vendor/golang.org/x/text/language/parse.go

    // 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)
Back to top