Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 649 for _action (3.04 sec)

  1. .github/workflows/submit-github-dependency-graph.yml

        permissions:
          contents: write
        runs-on: ubuntu-latest
        steps:
        - uses: actions/checkout@v4
        - uses: actions/setup-java@v4
          with:
            distribution: temurin
            java-version: 11
        - name: Setup Gradle
          uses: gradle/actions/dependency-submission@v3
          with:
            # Action runs a custom dependencies task that fails with config-cache on Gradle 8.7 (works with 8.6)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. .github/workflows/ci.yml

        branches:
          - master
      pull_request:
        branches:
          - master
    
    permissions:
      contents: read
    
    jobs:
      test:
        permissions:
          actions: write  # for styfle/cancel-workflow-action to cancel/stop running workflows
          contents: read  # for actions/checkout to fetch code
        name: "${{ matrix.root-pom }} on JDK ${{ matrix.java }} on ${{ matrix.os }}"
        strategy:
          matrix:
            os: [ ubuntu-latest ]
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_json_issue35169.txt

    	# Since the only test we requested failed to build, we should
    	# not see any "pass" actions in the JSON stream.
    ! stdout '\{.*"Action":"pass".*\}'
    
    	# TODO(#62067): emit this as a build event instead of a test event.
    stdout '\{.*"Action":"output","Package":"example","Output":"FAIL\\texample \[build failed\]\\n"\}'
    stdout '\{.*"Action":"fail","Package":"example",.*\}'
    
    -- go.mod --
    module example
    go 1.19
    -- example.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:29:21 UTC 2023
    - 804 bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

    @RequiresOptIn("Analysis should be prohibited to be ran from write action, otherwise it may cause IDE freezes and incorrect behavior in some cases")
    private annotation class KaAllowProhibitedAnalyzeFromWriteAction
    
    /**
     * Allows [analyze][org.jetbrains.kotlin.analysis.api.analyze] to be called from a write action in the given [action], which is normally
     * not allowed.
     *
     * Analysis is not supposed to be called from a write action.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. .github/workflows/reviewdog.yml

        name: runner / golangci-lint
        runs-on: ubuntu-latest
        steps:
          - name: Check out code into the Go module directory
            uses: actions/checkout@v4
          - name: golangci-lint
            uses: reviewdog/action-golangci-lint@v2
    
          - name: Setup reviewdog
            uses: reviewdog/action-setup@v1
    
          - name: gofumpt -s with reviewdog
            env:
              REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Oct 10 06:50:45 UTC 2023
    - 664 bytes
    - Viewed (0)
  6. .github/workflows/gradle-wrapper-validation.yml

    on: [push, pull_request]
    
    permissions:
      contents: read
    
    jobs:
      validation:
        name: "Validation"
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 348 bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/DefaultCopySpecCodec.kt

                val fileMode = readNullableSmallInt()
                val actions = readList().uncheckedCast<List<Action<FileCopyDetails>>>()
                val children = readList().uncheckedCast<List<CopySpecInternal>>()
                val copySpec = DefaultCopySpec(fileCollectionFactory, objectFactory, instantiator, patternSetFactory, destPath, sourceFiles, patterns, actions, children)
                copySpec.duplicatesStrategy = duplicatesStrategy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. .github/workflows/labeler.yml

        types: [opened, edited, reopened]
    
    jobs:
      triage:
        runs-on: ubuntu-latest
        name: Label issues and pull requests
        steps:
          - name: check out
            uses: actions/checkout@v4
    
          - name: labeler
            uses: jinzhu/super-labeler-action@develop
            with:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Oct 10 06:50:45 UTC 2023
    - 423 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/concurrent/DefaultAsyncIOScopeFactoryTest.kt

        private
        fun exceptionOrNullFrom(action: () -> Unit) = runCatching(action).exceptionOrNull()
    
        private
        fun withAsyncIOScopeFactory(
            settings: AsyncIOScopeSettings = JavaSystemPropertiesAsyncIOScopeSettings(),
            action: DefaultAsyncIOScopeFactory.() -> Unit
        ) {
            DefaultAsyncIOScopeFactory(settings) { Executors.newSingleThreadExecutor() }.useToRun(action)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin_installplugin.jsp

                                <h3 class="card-title">
                                    <la:message key="labels.plugin_install"/>
                                </h3>
                            </div>
                            <la:form action="/admin/plugin/install" enctype="multipart/form-data">
                            <div class="card-body">
                                <ul class="nav nav-tabs" role="tablist">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 5.8K bytes
    - Viewed (0)
Back to top