Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 497 for Review (0.18 sec)

  1. samples/bookinfo/src/productpage/templates/productpage.html

          </div>
      </div>
    </div>
    
    <!-- Book reviews section -->
    <div class="bg-blue-600/5 py-12 mx-auto" >
      <div class="container mx-auto px-4 sm:px-6 lg:px-8>
        <div class="max-w-2xl">
          {% if reviewsStatus == 200: %}
          <h4 class="text-3xl font-semibold">Book Reviews</h4>
          <div class="flex flex-col md:flex-row">
            {% for review in reviews.reviews %}
            <section class="px-6 py-12 sm:py-8 lg:px-8">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    			return
    		}
    
    		var review authorizationv1beta1.SubjectAccessReview
    		bodyData, _ := ioutil.ReadAll(r.Body)
    		if err := json.Unmarshal(bodyData, &review); err != nil {
    			http.Error(w, fmt.Sprintf("failed to decode body: %v", err), http.StatusBadRequest)
    			return
    		}
    
    		// ensure we received the serialized review as expected
    		if review.APIVersion != "authorization.k8s.io/v1beta1" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. architecture/standards/0001-use-architectural-decision-records.md

    * They are rarely updated after creation and initial review, and then become hard to follow, especially after important decisions are made
    * They are not synced with the code to reflect the eventual solution that is committed
    * Google Docs is not a "code-oriented" tool, like asciidoc can be
    * Review in Google Docs is not as simple as a PR code review in GitHub
    
    ## Decision
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 02 21:54:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. .github/workflows/depsreview.yaml

    name: 'Dependency Review'
    on: [pull_request]
    
    permissions:
      contents: read
    
    jobs:
      dependency-review:
        runs-on: ubuntu-latest
        steps:
          - name: 'Checkout Repository'
            uses: actions/checkout@v4
          - name: 'Dependency Review'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 23:44:49 UTC 2024
    - 296 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    			return
    		}
    
    		var review authorizationv1.SubjectAccessReview
    		bodyData, _ := ioutil.ReadAll(r.Body)
    		if err := json.Unmarshal(bodyData, &review); err != nil {
    			http.Error(w, fmt.Sprintf("failed to decode body: %v", err), http.StatusBadRequest)
    			return
    		}
    
    		// ensure we received the serialized review as expected
    		if review.APIVersion != "authorization.k8s.io/v1" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. .github/actions/people/app/main.py

                commenters[author_name] += 1
            for review in pr.reviews.nodes:
                if review.author:
                    authors[review.author.login] = review.author
                    pr_reviewers.add(review.author.login)
                    for label in pr.labels.nodes:
                        if label.name == "lang-all":
                            translation_reviewers[review.author.login] += 1
                            break
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. .github/workflows/label-approved.yml

          with:
            token: ${{ secrets.FASTAPI_LABEL_APPROVED }}
            config: >
              {
                "approved-1":
                  {
                    "number": 1,
                    "await_label": "awaiting-review"
                  }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 18:43:10 UTC 2024
    - 610 bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/resources/archunit.properties

    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    # Changes the line number in all sources to 0, so line numbers are ignored and changes are easier to review
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 794 bytes
    - Viewed (0)
  9. docs/en/docs/help-fastapi.md

    * Suggest a new **feature**.
    
    **Note**: if you do it, then I'm going to ask you to also help others. 😉
    
    ## Review Pull Requests
    
    You can help me review pull requests from others.
    
    Again, please try your best to be kind. 🤗
    
    ---
    
    Here's what to keep in mind and how to review a pull request:
    
    ### Understand the problem
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. docs/en/docs/contributing.md

    * Review those pull requests, requesting changes or approving them. For the languages I don't speak, I'll wait for several others to review the translation before merging.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top