Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 229 for linter (0.04 sec)

  1. src/test/java/jcifs/smb1/smb1/NetShareEnumResponseTest.java

            data[14] = 0x00;
            data[15] = 0x00; // type = 0
            data[16] = 40;
            data[17] = 0;
            data[18] = 0;
            data[19] = 0; // remark offset
    
            // Entry 2: IPC$, type 3 (IPC), remark "Inter-Process Communication"
            System.arraycopy("IPC$".getBytes(StandardCharsets.US_ASCII), 0, data, 20, 4);
            data[34] = 0x03;
            data[35] = 0x00; // type = 3
            data[36] = 60;
            data[37] = 0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/wsgi.md

    # WSGI inkludieren – Flask, Django und andere
    
    Sie können WSGI-Anwendungen mounten, wie Sie es in [Unteranwendungen – Mounts](sub-applications.md){.internal-link target=_blank}, [Hinter einem Proxy](behind-a-proxy.md){.internal-link target=_blank} gesehen haben.
    
    Dazu können Sie die `WSGIMiddleware` verwenden und damit Ihre WSGI-Anwendung wrappen, zum Beispiel Flask, Django usw.
    
    ## `WSGIMiddleware` verwenden
    
    Sie müssen `WSGIMiddleware` importieren.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. docs/en/docs/fastapi-people.md

    ---
    hide:
      - navigation
    ---
    
    # FastAPI People
    
    FastAPI has an amazing community that welcomes people from all backgrounds.
    
    ## Creator
    
    Hey! 👋
    
    This is me:
    
    <div class="user-list user-list-center">
    {% for user in people.maintainers %}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Jan 28 20:34:56 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/suggest/admin_suggest.jsp

                                                    <th class="text-center" style="width: 10%"><la:message
                                                            key="labels.suggest_word_number"/></th>
                                                    <th class="text-center" style="width: 20%"></th>
                                                </tr>
                                                </thead>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 18.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

        /*
         * TODO(cpovirk): Clear interrupt status here? We currently don't, which means that an interrupt
         * before, during, or after runInterruptibly() (unless it produced an InterruptedException
         * caught above) can linger and affect listeners.
         */
      }
    
      /**
       * Called before runInterruptibly - if true, runInterruptibly and afterRanInterruptibly will not
       * be called.
       */
      abstract boolean isDone();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 10K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/behind-a-proxy.md

    Wenn Sie eine benutzerdefinierte Liste von Servern (`servers`) übergeben und es einen `root_path` gibt (da Ihre API hinter einem Proxy läuft), fügt **FastAPI** einen „Server“ mit diesem `root_path` am Anfang der Liste ein.
    
    Zum Beispiel:
    
    {* ../../docs_src/behind_a_proxy/tutorial003.py hl[4:7] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/path-params.md

    <img src="/img/tutorial/path-params/image02.png">
    
    Und viele weitere kompatible Tools. Inklusive Codegenerierung für viele Sprachen.
    
    ## Pydantic
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 10K bytes
    - Viewed (0)
  8. .golangci.yml

    version: "2"
    
    linters:
      default: standard
      enable:
        - cyclop
        - gocritic
        - gosec
        - ineffassign
        - misspell
        - prealloc
        - unconvert
        - unparam
        - whitespace
    
    formatters:
      enable:
        - gofumpt
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Apr 17 03:55:13 UTC 2025
    - 241 bytes
    - Viewed (0)
  9. .github/workflows/golangci-lint.yml

    name: golangci-lint
    on:
      push:
        branches:
          - main
          - master
      pull_request:
    
    permissions:
      contents: read
      pull-requests: read
    
    jobs:
      golangci:
        name: lint
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: stable
          - name: golangci-lint
            uses: golangci/golangci-lint-action@v7
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Apr 17 07:30:17 UTC 2025
    - 471 bytes
    - Viewed (0)
  10. .github/workflows/helm-lint.yml

        steps:
          - name: Checkout
            uses: actions/checkout@v4
    
          - name: Install Helm
            uses: azure/setup-helm@v4
    
          - name: Run helm lint
            run: |
              cd helm/minio
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Jun 09 09:13:09 UTC 2024
    - 551 bytes
    - Viewed (0)
Back to top