Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,040 for Review (0.13 sec)

  1. test/fixedbugs/bug491.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test order of calls to builtin functions.
    // Discovered during CL 144530045 review.
    
    package main
    
    func main() {
    	// append
    	{
    		x := make([]int, 0)
    		f := func() int { x = make([]int, 2); return 2 }
    		a, b, c := append(x, 1), f(), append(x, 1)
    		if len(a) != 1 || len(c) != 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/genericiooptions/io_options.go

    package genericiooptions
    
    import (
    	"bytes"
    	"io"
    )
    
    // IOStreams provides the standard names for iostreams.  This is useful for embedding and for unit testing.
    // Inconsistent and different names make it hard to read and review code
    type IOStreams struct {
    	// In think, os.Stdin
    	In io.Reader
    	// Out think, os.Stdout
    	Out io.Writer
    	// ErrOut think, os.Stderr
    	ErrOut io.Writer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    [[partr1_gradle_init]]
    = Part 1: Initializing the Project
    
    Learn the basics of authoring Gradle by first creating a Java app using Gradle init.
    
    ****
    **In this section, you will:**
    
    - Initialize a Java project
    - Review the directory layout
    - Run a Java application
    - Produce a Build Scan
    - Bundle the application in an archive
    ****
    
    [[part1_begin]]
    == Step 0. Before you Begin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskContainerInternal.java

        /**
         * Creates an instance of the given task type without invoking its constructors. This is used to recreate a task instance from the configuration cache.
         *
         * TODO:configuration-cache - review this
         */
        <T extends Task> T createWithoutConstructor(String name, Class<T> type, long uniqueId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 08 09:35:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. pkg/webhooks/validation/server/server_test.go

    			if got.Allowed != c.allowed {
    				t.Fatalf("got %v want %v", got.Allowed, c.allowed)
    			}
    		})
    	}
    }
    
    func makeTestReview(t *testing.T, valid bool, apiVersion string) []byte {
    	t.Helper()
    	review := admissionv1.AdmissionReview{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "AdmissionReview",
    			APIVersion: fmt.Sprintf("admission.k8s.io/%s", apiVersion),
    		},
    		Request: &admissionv1.AdmissionRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. hack/verify-golangci-lint.sh

      run >"$githubactions" 2>&1
    fi
    
    # print a message based on the result
    if [ "$res" -eq 0 ]; then
      echo 'Congratulations! All files are passing lint :-)'
    else
      {
        echo
        echo "Please review the above warnings. You can test via \"${invocation[*]}\""
        echo 'If the above warnings do not make sense, you can exempt this warning with a comment'
        echo ' (if your reviewer is okay with it).'
        if [ "$strict" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. hack/verify-testing-import.sh

    # This script checks whether the testing.init symbol is present in any
    # of the release binaries and fails if it finds one. This check is needed
    # to avoid including test libraries in production binaries as they often lack
    # rigorous review and sufficient testing.
    # Usage: `hack/verify-test-code.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    cd "${KUBE_ROOT}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 11:56:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. guava-testlib/test/com/google/common/collect/testing/OpenJdk6MapTests.java

        /*
         * The entrySet() of ConcurrentHashMap, unlike that of other Map
         * implementations, supports add() under JDK8. This seems problematic, but I
         * didn't see that discussed in the review, which included many other
         * changes: http://goo.gl/okTTdr
         *
         * TODO(cpovirk): decide what the best long-term action here is: force users
         * to suppress (as we do now), stop testing entrySet().add() at all, make
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKey.kt

                startParameter.includedBuilds.map {
                    relativePathOf(it, startParameter.rootDirectory)
                }
            )
    
            buildActionRequirements.appendKeyTo(this)
    
            // TODO:bamboo review with Adam
    //        require(buildActionRequirements.isRunsTasks || startParameter.requestedTaskNames.isEmpty())
            if (buildActionRequirements.isRunsTasks) {
                appendRequestedTasks()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/imagepolicy/v1alpha1/generated.proto

      // +optional
      map<string, string> annotations = 2;
    
      // Namespace is the namespace the pod is being created in.
      // +optional
      optional string namespace = 3;
    }
    
    // ImageReviewStatus is the result of the review for the pod creation request.
    message ImageReviewStatus {
      // Allowed indicates that all images were allowed to be run.
      optional bool allowed = 1;
    
      // Reason should be empty unless Allowed is false in which case it
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top