Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 6,785 for LANGUAGE (0.05 seconds)

  1. docs/recipes.md

    === ":material-language-kotlin: Kotlin"
        ```kotlin
          private val client = OkHttpClient()
    
          fun run() {
            val request = Request.Builder()
                .url("https://publicobject.com/helloworld.txt")
                .build()
    
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sat Aug 30 17:01:12 GMT 2025
    - 47.8K bytes
    - Click Count (0)
  2. scripts/translate.py

        print(f"Updating outdated translations for {language}")
        update_outdated(language=language)
        print(f"Adding missing translations for {language}")
        add_missing(language=language)
        print(f"Done updating and adding for {language}")
    
    
    @app.command()
    def make_pr(
        *,
        language: Annotated[str | None, typer.Option(envvar="LANGUAGE")] = None,
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Dec 27 19:05:53 GMT 2025
    - 34.1K bytes
    - Click Count (0)
  3. src/main/resources/fess_indices/fess.json

            "greek_lowercase": {
              "type":       "lowercase",
              "language":   "greek"
            },
            "greek_keywords": {
              "type":       "keyword_marker",
              "keywords_path": "${fess.dictionary.path}el/protwords.txt"
            },
            "greek_stemmer": {
              "type":       "stemmer",
              "language":   "greek"
            },
            "greek_override": {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Jun 06 14:17:42 GMT 2025
    - 39.8K bytes
    - Click Count (0)
  4. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/DefaultType.java

        private final String id;
        private final Language language;
        private final String extension;
        private final String classifier;
        private final boolean includesDependencies;
        private final Set<PathType> pathTypes;
        private final Map<String, String> properties;
    
        public DefaultType(
                String id,
                Language language,
                String extension,
                String classifier,
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AlphabeticalAcceptedApiChangesTaskIntegrationTest.kt

     * distributed under the License is distributed on an "AS IS" BASIS,
     * 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.
     */
    
    package gradlebuild.binarycompatibility
    
    import org.junit.jupiter.api.Test
    
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Mar 14 02:17:00 GMT 2025
    - 8.4K bytes
    - Click Count (0)
  6. code_of_conduct.md

    include:
    
    * Using welcoming and inclusive language
    * Being respectful of differing viewpoints and experiences
    * Gracefully accepting constructive criticism
    * Focusing on what is best for the community
    * Showing empathy towards other community members
    
    Examples of unacceptable behavior by participants include:
    
    * The use of sexualized language or imagery and unwelcome sexual attention or
      advances
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Mon Jan 20 18:38:58 GMT 2020
    - 3.5K bytes
    - Click Count (0)
  7. .github/DISCUSSION_TEMPLATE/translations.yml

            - label: I searched existing discussions to ensure no one else proposed this language.
              required: true
            - label: I am a native speaker of the language I want to help translate.
              required: true
      - type: input
        id: language
        attributes:
          label: Target Language
          description: What language do you want to translate the FastAPI docs into?
          placeholder: e.g. Latin
        validations:
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Jul 26 11:35:42 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  8. tests/test_tutorial/test_response_headers/test_tutorial001.py

        assert response.status_code == 200, response.text
        assert response.json() == {"message": "Hello World"}
        assert response.headers["X-Cat-Dog"] == "alone in the world"
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 431 bytes
    - Click Count (0)
  9. api/maven-api-core/src/test/java/org/apache/maven/api/SourceRootTest.java

        private ProjectScope scope;
    
        private Language language;
    
        private String moduleName;
    
        @Override
        public ProjectScope scope() {
            return (scope != null) ? scope : SourceRoot.super.scope();
        }
    
        @Override
        public Language language() {
            return (language != null) ? language : SourceRoot.super.language();
        }
    
        @Override
        public Optional<String> module() {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Oct 26 17:22:14 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java

            }
            return converter.convert(text, field);
        }
    
        /**
         * Language-specific analyzer converter.
         */
        protected class LangAnalyzerConverter implements ReadingConverter {
            /** Language. */
            protected final String lang;
    
            /**
             * Constructor.
             * @param lang Language
             */
            protected LangAnalyzerConverter(final String lang) {
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 17 14:28:21 GMT 2025
    - 6.7K bytes
    - Click Count (0)
Back to Top