Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 329 for Issue (0.01 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginValidationManager.java

    public interface PluginValidationManager {
        enum IssueLocality {
            /**
             * Issue is "user actionable", is internal to the currently built project and is reparable from scope of it
             * by doing some change (for example by changing POM and fixing the problematic plugin configuration).
             */
            INTERNAL,
    
            /**
             * Issue (present in some plugin) is "developer actionable" (of given plugin, by changing code and doing
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 3.4K bytes
    - Click Count (0)
  2. .github/ISSUE_TEMPLATE/tensorflow_issue_template.yaml

    name: TensorFlow Issue Template
    description: Use this template to report TensorFlow-related issues
    body:
      - type: dropdown
        id: issue-type
        attributes:
          label: Issue type
          description: What type of issue would you like to report?
          multiple: false
          options:
            - Bug
            - Build/Install
            - Performance
            - Support
            - Feature Request
            - Documentation Feature Request
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Wed Jun 28 18:25:42 GMT 2023
    - 3.7K bytes
    - Click Count (0)
  3. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

            Please open IntelliJ-related issues on [the JetBrains Issue Tracker](https://youtrack.jetbrains.com/newIssue?project=IDEA)
            Please open Gradle Native-related issues on [the Gradle Native repository](https://github.com/gradle/gradle-native/issues)
    
            Provide a brief summary of the issue in the title above
      - type: textarea
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Nov 27 15:48:22 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  4. .github/workflows/lock.yml

    jobs:
      action:
        runs-on: ubuntu-latest
        steps:
          - uses: dessant/lock-threads@v3
            with:
              github-token: ${{ github.token }}
              issue-inactive-days: '365'
              exclude-any-issue-labels: 'do-not-close'
              issue-lock-reason: 'resolved'
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Jan 30 03:27:43 GMT 2022
    - 447 bytes
    - Click Count (0)
  5. .github/stale.yml

    # Configuration for probot-stale - https://github.com/probot/stale
    
    # Number of days of inactivity before an Issue or Pull Request becomes stale
    daysUntilStale: 30
    
    # Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
    # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
    daysUntilClose: 15
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Mon Jan 24 04:36:59 GMT 2022
    - 2K bytes
    - Click Count (0)
  6. src/cmd/asm/internal/asm/pseudo_test.go

    		{"TEXT", "$\"foo\", 0, $1", "TEXT symbol \"<erroneous symbol>\" must be a symbol(SB)"},
    		{"TEXT", "$0É:0, 0, $1", "expected end of operand, found É"}, // Issue #12467.
    		{"TEXT", "$:0:(SB, 0, $1", "expected '(', found 0"},          // Issue 12468.
    		{"TEXT", "@B(SB),0,$0", "expected '(', found B"},             // Issue 23580.
    		{"TEXT", "foo<ABIInternal>(SB),0", "ABI selector only permitted when compiling runtime, reference was to \"foo\""},
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 3.1K bytes
    - Click Count (0)
  7. .github/ISSUE_TEMPLATE/00-bug.yml

    # https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
    name: Bugs
    description: The go command, standard library, or anything else
    title: "import/path: issue title"
    
    body:
      - type: markdown
        attributes:
          value: |
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 3.3K bytes
    - Click Count (0)
  8. .github/ISSUE_TEMPLATE/01-pkgsite.yml

    description: Issues or feature requests for the documentation site
    title: "x/pkgsite: issue title"
    labels: ["pkgsite"]
    body:
      - type: markdown
        attributes:
          value: "Please answer these questions before submitting your issue. Thanks!"
      - type: input
        id: url
        attributes:
          label: "What is the URL of the page with the issue?"
        validations:
          required: true
      - type: input
        id: user-agent
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 1.4K bytes
    - Click Count (0)
  9. .github/workflows/issues.yaml

    # @format
    
    name: Issue Workflow
    
    on:
      issues:
        types:
          - opened
    
    jobs:
      add-to-project:
        name: Add issue to project
        runs-on: ubuntu-latest
        steps:
          - uses: actions/add-to-project@v0.5.0
            with:
              project-url: https://github.com/orgs/miniohq/projects/2
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Jan 11 07:02:00 GMT 2024
    - 338 bytes
    - Click Count (0)
  10. api/README

    except.txt lists features that may disappear without breaking true
    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    giving the GitHub issue number of the proposal issue that accepted
    the new API. This helps with our end-of-cycle audit of new APIs.
    The same requirement applies to next/* (described below), which will
    become a go1.XX.txt for XX >= 19.
    
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Wed Jan 31 19:22:50 GMT 2024
    - 1.2K bytes
    - Click Count (0)
Back to Top