Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,572 for Actions (0.16 sec)

  1. .github/workflows/missing_playground.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.3K bytes
    - Viewed (0)
  2. tests/integration/telemetry/policy/testdata/enable_envoy_ratelimit.yaml

              vhost:
                name: "srv.{{ .EchoNamespace }}.svc.cluster.local:80"
                route:
                  action: ANY
          patch:
            operation: MERGE
            value:
              rate_limits:
                - actions: # any actions in here
                      # Multiple actions nest the descriptors
                      # - generic_key:
                      # descriptor_value: "test"
                  - request_headers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. .github/workflows/maven.yml

    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
      workflow_dispatch:
    
    jobs:
      build:
        runs-on: ubuntu-latest
        timeout-minutes: 15
        steps:
        - uses: actions/checkout@v4
        - name: Set up JDK 17
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. .github/workflows/maven.yml

        steps:
        - uses: actions/checkout@v2
        - name: Set up JDK 11
          uses: actions/setup-java@v2
          with:
            java-version: '11'
            distribution: 'adopt'
        - name: Build with Maven
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Sat Feb 19 00:40:24 UTC 2022
    - 675 bytes
    - Viewed (0)
  5. samples/bookinfo/policy/productpage_envoy_ratelimit.yaml

            context: GATEWAY
            routeConfiguration:
              vhost:
                name: ""
                route:
                  action: ANY
          patch:
            operation: MERGE
            value:
              rate_limits:
                - actions: # any actions in here
                      # Multiple actions nest the descriptors
                      # - generic_key:
                      # descriptor_value: "test"
                  - request_headers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 10 15:30:28 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  6. README.md

    Fess Crawler
    [![Java CI with Maven](https://github.com/codelibs/fess-crawler/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/fess-crawler/actions/workflows/maven.yml)
    =======
    
    ## Overview
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jun 19 01:09:45 UTC 2021
    - 286 bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultMutationGuardTest.groovy

            where:
            methodUnderTest         | callableType | callable
            "withMutationDisabled"  | "Action"     | Actions.doNothing()
            "withMutationEnabled"   | "Action"     | Actions.doNothing()
        }
    
        def "call to #methodUnderTest(#callableType) inside withMutationEnabled(Action) does enable disallow check outside scope"() {
            def aMethodUnderTest = methodUnderTest
            def aCallable = callable
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIsolationIntegrationTest.groovy

            outputContains 'root with version from action'
            outputContains 'sub with version from action'
            outputContains '[1: before root unspecified, 2: before root from action, 1: after root from script, 2: after root from script]'
            outputContains '[1: before sub unspecified, 2: before sub from action, 1: after sub from script, 2: after sub from script]'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/FetchCustomModelForEachProjectInParallel.java

            List<FetchModelForProject> actions = new ArrayList<>();
            GradleBuild buildModel = controller.getBuildModel();
            for (BasicGradleProject project : buildModel.getProjects()) {
                actions.add(new FetchModelForProject(project));
            }
            return controller.run(actions);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. pkg/controller/serviceaccount/serviceaccounts_controller_test.go

    			t.Errorf("%s: took too long", k)
    		}
    
    		actions := client.Actions()
    		if len(tc.ExpectCreatedServiceAccounts) != len(actions) {
    			t.Errorf("%s: Expected to create accounts %#v. Actual actions were: %#v", k, tc.ExpectCreatedServiceAccounts, actions)
    			continue
    		}
    		for i, expectedName := range tc.ExpectCreatedServiceAccounts {
    			action := actions[i]
    			if !action.Matches("create", "serviceaccounts") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 03 00:46:06 UTC 2021
    - 7.6K bytes
    - Viewed (0)
Back to top