Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 466 for tent (0.04 sec)

  1. hack/lib/test.sh

    red=$(tput setaf 1)
    green=$(tput setaf 2)
    readonly reset bold black red green
    
    kube::test::clear_all() {
      if kube::test::if_supports_resource "rc" ; then
        # shellcheck disable=SC2154
        # Disabling because "kube_flags" is set in a parent script
        kubectl delete "${kube_flags[@]}" rc --all --grace-period=0 --force
      fi
      if kube::test::if_supports_resource "pods" ; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 16:46:34 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. hack/make-rules/test.sh

            kube::test::usage
            exit 1
          fi
          ;;
        i)
          kube::log::usage "'$0': use GOFLAGS='-count <num-iterations>'"
          kube::test::usage
          exit 1
          ;;
        :)
          kube::log::usage "Option -${OPTARG} <value>"
          kube::test::usage
          exit 1
          ;;
        ?)
          kube::test::usage
          exit 1
          ;;
      esac
    done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

     *
     *   // set JVM arguments for the test JVM(s)
     *   jvmArgs '-XX:MaxPermSize=256m'
     *
     *   // listen to events in the test execution lifecycle
     *   beforeTest { descriptor -&gt;
     *      logger.lifecycle("Running test: " + descriptor)
     *   }
     *
     *   // fail the 'test' task on the first test failure
     *   failFast = true
     *
     *   // skip an actual test execution
     *   dryRun = true
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  4. pkg/test/framework/test.go

    	// RequiresSingleNetwork ensures that clusters are in the same network
    	//
    	// Deprecated: Tests should not make assumptions regarding number of networks.
    	RequiresSingleNetwork() Test
    	// TopLevel marks a test as a "top-level test" meaning a container test that has many subtests.
    	// Resources created at this level will be in-scope for dumping when any descendant test fails.
    	TopLevel() Test
    	// Run the test, supplied as a lambda.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/test.go

    		s    string
    		a, b *C.char
    	}{
    		{"text", &C.text[0], C.ctext()},
    		{"data", &C.data[0], C.cdata()},
    	}
    	for _, test := range tests {
    		if test.a != test.b {
    			t.Errorf("%s: pointer mismatch: %v != %v", test.s, test.a, test.b)
    		}
    		if got := C.GoString(test.a); got != test.s {
    			t.Errorf("%s: points at %#v, want %#v", test.s, got, test.s)
    		}
    	}
    }
    
    // issues 8368 and 8441
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/test.go

    //   - pmain, the package main corresponding to the test binary (running tests in ptest and pxtest).
    //   - ptest, the package p compiled with added "package p" test files.
    //   - pxtest, the result of compiling any "package p_test" (external) test files.
    //
    // If the package has no "package p_test" test files, pxtest will be nil.
    // If the non-test compilation of package p can be reused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. cluster/gce/config-test.sh

    export NODE_EXTRA_METADATA=${KUBE_NODE_EXTRA_METADATA:-${KUBE_EXTRA_METADATA:-}}
    
    NETWORK=${KUBE_GCE_NETWORK:-e2e-test-${USER}}
    if [[ "${CREATE_CUSTOM_NETWORK}" = true ]]; then
      SUBNETWORK=${SUBNETWORK:-${NETWORK}-custom-subnet}
    fi
    INSTANCE_PREFIX=${KUBE_GCE_INSTANCE_PREFIX:-e2e-test-${USER}}
    CLUSTER_NAME=${CLUSTER_NAME:-${INSTANCE_PREFIX}}
    MASTER_NAME="${INSTANCE_PREFIX}-master"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. operator/cmd/mesh/test-util_test.go

    }
    
    func mustSelect(t test.Failer, selector map[string]string, labels map[string]string) {
    	t.Helper()
    	kselector := labels2.Set(selector).AsSelectorPreValidated()
    	if !kselector.Matches(labels2.Set(labels)) {
    		t.Fatalf("%v does not select %v", selector, labels)
    	}
    }
    
    func mustNotSelect(t test.Failer, selector map[string]string, labels map[string]string) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. cluster/gce/windows/smoke-test.sh

    #     fails.
    #   - Move copy-pasted code into reusable functions.
    #   - Continue running all checks after one fails.
    #   - Test service connectivity by running a test pod with an http server and
    #     exposing it as a service (rather than curl-ing from existing system
    #     services that don't serve http requests).
    #   - Add test retries for transient errors, such as:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. hack/make-rules/test-e2e-node.sh

        metadata="user-data<${KUBE_ROOT}/test/e2e_node/jenkins/gci-init.yaml,gci-update-strategy=update_disabled"
      fi
      instance_prefix=${INSTANCE_PREFIX:-"test"}
      cleanup=${CLEANUP:-"true"}
      delete_instances=${DELETE_INSTANCES:-"false"}
      preemptible_instances=${PREEMPTIBLE_INSTANCES:-"false"}
      test_suite=${TEST_SUITE:-"default"}
      if [[ -n "${TIMEOUT:-}" ]] ; then
        timeout_arg="--test-timeout=${TIMEOUT}"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top