Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 128 for skip1 (0.03 seconds)

  1. utils/utils.go

    // It skips:
    //   - GORM's core source files (identified by gormSourceDir prefix)
    //   - Exclude test files (*_test.go)
    //   - go-gorm/gen's Generated files (*.gen.go)
    func CallerFrame() runtime.Frame {
    	// Preserve the original CallerFrame stack depth after introducing callerFrame().
    	return callerFrame(4)
    }
    
    func callerFrame(skip int) runtime.Frame {
    	pcs := [13]uintptr{}
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Mar 21 11:35:55 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                    "",
                    display = ParameterDisplay.PROMPT,
                    description = "Skips differential flame graph generation to avoid OOM in large adhoc tests.",
                    options =
                        listOf(
                            "Generate diffs" to "",
                            "Skip diffs generation" to "--no-generate-diffs",
                        ),
                )
                text(
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 14:08:32 GMT 2026
    - 6K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/FluentIterable.java

      /**
       * Returns a view of this fluent iterable that skips its first {@code numberToSkip} elements. If
       * this fluent iterable contains fewer than {@code numberToSkip} elements, the returned fluent
       * iterable skips all of its elements.
       *
       * <p>Modifications to this fluent iterable before a call to {@code iterator()} are reflected in
       * the returned fluent iterable. That is, the iterator skips the first {@code numberToSkip}
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Apr 02 14:49:41 GMT 2026
    - 34.7K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/FluentIterable.java

      /**
       * Returns a view of this fluent iterable that skips its first {@code numberToSkip} elements. If
       * this fluent iterable contains fewer than {@code numberToSkip} elements, the returned fluent
       * iterable skips all of its elements.
       *
       * <p>Modifications to this fluent iterable before a call to {@code iterator()} are reflected in
       * the returned fluent iterable. That is, the iterator skips the first {@code numberToSkip}
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Apr 02 14:49:41 GMT 2026
    - 34.7K bytes
    - Click Count (0)
  5. guava/src/com/google/common/collect/Iterables.java

      /**
       * Returns a view of {@code iterable} that skips its first {@code numberToSkip} elements. If
       * {@code iterable} contains fewer than {@code numberToSkip} elements, the returned iterable skips
       * all of its elements.
       *
       * <p>Modifications to the underlying {@link Iterable} before a call to {@code iterator()} are
       * reflected in the returned iterator. That is, the iterator skips the first {@code numberToSkip}
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 43.6K bytes
    - Click Count (0)
  6. guava-tests/test/com/google/common/io/CharSequenceReaderTest.java

        assertFullyRead(reader);
    
        // skip fully
        reader = new CharSequenceReader(charSequence);
        assertEquals(expected.length(), reader.skip(Long.MAX_VALUE));
        assertFullyRead(reader);
    
        // skip 5 and read the rest
        if (expected.length() > 5) {
          reader = new CharSequenceReader(charSequence);
          assertEquals(5, reader.skip(5));
    
          buf = new char[expected.length() - 5];
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  7. tests/multi_primary_keys_test.go

    		t.Skip("skip sqlite, sqlserver due to it doesn't support multiple primary keys with auto increment")
    	}
    
    	if mysqlVersionAtLeast(8, 4) {
    		t.Skip("skip mysql 8.4+ due to stricter foreign key requirements for non-unique referenced keys")
    	}
    
    	if name := DB.Dialector.Name(); name == "postgres" {
    		t.Skip("skip postgres due to it only allow unique constraint matching given keys")
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Mar 21 11:27:38 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  8. docs/es/docs/tutorial/query-params.md

    En el ejemplo anterior, tienen valores por defecto de `skip=0` y `limit=10`.
    
    Entonces, ir a la URL:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    sería lo mismo que ir a:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    Pero si vas a, por ejemplo:
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    Los valores de los parámetros en tu función serán:
    
    * `skip=20`: porque lo configuraste en la URL
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  9. docs/pt/docs/tutorial/query-params.md

    No exemplo acima eles tem valores padrão de `skip=0` e `limit=10`.
    
    Então, se você for até a URL:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    Seria o mesmo que ir para:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    Mas, se por exemplo você for para:
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    Os valores dos parâmetros na sua função serão:
    
    * `skip=20`: Por que você definiu isso na URL
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 5K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/query-params.md

    * 自動文件
    
    ## 預設值 { #defaults }
    
    由於查詢參數不是路徑的固定部分,因此可以是選填並具有預設值。
    
    在上面的例子中,預設值為 `skip=0` 與 `limit=10`。
    
    因此,造訪下列 URL:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    等同於造訪:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    但如果你改為造訪:
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    函式中的參數值會是:
    
    * `skip=20`:因為你在 URL 中設定了它
    * `limit=10`:因為那是預設值
    
    ## 選用參數 { #optional-parameters }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 4.1K bytes
    - Click Count (0)
Back to Top