Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 409 for pre (0.03 sec)

  1. .pre-commit-config.yaml

        rev: v0.7.1
        hooks:
        -   id: ruff
            args:
            - --fix
        -   id: ruff-format
    ci:
        autofix_commit_msg: ๐ŸŽจ [pre-commit.ci] Auto format from pre-commit.com hooks
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Oct 28 20:31:44 UTC 2024
    - 733 bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java

            assertEquals("<pre class=\"prettyprint\"></pre>", value);
    
            code = "aaa";
            value = FessFunctions.formatCode("L", "prettyprint", "text/plain", code);
            assertEquals("<pre class=\"prettyprint\">aaa</pre>", value);
    
            code = "aaa\nbbb";
            value = FessFunctions.formatCode("L", "prettyprint", "text/plain", code);
            assertEquals("<pre class=\"prettyprint\">aaa\nbbb</pre>", value);
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/common/help_ko.jsp

    		์˜ˆ๋ฅผ ๋“ค์–ด, Fess ๋˜๋Š” CodeLibs๋ฅผ ํฌํ•จํ•˜๋Š” ๋ฌธ์„œ๋ฅผ ๊ฒ€์ƒ‰ํ•˜๋ ค๋ฉด ๋‹ค์Œ๊ณผ ๊ฐ™์ด ์ž…๋ ฅํ•ฉ๋‹ˆ๋‹ค.
    		<pre>Fess OR CodeLibs</pre>
    	</dd>
    	<dt>์™€์ผ๋“œ์นด๋“œ</dt>
    	<dd>
    		๊ฒ€์ƒ‰์–ด์— 1 ๋ฌธ์ž ์ด์ƒ์˜ ๋ฌธ์ž ์™€์ผ๋“œ ์นด๋“œ๋ฅผ ์ง€์›ํ•ฉ๋‹ˆ๋‹ค.
    		?๋Š” ๋‹จ์ผ ๋ฌธ์ž ์™€์ผ๋“œ ์นด๋“œ๋กœ ์ง€์ •ํ•  ์ˆ˜ *๋Š” ์—ฌ๋Ÿฌ ๋ฌธ์ž ์™€์ผ๋“œ ์นด๋“œ๋กœ ์ง€์ •ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    		<pre>Fess*</pre>
    		๋˜๋Š”
    		<pre>Fe?s</pre>
    		๊ฒ€์ƒ‰์–ด์˜ ์ฒซ ๋ฒˆ์งธ ๋ฌธ์ž๋Š” ์‚ฌ์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค.
    	</dd>
    	<dt>๋ฒ”์œ„๊ฒ€์ƒ‰</dt>
    	<dd>
    		๋ฒ”์œ„ ๊ฒ€์ƒ‰ ํ•„๋“œ ๊ฐ’์˜ ๋ฒ”์œ„๋ฅผ ์ง€์ •ํ•˜์—ฌ ๊ทธ ์กฐ๊ฑด์— ์ผ์น˜ํ•˜๋Š” ๋ฌธ์„œ๋ฅผ ๊ฒ€์ƒ‰ํ•ฉ๋‹ˆ๋‹ค.
    		๋ฒ”์œ„์˜ ๊ฒฝ๊ณ„ ๊ฐ’์„ ํฌํ•จํ•˜๋ ค๋ฉด []๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ํฌํ•จํ•˜์ง€ ์•Š๋Š” ๊ฒฝ์šฐ๋Š” {}์„ ์ด์šฉํ•ฉ๋‹ˆ๋‹ค.
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/common/help.jsp

    		a query. AND operator matches documents where both terms exist
    		anywhere in the text of a single document.
    		<pre>Fess AND CodeLibs</pre>
    	</dd>
    	</dd>
    	<dt>OR</dt>
    	<dd>
    		OR operator matches documents where any terms exist anywhere in the
    		text of a single document.
    		<pre>Fess OR CodeLibs</pre>
    	</dd>
    	<dt>Wildcard</dt>
    	<dd>
    		single and multiple character wildcard searches within single terms
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  5. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/FarthestConflictResolverTest.java

         * <pre>
         * a:1.0
         * a:2.0
         * </pre>
         */
        @Test
        void testEqual() {
            ResolutionNode a1n = createResolutionNode(a1);
            ResolutionNode a2n = createResolutionNode(a2);
    
            assertResolveConflict(a1n, a1n, a2n);
        }
    
        /**
         * Tests that <code>a:2.0</code> wins in the scenario:
         * <pre>
         * a:2.0
         * a:1.0
         * </pre>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/NearestConflictResolverTest.java

         * <pre>
         * a:1.0
         * a:2.0
         * </pre>
         */
        @Test
        void testEqual() {
            ResolutionNode a1n = createResolutionNode(a1);
            ResolutionNode a2n = createResolutionNode(a2);
    
            assertResolveConflict(a1n, a1n, a2n);
        }
    
        /**
         * Tests that <code>a:2.0</code> wins in the scenario:
         * <pre>
         * a:2.0
         * a:1.0
         * </pre>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/OldestConflictResolverTest.java

         * <pre>
         * a:1.0
         * a:2.0
         * </pre>
         */
        @Test
        void testEqual() {
            ResolutionNode a1n = createResolutionNode(a1);
            ResolutionNode a2n = createResolutionNode(a2);
    
            assertResolveConflict(a1n, a1n, a2n);
        }
    
        /**
         * Tests that <code>a:1.0</code> wins in the scenario:
         * <pre>
         * a:2.0
         * a:1.0
         * </pre>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    <pre>
    func(int) int
    </pre>
    
    <p>
    These two invocations are equivalent:
    </p>
    
    <pre>
    t.Mv(7)
    f := t.Mv; f(7)
    </pre>
    
    <p>
    Similarly, the expression
    </p>
    
    <pre>
    pt.Mp
    </pre>
    
    <p>
    yields a function value of type
    </p>
    
    <pre>
    func(float32) float32
    </pre>
    
    <p>
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/common/help_ja.jsp

    		ใŸใจใˆใฐใ€Fess ใพใŸใฏ CodeLibs ใ‚’ๅซใ‚€ใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆใ‚’ๆคœ็ดขใ™ใ‚‹ใซใฏๆฌกใฎใ‚ˆใ†ใซๅ…ฅๅŠ›ใ—ใพใ™ใ€‚
    		<pre>Fess OR CodeLibs</pre>
    	</dd>
    	<dt>ใƒฏใ‚คใƒซใƒ‰ใ‚ซใƒผใƒ‰</dt>
    	<dd>
    		ๆคœ็ดข่ชžๅ†…ใง 1 ๆ–‡ๅญ—ใพใŸใฏ่ค‡ๆ•ฐๆ–‡ๅญ—ใฎใƒฏใ‚คใƒซใƒ‰ใ‚ซใƒผใƒ‰ใ‚’ใ‚ตใƒใƒผใƒˆใ—ใฆใ„ใพใ™ใ€‚
    		? ใฏ 1 ๆ–‡ๅญ—ใฎใƒฏใ‚คใƒซใƒ‰ใ‚ซใƒผใƒ‰ใจใ—ใฆๆŒ‡ๅฎšใงใใ€* ใฏ่ค‡ๆ•ฐๆ–‡ๅญ—ใฎใƒฏใ‚คใƒซใƒ‰ใ‚ซใƒผใƒ‰ใจใ—ใฆๆŒ‡ๅฎšใ™ใ‚‹ใ“ใจใŒใงใใพใ™ใ€‚
    		<pre>Fess*</pre>
    		ใพใŸใฏ
    		<pre>Fe?s</pre>
    		ๆคœ็ดข่ชžใฎๅ…ˆ้ ญๆ–‡ๅญ—ใงใฏๅˆฉ็”จใงใใพใ›ใ‚“ใ€‚
    	</dd>
    	<dt>็ฏ„ๅ›ฒๆคœ็ดข</dt>
    	<dd>
    		็ฏ„ๅ›ฒๆคœ็ดขใฏใƒ•ใ‚ฃใƒผใƒซใƒ‰ๅ€คใฎ็ฏ„ๅ›ฒใ‚’ๆŒ‡ๅฎšใ™ใ‚‹ใ“ใจใงใใฎๆกไปถใซใƒžใƒƒใƒใ™ใ‚‹ใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆใ‚’ๆคœ็ดขใ—ใพใ™ใ€‚
    		็ฏ„ๅ›ฒใฎๅขƒ็•Œๅ€คใ‚’ๅซใ‚ใ‚‹ๅ ดๅˆใฏ [] ใ‚’ๅˆฉ็”จใ—ใฆใ€ๅซใ‚ใชใ„ๅ ดๅˆใฏ {} ใ‚’ๅˆฉ็”จใ—ใพใ™ใ€‚ 
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  10. doc/go_mem.html

    For example, a compiler must not invert the conditional in this program:
    </p>
    
    <pre>
    *p = 1
    if cond {
    	*p = 2
    }
    </pre>
    
    <p>
    That is, the compiler must not rewrite the program into this one:
    </p>
    
    <pre>
    *p = 2
    if !cond {
    	*p = 1
    }
    </pre>
    
    <p>
    If <code>cond</code> is false and another goroutine is reading <code>*p</code>,
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top