Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 342 for Reviewer1 (0.19 sec)

  1. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/rest/LibertyRestEndpoint.java

                JsonObject ratings = ratingsResponse.getJsonObject("ratings");
                if (ratings.containsKey("Reviewer1")){
              	  starsReviewer1 = ratings.getInt("Reviewer1");
                }
                if (ratings.containsKey("Reviewer2")){
                  starsReviewer2 = ratings.getInt("Reviewer2");
                }
              }
            }
          }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 22:25:32 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. samples/bookinfo/src/ratings/ratings.js

                      }
                      var result = {
                          id: productId,
                          ratings: {
                              Reviewer1: firstRating,
                              Reviewer2: secondRating
                          }
                      }
                      res.writeHead(200, {'Content-type': 'application/json'})
                      res.end(JSON.stringify(result))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 00:29:57 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  3. samples/sleep/README.md

        export SLEEP_POD=$(kubectl get pod -l app=sleep -o jsonpath={.items..metadata.name})
        kubectl exec -it $SLEEP_POD -c sleep -- curl http://ratings.default.svc.cluster.local:9080/ratings/1
        {"id":1,"ratings":{"Reviewer1":5,"Reviewer2":4}}
        ```
    
    You can also use the sleep service to test accessing services outside of the mesh.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 03 03:51:51 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  4. .github/workflows/create_issue.js

        console.log(pr_resp);
        throw `PR:{pr_number} needs to be valid and closed (merged)`;
      }
      const pr_title = pr_resp.data.title;
      // Assign to PR owner and reviewers
      const assignees = pr_resp.data.assignees.concat(pr_resp.data.requested_reviewers);
      let assignee_logins = assignees.map(x => x.login);
      assignee_logins.push(pr_resp.data.user.login);
      console.log(assignee_logins);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 18 23:04:59 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  5. .github/actions/people/app/main.py

                            break
            for reviewer in pr_reviewers:
                reviewers[reviewer] += 1
            if pr.state == "MERGED" and pr.author:
                contributors[pr.author.login] += 1
        return ContributorsResults(
            contributors=contributors,
            commenters=commenters,
            reviewers=reviewers,
            translation_reviewers=translation_reviewers,
            authors=authors,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. api/api-rules/README.md

    versions or groups without other changes, it is OK for your API reviewer to make an
    exception.
    
    If you're removing violations from the exception list, or if you have good
    reasons to add new violations to this list, please update the file using:
    
     - `UPDATE_API_KNOWN_VIOLATIONS=true ./hack/update-codegen.sh`
    
    It is up to API reviewers to review the list and make sure new APIs follow our API conventions.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:50:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. OWNERS_ALIASES

        - enj
        - mikedanese
      sig-cli-api-reviewers:
        - pwittrock
        - soltysh
      sig-cloud-provider-api-reviewers:
        - andrewsykim
        - cheftako
        - dims
      # sig-cluster-lifecycle-api-reviewers:
      #   -
      #   -
      sig-contributor-experience-approvers:
        - mrbobbytables
        - cblecker
        - nikhita
        - palnabarun
        - kaslin
        - MadhavJivrajani
        - Priyankasaggu11929
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/policy/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    # approval on api packages bubbles to api-approvers
    reviewers:
      - sig-apps-reviewers
      - sig-auth-policy-approvers
      - sig-auth-policy-reviewers
    labels:
      - sig/auth
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 15:02:07 UTC 2022
    - 231 bytes
    - Viewed (0)
  9. pkg/util/kernel/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    reviewers:
      - sig-network-reviewers
      - sig-node-reviewers
    approvers:
      - sig-network-approvers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 19:24:34 UTC 2023
    - 171 bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - api-approvers
    reviewers:
      - api-reviewers
      - sig-scheduling-api-reviewers
      - sig-scheduling-api-approvers
    labels:
      - kind/api-change
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 222 bytes
    - Viewed (0)
Back to top