Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for translateZ (0.7 sec)

  1. .github/workflows/translate.yml

    name: Translate
    
    on:
      workflow_dispatch:
        inputs:
          debug_enabled:
            description: Run with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)
            required: false
            default: "false"
          command:
            description: Command to run
            type: choice
            options:
              - translate-page
              - translate-lang
              - update-outdated
              - add-missing
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Aug 15 21:44:06 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. docs/en/docs/contributing.md

    * However, when a Markdown document is translated, the `#hash-parts` in links to its headings may change. Update these links if possible.
        * Search for such links in the translated document using the regex `#[^# ]`.
        * Search in all documents already translated into your language for `your-translated-document.md`. For example VS Code has an option "Edit" -> "Find in Files".
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Jul 26 11:35:42 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  3. .github/DISCUSSION_TEMPLATE/translations.yml

          options:
            - label: I checked that this language is not already being translated in FastAPI docs.
              required: true
            - 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:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Jul 26 11:35:42 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. tests/error_translator_test.go

    import (
    	"errors"
    	"testing"
    
    	"gorm.io/gorm"
    	"gorm.io/gorm/utils/tests"
    )
    
    func TestDialectorWithErrorTranslatorSupport(t *testing.T) {
    	// it shouldn't translate error when the TranslateError flag is false
    	translatedErr := errors.New("translated error")
    	untranslatedErr := errors.New("some random error")
    	db, _ := gorm.Open(tests.DummyDialector{TranslatedErr: translatedErr})
    
    	err := db.AddError(untranslatedErr)
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  5. docs/es/llm-prompt.md

    * request body: request body (do not translate to "cuerpo de la petición")
    * response body: response body (do not translate to "cuerpo de la respuesta")
    * cross domain: cross domain (do not translate to "dominio cruzado")
    * cross origin: cross origin (do not translate to "origen cruzado")
    * plugin: plugin (do not translate to "complemento" or "extensión")
    * plug-in: plug-in (do not translate to "complemento" or "extensión")
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Jul 26 18:57:50 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

        public static final int SID_NAME_INVALID = 7;
        /** SID name type: unknown. */
        /** SID name type: unknown. */
        public static final int SID_NAME_UNKNOWN = 8;
    
        /**
         * LSA translated SID.
         */
        public static class LsarTranslatedSid extends NdrObject {
    
            /**
             * Default constructor for LsarTranslatedSid.
             */
            public LsarTranslatedSid() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

        /** SID name type: invalid. */
        public static final int SID_NAME_INVALID = 7;
        /** SID name type: unknown. */
        public static final int SID_NAME_UNKNOWN = 8;
    
        /**
         * LSA translated SID structure for name to SID lookups.
         */
        public static class LsarTranslatedSid extends NdrObject {
    
            /**
             * Default constructor for LsarTranslatedSid.
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 42.5K bytes
    - Viewed (0)
  8. README.md

        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests
    
    ### Translate In Your Language
    
    Fess is internationalized software.
    
    If you want to add labels/messages for your language, please translate properties file and then rename to fess\_\*\_[lang].properties.
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 06:34:32 UTC 2025
    - 7.2K bytes
    - Viewed (2)
  9. guava-tests/test/com/google/common/collect/MultimapBuilderTest.java

        assertTrue(multimap.keySet() instanceof SortedSet);
        assertTrue(multimap.asMap() instanceof SortedMap);
      }
    
      // J2kt cannot translate the Comparable rawtype in a usable way (it becomes Comparable<Object>
      // but types are typically only Comparable to themselves).
      @SuppressWarnings({"rawtypes", "unchecked"})
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/base/EquivalenceTest.java

      }
    
      /*
       * We use large numbers to avoid the integer cache. Normally, we'd accomplish that merely by using
       * `new Integer` (as we do) instead of `Integer.valueOf`. However, under J2KT, `new Integer`
       * gets translated back to `Integer.valueOf` because that is the only thing J2KT can support. And
       * anyway, it's nice to avoid `Integer.valueOf` because the Android toolchain optimizes multiple
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6.5K bytes
    - Viewed (0)
Back to top