Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,572 for Actions (0.33 sec)

  1. .github/workflows/maven.yml

    # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
    
    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
    
    jobs:
      build:
    
        runs-on: ubuntu-latest
    
        steps:
        - uses: actions/checkout@v2
        - name: Set up JDK 17
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 17 21:22:20 UTC 2023
    - 822 bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractPolymorphicDomainObjectContainerSpec.groovy

                "create(String, Class)": { container.create("b", container.type) },
                "create(String, Class, Action)": { container.create("b", container.type, Actions.doNothing()) },
                "register(String, Class)": { container.register("b", container.type) },
                "register(String, Class, Action)": { container.register("b", container.type, Actions.doNothing()) },
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CompositeCleanupAction.java

            private final File baseDir;
            private final CleanupAction action;
    
            ScopedCleanupAction(File baseDir, CleanupAction action) {
                this.baseDir = baseDir;
                this.action = action;
            }
    
            @Override
            public void clean(CleanableStore cleanableStore, CleanupProgressMonitor progressMonitor) {
                action.clean(new CleanableSubDir(cleanableStore, baseDir), progressMonitor);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. .github/workflows/invalid_question.yml

    permissions:
      contents: read
    
    jobs:
      stale:
        permissions:
          issues: write  # for actions/stale to close stale issues
          pull-requests: write  # for actions/stale to close stale PRs
        runs-on: ubuntu-latest
        env:
          ACTIONS_STEP_DEBUG: true
        steps:
        - name: Close Stale Issues
          uses: actions/stale@v8
          with:
            repo-token: ${{ secrets.GITHUB_TOKEN }}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 02:27:05 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. README.md

    CoreLib
    [![Java CI with Maven](https://github.com/codelibs/corelib/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/corelib/actions/workflows/maven.yml)
    =============
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Sat Jun 19 03:27:00 UTC 2021
    - 214 bytes
    - Viewed (0)
  6. .github/dependabot.yml

    version: 2
    updates:
      # GitHub Actions
      - package-ecosystem: "github-actions"
        directory: "/"
        schedule:
          interval: "daily"
        commit-message:
          prefix: ⬆
      # Python
      - package-ecosystem: "pip"
        directory: "/"
        schedule:
          interval: "monthly"
        commit-message:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:41:55 UTC 2024
    - 311 bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/configuration/project/DefaultProjectConfigurationActionContainerTest.groovy

            container.actions == [action]
        }
    
        def "can add action as closure"() {
            def run = false
            def action = { run = true }
    
            when:
            container.add(action)
    
            then:
            container.actions.size() == 1
    
            when:
            container.actions[0].execute(Stub(ProjectInternal))
    
            then:
            run
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 22:54:35 UTC 2013
    - 1.4K bytes
    - Viewed (0)
  8. .github/workflows/maven.yml

    # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
    
    name: Java CI with Maven
    
    on:
      push:
        branches: [ master ]
      pull_request:
        branches: [ master ]
    
    jobs:
      build:
    
        runs-on: ubuntu-latest
    
        steps:
        - uses: actions/checkout@v2
        - name: Set up JDK 11
          uses: actions/setup-java@v2
          with:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 12:23:46 UTC 2021
    - 574 bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			// InitContainersToStart in the actions.
    			test.actions.InitContainersToStart = nil
    		} else {
    			// If sidecar containers are enabled, we should not see any
    			// NextInitContainerToStart in the actions.
    			test.actions.NextInitContainerToStart = nil
    		}
    		verifyActions(t, &test.actions, &actions, desc)
    	}
    }
    
    func TestSyncPodWithSandboxAndDeletedPod(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  10. .github/workflows/vulncheck.yml

      push:
        branches:
          - master
    
    permissions:
      contents: read # to fetch code (actions/checkout)
    
    jobs:
      vulncheck:
        name: Analysis
        runs-on: ubuntu-latest
        steps:
          - name: Check out code into the Go module directory
            uses: actions/checkout@v4
          - name: Set up Go
            uses: actions/setup-go@v5
            with:
              go-version: 1.22.4
              check-latest: true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 15:44:53 UTC 2024
    - 687 bytes
    - Viewed (0)
Back to top