Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 339 for France (0.08 seconds)

  1. android/guava/src/com/google/common/graph/ImmutableGraph.java

       *
       * {@snippet :
       * static final ImmutableGraph<Country> COUNTRY_ADJACENCY_GRAPH =
       *     GraphBuilder.undirected()
       *         .<Country>immutable()
       *         .putEdge(FRANCE, GERMANY)
       *         .putEdge(FRANCE, BELGIUM)
       *         .putEdge(GERMANY, BELGIUM)
       *         .addNode(ICELAND)
       *         .build();
       * }
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  2. src/main/webapp/js/admin/plugins/form-validator/location.js

    rica","côte d'ivoire","croatia","cuba","curaçao","cyprus","czechia","denmark","djibouti","dominica","dominican republic","ecuador","egypt","el salvador","equatorial guinea","eritrea","estonia","ethiopia","falkland islands","faroe islands","fiji","finland","france","french guiana","french polynesia","french southern territories","gabon","gambia","georgia","germany","ghana","gibraltar","greece","greenland","grenada","guadeloupe","guam","guatemala","guernsey","guinea","guinea-bissau","guyana","haiti","heard island...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 5.2K bytes
    - Click Count (0)
  3. apache-maven/src/main/appended-resources/META-INF/NOTICE.vm

    from the plug-in's github repository. Your use of the ASM code is subject to the terms and conditions of the ASM License below which is also available at http://asm.ow2.org/license.html http://asm.ow2.org/license.html. Copyright (c) 2000-2011 INRIA, France Telecom All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this...
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Sep 10 19:27:25 GMT 2022
    - 5.5K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/core/convert/NumberConversionUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        public void testFindFractionDelimeter2() throws Exception {
            final String delim = NumberConversionUtil.findDecimalSeparator(Locale.FRANCE);
            assertEquals(",", delim);
        }
    
        /**
         * @throws Exception
         */
        public void testFindFractionDelimeter3() throws Exception {
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Fri Jun 20 13:40:57 GMT 2025
    - 3.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java

        }
    
        @Test
        public void test_determineAlias_multipleLocales() {
            // Test with various locale configurations
            Locale[] testLocales = { Locale.US, Locale.UK, Locale.CANADA, Locale.FRANCE, Locale.CHINA, Locale.KOREA, new Locale("es", "ES"),
                    new Locale("pt", "BR") };
    
            for (Locale locale : testLocales) {
                OptionalThing<String> result = provider.determineAlias(locale);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  6. .github/workflows/release-branch-cherrypick.yml

    # https://github.com/tensorflow/tensorflow/actions/workflows/release-branch-cherrypick.yml
    # and click "Run Workflow." Leave "Use Workflow From" set to "master", then
    # input the branch name and paste the cherry-pick commit and click Run. A PR
    # will be created.
    
    name: Release Branch Cherrypick
    on:
      workflow_dispatch:
        inputs:
          # We use this instead of the "run on branch" argument because GitHub looks
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Jan 01 08:09:03 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  7. .ci/make-branch-config.sh

    #!/bin/bash
    
    if [ -z "$BRANCH" ] ; then
        echo "BRANCH is unset"
        exit 1
    fi
    
    folders=("jobs" "templates" "views")
    for folder in "${folders[@]}"
    do
      rm -Rf .ci/$folder;
      mkdir -p .ci/$folder
      cp -r .ci/${folder}.t/* .ci/$folder/
      sed -i "s/%BRANCH%/${BRANCH}/g" .ci/$folder/*.yml
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:50:32 GMT 2021
    - 293 bytes
    - Click Count (0)
  8. .github/workflows/sync-main-branch.yml

    # Synchronize all pushes to 'master' branch with 'main' branch to facilitate migration
    name: "Sync main branch"
    on:
      push:
        branches:
          - master
    
    jobs:
      sync_latest_from_upstream:
        runs-on: ubuntu-latest
        name: Sync latest commits from master branch
    
        steps:
          - name: Checkout target repo
            uses: actions/checkout@v2
            with:
              ref: main
    
          - name: Sync upstream changes
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 22:51:33 GMT 2021
    - 689 bytes
    - Click Count (0)
  9. .ci/jobs.t/elastic+elasticsearch+branch-protection.yml

    ---
    - job:
        name: elastic+elasticsearch+%BRANCH%+branch-protection
        display-name: "elastic / elasticsearch # %BRANCH% - branch protection"
        description: Elasticsearch %BRANCH% branch protection.
        node: master
        triggers:
          - timed: "H 7 * * *"
        scm: []
        parameters: []
        builders:
          - shell: |
              #!/bin/bash
              set +x
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 715 bytes
    - Click Count (0)
  10. .ci/jobs.t/elastic+elasticsearch+branch-consistency.yml

    ---
    - job:
        name: elastic+elasticsearch+%BRANCH%+branch-consistency
        display-name: "elastic / elasticsearch # %BRANCH% - branch consistency"
        description: Testing of the Elasticsearch master branch version consistency.
        triggers:
          - timed: "H 7 * * *"
        builders:
          - inject:
              properties-file: '.ci/java-versions.properties'
              properties-content: |
                JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA
          - shell: |
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 572 bytes
    - Click Count (0)
Back to Top