Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,322 for Issue (0.05 sec)

  1. .github/workflows/issue-metadata.yml

        runs-on: ubuntu-latest
        steps:
          # Check that issues have proper metadata: labels and milestone
          # https://github.com/gradle/issue-management-action/blob/main/src/issue-metadata.ts
          - uses: gradle/issue-management-action@v1
            with:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 463 bytes
    - Viewed (0)
  2. .github/workflows/issue-manager.yml

    name: Issue Manager
    
    on:
      schedule:
        - cron: "10 3 * * *"
      issue_comment:
        types:
          - created
      issues:
        types:
          - labeled
      pull_request_target:
        types:
          - labeled
      workflow_dispatch:
    
    jobs:
      issue-manager:
        if: github.repository_owner == 'tiangolo'
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 30 18:46:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/tflite-converter-issue.md

    ---
    name: TensorFlow Lite Converter Issue
    about: Use this template for reporting issues during model conversion to TFLite
    labels: 'TFLiteConverter'
    
    ---
    
    ### 1. System information
    
    - OS Platform and Distribution (e.g., Linux Ubuntu 16.04):
    - TensorFlow installation (pip package or built from source):
    - TensorFlow library (version, if pip package or github SHA, if built from source):
    
    ### 2. Code
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 15 03:35:58 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. .github/workflows/issue-on-pr-rollback.yml

    # limitations under the License.
    # ==============================================================================
    
    name: Creates a GitHub Issue when a PR Rolled back via Commit to Master
    on:
      push:
        branches:
          - master
          
    permissions: {}
    
    jobs:
      create-issue-on-pr-rollback:
        runs-on: ubuntu-latest
        permissions:
          contents: read
          issues: write
          pull-requests: read
        if: |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 16:40:29 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_indirect_main.txt

    -- pkg-v0.1.0/pkg.go --
    package pkg
    
    -- root-v0.1.0/go.mod --
    module golang.org/issue/root
    
    require golang.org/issue/pkg v0.1.0
    
    -- pkgmods.txt --
    golang.org/issue/mirror v0.1.0
    golang.org/issue/pkg v0.1.0
    golang.org/issue/root
    -- mods.txt --
    golang.org/issue/root
    golang.org/issue/mirror v0.1.0 => ./mirror-v0.1.0
    golang.org/issue/pkg v0.1.0 => ./pkg-v0.1.0
    -- graph.txt --
    golang.org/issue/root go@1.12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. doc/next/9-todo.md

    CL 570681 ("os: make FindProcess use pidfd on Linux") mentions accepted proposal go.dev/issue/51246 (described as fully implemented in Go 1.22) and NeedsInvestigation continuation issue go.dev/issue/62654.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/vendor_list_issue11977.txt

    go list -f '{{join .TestImports "\n"}}' github.com/rsc/go-get-issue-11864/t
    stdout 'go-get-issue-11864/vendor/vendor.org/p'
    
    go list -f '{{join .XTestImports "\n"}}' github.com/rsc/go-get-issue-11864/tx
    stdout 'go-get-issue-11864/vendor/vendor.org/p'
    
    go list -f '{{join .XTestImports "\n"}}' github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx2
    stdout 'go-get-issue-11864/vendor/vendor.org/tx2'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. .github/workflows/stale-issues.yml

              close-issue-reason: completed
              # List of labels to remove when issues/PRs unstale. 
              labels-to-remove-when-unstale: "stat:contribution welcome,stat:good first issue"
              any-of-labels: "stat:contribution welcome,stat:good first issue"
              stale-issue-message: > 
                This issue is stale because it has been open for 180 days with no activity.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 23 20:04:38 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-65616`](https://youtrack.jetbrains.com/issue/KT-65616) K2: FirDeclarationStatusImpl cannot be cast to FirResolvedDeclarationStatus from STATUS
    - [`KT-65600`](https://youtrack.jetbrains.com/issue/KT-65600) Analysis Api: FirFile for KtCodeFragments are created and not updated on changes
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/vendor_test_issue11864.txt

    [short] skip
    env GO111MODULE=off
    
    # test should work too
    go test github.com/rsc/go-get-issue-11864
    go test github.com/rsc/go-get-issue-11864/t
    
    # external tests should observe internal test exports (golang.org/issue/11977)
    go test github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx2
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/m.go --
    package g
    
    import _ "vendor.org/p"
    import _ "vendor.org/p1"
    
    func main() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top