Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for west (0.05 sec)

  1. hack/jenkins/test-dockerized.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    set -o xtrace
    
    # Runs the unit and integration tests, producing JUnit-style XML test
    # reports in ${WORKSPACE}/artifacts. This script is intended to be run from
    # kubekins-test container with a kubernetes repo mapped in. See
    # k8s.io/test-infra/scenarios/kubernetes_verify.py
    
    export PATH=${GOPATH}/bin:${PWD}/third_party/etcd:/usr/local/go/bin:${PATH}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. tools/go-ordered-test

        case $1 in
            -test.v=true) VERBOSE=true ;;
            -test.run=*) RUN="${1#-test.run=}" ;;
            -test.count=*) COUNT="${1#-test.count=}" ;;
        esac
        shift
    done
    
    RESULTS=/tmp/test-results"$(dirname ${binary})"
    mkdir -p "${RESULTS}"
    code=0
    
    for testname in $("${binary}" -test.list "${RUN}" | grep '^Test'); do
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 04 23:04:41 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. .teamcity/test-buckets.json

    				"subprojects":[
    					"composite-builds",
    					"declarative-dsl-core",
    					"problems",
    					"plugins-test-report-aggregation",
    					"resources-sftp",
    					"build-cache-http",
    					"testing-base",
    					"model-groovy",
    					"plugins-jvm-test-suite",
    					"plugins-version-catalog",
    					"plugins-jvm-test-fixtures"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package rest
    
    import (
    	"context"
    	"io"
    	"net/http"
    	"net/url"
    
    	metainternalversion "k8s.io/apimachinery/pkg/apis/meta/internalversion"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  6. .github/workflows/test-redistribute.yml

    name: Test Redistribute
    
    on:
      push:
        branches:
          - master
      pull_request:
        types:
          - opened
          - synchronize
    
    jobs:
      test-redistribute:
        runs-on: ubuntu-latest
        strategy:
          matrix:
            package:
              - fastapi
              - fastapi-slim
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 07 18:31:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

      - [beta] Introducing the beta version containerized node conformance test gcr.io/google_containers/node-test:0.2 for users to verify node setup. ([docs](http://kubernetes.io/docs/admin/node-conformance/)) ([kubernetes/features#84](https://github.com/kubernetes/enhancements/issues/84))
    - **Scheduling**
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // Typed (aka type-driven) tests repeat the same test for types in a
    // list.  You must know which types you want to test with when writing
    // typed tests. Here's how you do it:
    
    #if 0
    
    // First, define a fixture class template.  It should be parameterized
    // by a type.  Remember to derive it from testing::Test.
    template <typename T>
    class FooTest : public testing::Test {
     public:
      ...
      typedef std::list<T> List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    	apiRouter http.Handler, credentials auth.Credentials, t *testing.T)
    
    // Regular object test type.
    type objTestType func(obj ObjectLayer, instanceType string, t TestErrHandler)
    
    // Special test type for test with directories
    type objTestTypeWithDirs func(obj ObjectLayer, instanceType string, dirs []string, t TestErrHandler)
    
    // Special object test type for disk not found situations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. fess-crawler/src/test/resources/extractor/gz/test.tar.gz

    test.tar data/folder/file.html テスト data/file.txt テキスト...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 351 bytes
    - Viewed (0)
Back to top