Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for test32 (0.12 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    						Expression: "this.expression == unit.test",
    						Message:    "test2",
    					},
    				},
    			},
    			policyDecision: []PolicyDecision{
    				{
    					Action:  ActionDeny,
    					Reason:  metav1.StatusReasonForbidden,
    					Message: "test1",
    				},
    				{
    					Action:  ActionDeny,
    					Reason:  metav1.StatusReasonForbidden,
    					Message: "test2",
    				},
    			},
    			failPolicy: &fail,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_builder_test.go

    spec:
      mtls:
        mode: DISABLE
    `
    
    func TestInboundListenerFilters(t *testing.T) {
    	services := []*model.Service{
    		buildServiceWithPort("test1.com", 80, protocol.HTTP, tnow),
    		buildServiceWithPort("test2.com", 81, protocol.Unsupported, tnow),
    		buildServiceWithPort("test3.com", 82, protocol.TCP, tnow),
    	}
    	instances := make([]*model.ServiceInstance, 0, len(services))
    	for _, s := range services {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. cluster/gce/config-test.sh

    ENABLE_VOLUME_SNAPSHOTS=${ENABLE_VOLUME_SNAPSHOTS:-true}
    
    # Optional: Enable legacy ABAC policy that makes all service accounts superusers.
    # Disabling this by default in tests ensures default RBAC policies are sufficient from 1.6+
    # Upgrade test jobs that go from a version < 1.6 to a version >= 1.6 should override this to be true.
    ENABLE_LEGACY_ABAC=${ENABLE_LEGACY_ABAC:-false} # true, false
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. 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)
  6. .teamcity/performance-tests-ci.json

          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.android.RealLifeAndroidBuildPerformanceTest.calculate task graph with test finalizer",
        "groups" : [ {
          "testProject" : "largeAndroidBuild",
          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        } ]
      }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  7. hack/make-rules/test-e2e-node.sh

    focus=${FOCUS:-""}
    skip=${SKIP-"\[Flaky\]|\[Slow\]|\[Serial\]"}
    # The number of tests that can run in parallel depends on what tests
    # are running and on the size of the node. Too many, and tests will
    # fail due to resource contention. 8 is a reasonable default for a
    # e2-standard-2 node.
    # Currently, parallelism only affects when REMOTE=true. For local test,
    # ginkgo default parallelism (cores - 1) is used.
    parallelism=${PARALLELISM:-8}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/tests/go122-annotations-stress.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  9. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "createLotsOfTasks",
        "linux" : 215
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.VerboseTestOutputPerformanceTest.cleanTest test with verbose test output",
      "durations" : [ {
        "testProject" : "withVerboseJUnit",
        "linux" : 211
      }, {
        "testProject" : "withVerboseTestNG",
        "linux" : 200
      } ]
    }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  10. tests/test_tutorial/test_body/test_tutorial001.py

                    }
                ]
            }
        )
    
    
    def test_other_exceptions(client: TestClient):
        with patch("json.loads", side_effect=Exception):
            response = client.post("/items/", json={"test": "test2"})
            assert response.status_code == 400, response.text
    
    
    def test_openapi_schema(client: TestClient):
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top