Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 421 - 430 of 715 for skip1 (0.02 seconds)

  1. docs/en/docs/virtual-environments.md

    /// info
    
    If you already know about virtual environments, how to create them and use them, you might want to skip this section. ๐Ÿค“
    
    ///
    
    /// tip
    
    A **virtual environment** is different than an **environment variable**.
    
    An **environment variable** is a variable in the system that can be used by programs.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 22.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

                    || url.startsWith("storage:") || url.startsWith("s3:") || url.startsWith("gcs:");
        }
    
        /**
         * Checks if the given URL should skip URL decoding when extracting file names.
         * Some protocols (like SMB, FTP, S3, GCS) should preserve the original URL encoding.
         *
         * @param url the URL to check
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 13:59:25 GMT 2026
    - 12.4K bytes
    - Click Count (1)
  3. docs/ko/docs/tutorial/dependencies/classes-as-dependencies.md

    {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[8] *}
    
    ์ด ๋งค๊ฐœ๋ณ€์ˆ˜๋“ค์ด **FastAPI**๊ฐ€ ์˜์กด์„ฑ์„ "ํ•ด๊ฒฐ"ํ•˜๋Š” ๋ฐ ์‚ฌ์šฉํ•  ๊ฒƒ๋“ค์ž…๋‹ˆ๋‹ค.
    
    ๋‘ ๊ฒฝ์šฐ ๋ชจ๋‘ ๋‹ค์Œ์„ ๊ฐ–๊ฒŒ ๋ฉ๋‹ˆ๋‹ค:
    
    * `str`์ธ ์„ ํƒ์  ์ฟผ๋ฆฌ ๋งค๊ฐœ๋ณ€์ˆ˜ `q`.
    * ๊ธฐ๋ณธ๊ฐ’์ด `0`์ธ `int` ์ฟผ๋ฆฌ ๋งค๊ฐœ๋ณ€์ˆ˜ `skip`.
    * ๊ธฐ๋ณธ๊ฐ’์ด `100`์ธ `int` ์ฟผ๋ฆฌ ๋งค๊ฐœ๋ณ€์ˆ˜ `limit`.
    
    ๋‘ ๊ฒฝ์šฐ ๋ชจ๋‘ ๋ฐ์ดํ„ฐ๋Š” ๋ณ€ํ™˜๋˜๊ณ , ๊ฒ€์ฆ๋˜๋ฉฐ, OpenAPI ์Šคํ‚ค๋งˆ์— ๋ฌธ์„œํ™”๋˜๋Š” ๋“ฑ ์—ฌ๋Ÿฌ ์ฒ˜๋ฆฌ๊ฐ€ ์ ์šฉ๋ฉ๋‹ˆ๋‹ค.
    
    ## ์‚ฌ์šฉํ•˜๊ธฐ { #use-it }
    
    ์ด์ œ ์ด ํด๋ž˜์Šค๋ฅผ ์‚ฌ์šฉํ•ด ์˜์กด์„ฑ์„ ์„ ์–ธํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:57:01 GMT 2026
    - 8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

                while ((line = reader.readLine()) != null) {
                    // Remove comments
                    final String replacedLine = line.replaceAll("#.*$", StringUtil.EMPTY).trim();
    
                    // Skip empty lines or comment lines
                    if (replacedLine.length() == 0) {
                        if (updater != null) {
                            updater.write(line);
                        }
                        continue;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  5. .teamcity/src/main/kotlin/common/CommonExtensions.kt

    fun BuildStep.skipConditionally(buildType: BuildType? = null) {
        // we need to run CompileALl unconditionally because of artifact dependency
        if (buildType !is CompileAll) {
            conditions {
                doesNotEqual("skip.build", "true")
            }
        }
    }
    
    fun buildToolGradleParameters(
        isContinue: Boolean = true,
        maxParallelForks: String = "%maxParallelForks%",
    ): List<String> =
        listOf(
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 13 05:03:56 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/dependencies/index.md

    And it can return anything you want.
    
    In this case, this dependency expects:
    
    * An optional query parameter `q` that is a `str`.
    * An optional query parameter `skip` that is an `int`, and by default is `0`.
    * An optional query parameter `limit` that is an `int`, and by default is `100`.
    
    And then it just returns a `dict` containing those values.
    
    /// info
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableList.java

            E element = (E) elements[0];
            return of(element);
          default:
            return new RegularImmutableList<E>(ImmutableList.<E>nullCheckedList(elements));
        }
      }
    
      // Factory method that skips the null checks.  Used only when the elements
      // are guaranteed to be non-null.
      static <E> ImmutableList<E> unsafeDelegateList(List<? extends E> list) {
        switch (list.size()) {
          case 0:
            return of();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Aug 06 18:32:41 GMT 2025
    - 11.1K bytes
    - Click Count (0)
  8. cmd/background-newdisks-heal-ops_gen.go

    				return
    			}
    		case "Finished":
    			z.Finished, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Finished")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z *healingTracker) EncodeMsg(en *msgp.Writer) (err error) {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 24.6K bytes
    - Click Count (0)
  9. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java

            assertEquals(2, SMBUtil.readInt2(buffer, 32));
    
            // Verify negotiate context offset is set
            int contextOffset = SMBUtil.readInt4(buffer, 28);
            assertTrue(contextOffset > 0);
    
            // Skip detailed context verification since we can't access headerStart
            // Just verify that contexts were written
            assertTrue(bytesWritten > 60); // Should be larger than basic negotiate request
        }
    
        @Test
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 20.7K bytes
    - Click Count (0)
  10. docs/en/docs/management-tasks.md

    /// tip
    
    This section is useful only to a handful of people, team members with permissions to manage the repository. You can probably skip it. ๐Ÿ˜‰
    
    ///
    
    ...so, you are a [team member of FastAPI](./fastapi-people.md#team)? Wow, you are so cool! ๐Ÿ˜Ž
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:59:26 GMT 2026
    - 10.7K bytes
    - Click Count (0)
Back to Top