Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Zweers (0.27 sec)

  1. .github/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    options:
      # make root approval non-recursive
      no_parent_owners: true
    reviewers:
      - alisondy
      - cblecker
      - guineveresaenger
      - mrbobbytables
      - nikhita
      - parispittman
      - palnabarun
      - kaslin
      - MadhavJivrajani
      - Priyankasaggu11929
    approvers:
      - sig-contributor-experience-approvers
      - parispittman
    emeritus_approvers:
      - castrojo
      - Phillels
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Mon Apr 10 07:04:03 GMT 2023
    - 450 bytes
    - Viewed (0)
  2. LICENSES/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    options:
      # make root approval non-recursive
      no_parent_owners: true
    approvers:
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Mon Oct 10 12:26:53 GMT 2022
    - 151 bytes
    - Viewed (0)
  3. CHANGELOG/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    options:
      # make root approval non-recursive
      no_parent_owners: true
    approvers:
      - release-engineering-approvers
      - release-managers
      - AuraSinis # 1.24 Release Notes Lead
      - cici37 # 1.23 Release Notes Lead
      - csantanapr # 1.25 Release Notes Lead
      - harshanarayana # 1.27 Release Notes Lead
      - ramrodo # 1.26 Release Notes Lead
      - sanchita-07 # 1.28 Release Notes Lead
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Jan 24 16:11:28 GMT 2024
    - 801 bytes
    - Viewed (0)
  4. .cm/plugins/filters/byCodeowner/index.js

            const result = new Map()
            files.map(f => {
                console.log("Resolving owners for: " + f);
                const owners = resolveCodeowners(mapping, f);
                console.log("Owners for: " + f + " are: " + owners);
                owners.filter(i => typeof i === 'string')
                    .map(u => u.replace(/^@gradle\//, ""))
                    .forEach(owner => {
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 19:12:32 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  5. helm/minio/.helmignore

    .DS_Store
    # Common VCS dirs
    .git/
    .gitignore
    .bzr/
    .bzrignore
    .hg/
    .hgignore
    .svn/
    # Common backup files
    *.swp
    *.bak
    *.tmp
    *~
    # Various IDEs
    .project
    .idea/
    *.tmproj
    # OWNERS file for Kubernetes
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Aug 20 22:30:54 GMT 2021
    - 368 bytes
    - Viewed (0)
  6. RELEASE_BRANCHES.md

    # Release Branches
    
    Release branches have a name of `release-MAJOR.MINOR`. Essential Istio repositories are branched from master roughly 4
    weeks prior to a new release. The `istio/istio.io` repository does not get branched until the release is ready
    for publication.
    
    This document outlines getting in new features after a new branch has been cut and the process for getting a PR
    merged in before and after the first public release.
    
    # Feature Freeze
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Nov 12 23:27:43 GMT 2021
    - 3.9K bytes
    - Viewed (0)
  7. .cm/plugins/filters/categorize/index.js

     * @returns {[Object]} Returns a list of objects for each platform containing info about the changes to files in that platform
     * @example {{ owners | categorize(branch.diff.files_metadata) }}
     */
    
    function categorize(fileOwners, fileMetadatas) {
        const result = new Map();
        [...fileOwners.keys()].forEach(platform => {
            result.set(platform, {
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  8. bin/.spelling_failures

    OWNERS
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Sep 07 17:51:42 GMT 2018
    - 15 bytes
    - Viewed (0)
  9. .gitattributes

    # Always check-out / check-in files with LF line endings.
    * text=auto eol=lf
    
    hack/verify-flags/known-flags.txt merge=union
    test/test_owners.csv merge=union
    
    **/zz_generated.*.go linguist-generated=true
    **/types.generated.go linguist-generated=true
    **/generated.pb.go linguist-generated=true
    **/generated.proto
    **/types_swagger_doc_generated.go linguist-generated=true
    api/openapi-spec/*.json linguist-generated=true
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 22 11:36:07 GMT 2022
    - 459 bytes
    - Viewed (0)
  10. .cm/plugins/filters/byPlatform/index.js

     * @description Groups the PR's files by platform based on the file's path.
     * @param {string[]} files - the gitStream's files context variable
     * @returns {Map} - Map from platform to list of files in this PR in it
     * @example {{ owners | byPlatform }}
     */
    function byPlatform(files) {
        const result = new Map();
        files.forEach(file => {
            const platform = getPlatform(file);
            if (!result.has(platform)) {
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 16:47:29 GMT 2024
    - 1K bytes
    - Viewed (0)
Back to top