Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 230 for langues (0.1 sec)

  1. src/main/resources/fess_indices/fess_log.search_log/search_log.json

          },
          "userSessionId": {
            "type": "keyword"
          },
          "accessType": {
            "type": "keyword"
          },
          "userInfoId": {
            "type": "keyword"
          },
          "languages" : {
            "type" : "keyword"
          },
          "virtualHost" : {
            "type" : "keyword"
          }
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 25 13:38:21 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Model classes for native languages.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 708 bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/main/java/org/gradle/language/jvm/tasks/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Tasks for support for JVM languages.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 704 bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/internal/scripts/ScriptingLanguages.java

    import org.gradle.scripts.ScriptingLanguage;
    
    import javax.annotation.Nullable;
    
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.List;
    
    /**
     * Registry of scripting languages.
     */
    public final class ScriptingLanguages {
    
        private static final List<ScriptingLanguage> ALL =
            Collections.unmodifiableList(
                Arrays.asList(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:49:16 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

    # For most projects, this workflow file will not need changing; you simply need
    # to commit it to your repository.
    #
    # You may wish to alter this file to override the set of languages analyzed,
    # or to provide custom queries or build logic.
    name: "CodeQL"
    
    on:
      push:
        branches: [master]
      pull_request:
        # The branches below must be a subset of the branches above
        branches: [master]
      schedule:
        - cron: '0 9 * * 3'
    
    jobs:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Oct 02 13:22:07 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  6. scripts/docs.py

        """
        update_config()
    
    
    @app.command()
    def serve() -> None:
        """
        A quick server to preview a built site with translations.
    
        For development, prefer the command live (or just mkdocs serve).
    
        This is here only to preview a site with translations already built.
    
        Make sure you run the build-all command first.
        """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/unicode/graphic.go

    // IsOneOf reports whether the rune is a member of one of the ranges.
    // The function "In" provides a nicer signature and should be used in preference to IsOneOf.
    func IsOneOf(ranges []*RangeTable, r rune) bool {
    	for _, inside := range ranges {
    		if Is(inside, r) {
    			return true
    		}
    	}
    	return false
    }
    
    // In reports whether the rune is a member of one of the ranges.
    func In(r rune, ranges ...*RangeTable) bool {
    	for _, inside := range ranges {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsInNestedClass.txt

    Diagnostics from elements:
      for PSI element of type KtStringTemplateExpression at (10,19-42)
        ERROR_SUPPRESSION      text ranges: [(198,221)]
          PSI: KtStringTemplateExpression at (10,19-42)
      for PSI element of type KtStringTemplateExpression at (5,19-42)
        ERROR_SUPPRESSION      text ranges: [(78,101)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 366 bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/RangeMap.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A mapping from disjoint nonempty ranges to non-null values. Queries look up the value associated
     * with the range (if any) that contains a specified key.
     *
     * <p>In contrast to {@link RangeSet}, no "coalescing" is done of {@linkplain
     * Range#isConnected(Range) connected} ranges, even if they are mapped to the same value.
     *
     * @author Louis Wasserman
     * @since 14.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/css/dark_syntax-1.14.0.css

    /* // See the License for the specific language governing permissions and */
    /* // limitations under the License. */
    
    /* PrismJS 1.14.0
    http://prismjs.com/download.html#themes=prism-tomorrow&languages=clike+javascript+bash+docker+go+java+protobuf+python+yaml */
    /**
     * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
     * Based on https://github.com/chriskempson/tomorrow-theme
     * @author Rose Pritchard
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top