Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Hevery (0.17 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/duplicate_mwc.yaml

          - default
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: NotIn
          values:
          - canary
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
        - v1
        operations:
        - CREATE
        resources:
        - pods
        scope: '*'
      sideEffects: None
      timeoutSeconds: 10
    ---
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 22 08:32:23 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. .github/workflows/test.yml

    name: Test
    
    on:
      push:
        branches:
          - master
      pull_request:
        types:
          - opened
          - synchronize
      schedule:
        # cron every week on monday
        - cron: "0 0 * * 1"
    
    jobs:
      lint:
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
    Others
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 4.4K bytes
    - Viewed (1)
  3. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

    labels: [ "a:regression", "to-triage" ]
    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please use our bug report template to report problems with something that has never worked.
            Regressions reports are greatly appreciated during our RC phase and before a final release.
      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 16 07:49:32 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/00-bug.yml

        attributes:
          label: "What did you see happen?"
          description: Command invocations and their associated output, functions with their arguments and return results, full stacktraces for panics (upload a file if it is very long), etc. Prefer copying text output over using screenshots.
        validations:
          required: true
    
      - type: textarea
        id: expected-behavior
        attributes:
          label: "What did you expect to see?"
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

      - type: markdown
        attributes:
          value: >
            Comparing two approaches to a use case side by side can make it easier to examine the
            differences between them.
    
    
            Additionally, it's very useful to us if you can provide a "straw API" — what the
            method signatures would look like, for example, even if the method and class names are still
    Others
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Nov 17 18:47:47 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  6. .github/DISCUSSION_TEMPLATE/questions.yml

    labels: [question]
    body:
      - type: markdown
        attributes:
          value: |
            Thanks for your interest in FastAPI! 🚀
    
            Please follow these instructions, fill every question, and do every step. 🙏
    
            I'm asking this because answering questions and solving problems in GitHub is what consumes most of the time.
    
    Others
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Aug 03 15:59:41 GMT 2023
    - 5.8K bytes
    - Viewed (1)
  7. .github/workflows/team-triage-stale.yml

    name: 'Requeue stale team-triage items'
    on:
      schedule:
        # Execute every day at 00:05 to avoid conflicts with other workflows
        - cron: '5 0 * * *'
    
    permissions:
      issues: write
      pull-requests: write
    
    jobs:
      requeue:
        runs-on: ubuntu-latest
        steps:
          - uses: actions/stale@v9
            with:
              operations-per-run: 50
              remove-stale-when-updated: false
    
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Jan 24 10:26:28 GMT 2024
    - 807 bytes
    - Viewed (0)
  8. istioctl/pkg/checkinject/testdata/check-inject/default-injector.yaml

              operator: DoesNotExist
        objectSelector:
          matchExpressions:
            - key: sidecar.istio.io/inject
              operator: NotIn
              values:
                - "false"
        reinvocationPolicy: Never
        rules:
          - apiGroups:
              - ""
            apiVersions:
              - v1
            operations:
              - CREATE
            resources:
              - pods
            scope: '*'
        sideEffects: None
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 3.9K bytes
    - Viewed (1)
  9. .github/ISSUE_TEMPLATE/11-language-change.yml

      - type: textarea
        id: cost-description
        attributes:
          label: "Cost Description"
          description: "What is the cost of this proposal? (Every language change has a cost)"
    
      - type: input
        id: go-toolchain
        attributes:
          label: Changes to Go ToolChain
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/values.yaml

          # and doesn't spam the readiness endpoint too much
          #
          # If the probe is disabled, it is recommended to have delay=1s,period=2s,failureThreshold=30.
          # This ensures the startup is reasonable fast (polling every 2s). 1s delay is used since the startup is not often ready instantly.
          startupProbe:
            enabled: true
            failureThreshold: 600 # 10 minutes
          # Resources for the sidecar.
          resources:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
Back to top