Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 4,572 for Actions (0.55 sec)

  1. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    var map_SelfSubjectRulesReview = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. pkg/kubelet/container/sync_result.go

    )
    
    // SyncAction indicates different kind of actions in SyncPod() and KillPod(). Now there are only actions
    // about start/kill container and setup/teardown network.
    type SyncAction string
    
    const (
    	// StartContainer action
    	StartContainer SyncAction = "StartContainer"
    	// KillContainer action
    	KillContainer SyncAction = "KillContainer"
    	// SetupNetwork action
    	SetupNetwork SyncAction = "SetupNetwork"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 19 15:48:08 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  3. .github/workflows/pylint-presubmit.yml

    permissions:
      contents: read
    
    jobs:
      build:
        name: PyLint
        runs-on: ubuntu-latest
        steps:
        - name: Checkout code
          uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
        - name: Get file changes
          id: get_file_changes
          uses: trilom/file-changes-action@a6ca26c14274c33b15e6499323aac178af06ad4b # v1.2.4
          with:
            output: ' '
        - name: Report list of changed files
          run: |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 16:40:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. .github/workflows/go-healing.yml

        name: Go ${{ matrix.go-version }} on ${{ matrix.os }}
        runs-on: ${{ matrix.os }}
        strategy:
          matrix:
            go-version: [1.22.x]
            os: [ubuntu-latest]
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Build on ${{ matrix.os }}
            if: matrix.os == 'ubuntu-latest'
            env:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.2K bytes
    - Viewed (1)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalPhasedActionConnection.java

         *
         * @throws BuildExceptionVersion1 On build failure.
         * @throws InternalUnsupportedBuildArgumentException When the specified command-line options are not supported.
         * @throws InternalBuildActionFailureException When one of the actions fails with an exception.
         * @throws InternalBuildCancelledException When the operation was cancelled before it could complete.
         * @throws IllegalStateException When this connection has been stopped.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/InstanceModelView.java

    import javax.annotation.concurrent.ThreadSafe;
    import org.gradle.api.Action;
    import org.gradle.internal.Actions;
    import org.gradle.model.internal.type.ModelType;
    
    @ThreadSafe
    public class InstanceModelView<T> implements ModelView<T> {
    
        private final ModelPath path;
        private final ModelType<T> type;
        private final T instance;
        private final Action<? super T> onClose;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. .github/workflows/scorecards-analysis.yml

          security-events: write
          id-token: write
    
        steps:
          - name: "Checkout code"
            uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
            with:
              persist-credentials: false
    
          - name: "Run analysis"
            uses: ossf/scorecard-action@15c10fcf1cf912bd22260bfec67569a359ab87da # v2.1.1
            with:
              results_file: results.sarif
              results_format: sarif
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 21 23:56:23 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/test/groovy/org/gradle/internal/code/DefaultUserCodeApplicationContextTest.groovy

            def action2 = Mock(Action)
            def id1
    
            when:
            context.apply(source, action)
    
            then:
            1 * action.execute(_) >> { UserCodeApplicationId id ->
                id1 = id
                context.apply(source2, action2)
                assert context.current().id == id
                assert context.current().source == source
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 27 13:19:04 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/keystore/TestKeyStore.groovy

            HttpServerFixture server,
            Action<SslContextFactory.Server> configureServer = Actions.doNothing()
        ) {
            server.enableSsl(trustStore.path, trustStorePassword, null, null, configureServer)
        }
    
        void enableSslWithServerAndClientCerts(
            HttpServerFixture server,
            Action<SslContextFactory.Server> configureServer = Actions.doNothing()
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/VersionMappingComponentDependencyResolver.java

            final Set<ResolvedComponentResult> resolvedComponentResults = new LinkedHashSet<>();
            eachElement(root, Actions.doNothing(), Actions.doNothing(), resolvedComponentResults);
    
            for (ResolvedComponentResult selected : resolvedComponentResults) {
                ModuleVersionIdentifier moduleVersion = selected.getModuleVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top