Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 248 for broken2 (0.28 sec)

  1. manifests/charts/istiod-remote/templates/istiod-injector-configmap.yaml

             which will fail with "Pod injection failed: template: inject:1: function "Istio_1_9_Required_Template_And_Version_Mismatched" not defined".
             This should make it obvious that their installation is broken.
         */}}
        template: {{ `{{ Template_Version_And_Istio_Version_Mismatched_Check_Installation }}` | quote }}
        templates:
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "sidecar") }}
          sidecar: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

             which will fail with "Pod injection failed: template: inject:1: function "Istio_1_9_Required_Template_And_Version_Mismatched" not defined".
             This should make it obvious that their installation is broken.
         */}}
        template: {{ `{{ Template_Version_And_Istio_Version_Mismatched_Check_Installation }}` | quote }}
        templates:
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "sidecar") }}
          sidecar: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pkg/config/kube/conversion.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	SMTP    = 25
    	DNS     = 53
    	MySQL   = 3306
    	MongoDB = 27017
    )
    
    // Ports be skipped for protocol sniffing. Applications bound to these ports will be broken if
    // protocol sniffing is enabled.
    var wellKnownPorts = sets.New[int32](
    	SMTP,
    	DNS,
    	MySQL,
    	MongoDB,
    )
    
    var (
    	grpcWeb    = string(protocol.GRPCWeb)
    	grpcWebLen = len(grpcWeb)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

        def "recovers from failed download"() {
            given:
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
            prepareWrapper(getDefaultBaseUrl())
            server.expect(server.get("/$TEST_DISTRIBUTION_URL").broken())
    
            when:
            wrapperExecuter.withStackTraceChecksDisabled()
            def failure = wrapperExecuter.runWithFailure()
    
            then:
            failure.error.contains('Server returned HTTP response code: 500')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. plugin/pkg/admission/certificates/ctbattest/admission_test.go

    			},
    			allowed: false,
    		},
    		{
    			description:                      "should always allow no-op update",
    			clusterTrustBundleFeatureEnabled: true,
    			authzErr:                         errors.New("broken"),
    			attributes: &testAttributes{
    				resource: certificatesapi.Resource("clustertrustbundles"),
    				oldObj: &certificatesapi.ClusterTrustBundle{
    					Spec: certificatesapi.ClusterTrustBundleSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_body/test_tutorial001.py

            }
        )
    
    
    def test_post_broken_body(client: TestClient):
        response = client.post(
            "/items/",
            headers={"content-type": "application/json"},
            content="{some broken json}",
        )
        assert response.status_code == 422, response.text
        assert response.json() == IsDict(
            {
                "detail": [
                    {
                        "type": "json_invalid",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_body/test_tutorial001_py310.py

            }
        )
    
    
    @needs_py310
    def test_post_broken_body(client: TestClient):
        response = client.post(
            "/items/",
            headers={"content-type": "application/json"},
            content="{some broken json}",
        )
        assert response.status_code == 422, response.text
        assert response.json() == IsDict(
            {
                "detail": [
                    {
                        "type": "json_invalid",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/internal/trace/reader.go

    			return e, nil
    		}
    	}
    	// Try to advance the head of the frontier, which should have the minimum timestamp.
    	// This should be by far the most common case
    	if len(r.frontier) == 0 {
    		return Event{}, fmt.Errorf("broken trace: frontier is empty:\n[gen=%d]\n\n%s\n%s\n", r.gen.gen, dumpFrontier(r.frontier), dumpOrdering(&r.order))
    	}
    	if ok, err := tryAdvance(0); err != nil {
    		return Event{}, err
    	} else if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. tests/integration/security/testdata/authz/jwt.yaml.tmpl

    ---
    
    # The following policy enables authorization on workload:
    # - Allow request principal ******@****.***/sub-1 to access path /token1
    # - Allow request in group-2 to access path /token2
    # - Allow request with any token to access path /tokenAny
    # - Allow request with permission claim of "write" or "append" to access path /permission
    # - Allow request with valid JWT token to access path /jwt1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. pkg/scheduler/metrics/metrics.go

    		&metrics.GaugeOpts{
    			Subsystem:      SchedulerSubsystem,
    			Name:           "unschedulable_pods",
    			Help:           "The number of unschedulable pods broken down by plugin name. A pod will increment the gauge for all plugins that caused it to not schedule and so this metric have meaning only when broken down by plugin.",
    			StabilityLevel: metrics.ALPHA,
    		}, []string{"plugin", "profile"})
    
    	PluginEvaluationTotal = metrics.NewCounterVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top