Search Options

Results per page
Sort
Preferred Languages
Advance

Results 971 - 980 of 1,839 for Target (0.14 sec)

  1. internal/event/target/mysql_test.go

    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package target
    
    import (
    	"database/sql"
    	"testing"
    )
    
    // TestPostgreSQLRegistration checks if sql driver
    // is registered and fails otherwise.
    func TestMySQLRegistration(t *testing.T) {
    	var found bool
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue May 02 14:53:13 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. .github/workflows/update-nightly.yml

        permissions:
          contents: write
        steps:
        - uses: zofrex/mirror-branch@0be56f4c8077a288a635a491b306ba0bb1c810e6 # v1.0.4
          name: Set nightly branch to master HEAD
          with:
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Jun 26 15:41:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. docs/em/docs/advanced/additional-status-codes.md

    ///
    
    ## πŸ—„ &amp; πŸ› οΈ 🩺
    
    πŸš₯ πŸ‘† πŸ“¨ πŸŒ– πŸ‘” πŸ“Ÿ &amp; πŸ“¨ πŸ”—, πŸ‘« πŸ† 🚫 πŸ”Œ πŸ—„ πŸ”— (πŸ› οΈ 🩺), ↩️ FastAPI 🚫 βœ”οΈ 🌌 πŸ’­ βͺ βš«οΈβ” πŸ‘† 🚢 πŸ“¨.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. docs/ko/docs/tutorial/request-forms-and-files.md

    # 폼 및 파일 μš”μ²­
    
    `File` κ³Ό `Form` 을 μ‚¬μš©ν•˜μ—¬ 파일과 폼을 ν•¨κ»˜ μ •μ˜ν•  수 μžˆμŠ΅λ‹ˆλ‹€.
    
    /// info | "정보"
    
    파일과 폼 데이터λ₯Ό ν•¨κ»˜, λ˜λŠ” 각각 μ—…λ‘œλ“œν•˜κΈ° μœ„ν•΄ λ¨Όμ € <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>λ₯Ό μ„€μΉ˜ν•΄μ•Όν•©λ‹ˆλ‹€.
    
    예 ) `pip install python-multipart`.
    
    ///
    
    ## `File` 및 `Form` μ—…λ‘œλ“œ
    
    ```Python hl_lines="1"
    {!../../docs_src/request_forms_and_files/tutorial001.py!}
    ```
    
    ## `File` 및 `Form` λ§€κ°œλ³€μˆ˜ μ •μ˜
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/query-params-str-validations.md

    ///
    
    ## Use `Annotated` in the type for the `q` parameter
    
    Remember I told you before that `Annotated` can be used to add metadata to your parameters in the [Python Types Intro](../python-types.md#type-hints-with-metadata-annotations){.internal-link target=_blank}?
    
    Now it's the time to use it with FastAPI. πŸš€
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/BadWordService.java

                            isDelete = true;
                            targetWord = targetWord.substring(2);
                        }
                        final String target = targetWord;
                        BadWord badWord = badWordBhv.selectEntity(cb -> cb.query().setSuggestWord_Equal(target)).orElse(null);//TODO
                        final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
                        if (isDelete) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. docs/de/docs/deployment/https.md

    ///
    
    Um **die Grundlagen von HTTPS** aus Sicht des Benutzers zu erlernen, schauen Sie sich <a href="https://howhttps.works/" class="external-link" target="_blank">https://howhttps.works/</a> an.
    
    Aus **Sicht des Entwicklers** sollten Sie beim Nachdenken ΓΌber HTTPS Folgendes beachten:
    
    * FΓΌr HTTPS muss **der Server** ΓΌber von einem **Dritten** generierte **β€žZertifikateβ€œ** verfΓΌgen.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/FilteredCollectionsTestUtil.java

            C unfiltered = createUnfiltered(contents);
            C filterThenAdd = filter(unfiltered, EVEN);
            unfiltered.add(4);
    
            List<Integer> target = Lists.newArrayList(contents);
            target.add(4);
            C addThenFilter = filter(createUnfiltered(target), EVEN);
    
            assertThat(filterThenAdd).containsExactlyElementsIn(addThenFilter);
          }
        }
    
        public void testAdd() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. docs/em/docs/tutorial/request-forms-and-files.md

    # πŸ“¨ πŸ“¨ &amp; πŸ“
    
    πŸ‘† πŸ’ͺ πŸ”¬ πŸ“ &amp; πŸ“¨ πŸ‘ 🎏 πŸ•° βš™οΈ `File` &amp; `Form`.
    
    /// info
    
    πŸ“¨ πŸ“‚ πŸ“ &amp; /βš–οΈ πŸ“¨ πŸ“Š, πŸ₯‡ ❎ <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    🀢 β“‚. `pip install python-multipart`.
    
    ///
    
    ## πŸ—„ `File` &amp; `Form`
    
    ```Python hl_lines="1"
    {!../../docs_src/request_forms_and_files/tutorial001.py!}
    ```
    
    ## πŸ”¬ `File` &amp; `Form` πŸ”’
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. pom.xml

    				</dependencies>
    				<configuration>
    					<target>
    						<ant antfile="${basedir}/dbflute.xml" target="download.dbflute" />
    						<ant antfile="${basedir}/module.xml" target="install.modules">
    							<property name="with.fess" value="true" />
    							<property name="opensearch.version" value="${opensearch.version}" />
    						</ant>
    						<ant antfile="${basedir}/plugin.xml" target="install.plugins">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 02:16:03 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top