Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 184 for Present (0.12 sec)

  1. common-protos/k8s.io/api/autoscaling/v2/generated.proto

    // These Rules are applied after calculating DesiredReplicas from metrics for the HPA.
    // They can limit the scaling velocity by specifying scaling policies.
    // They can prevent flapping by specifying the stabilization window, so that the
    // number of replicas is not set instantly, instead, the safest value from the stabilization
    // window is chosen.
    message HPAScalingRules {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/sdsservice.go

    			// However, here it makes sense, because we are generally streaming a single resource,
    			// so sending an error will not cause a single failure to prevent the entire multiplex stream
    			// of resources, and failures here are generally due to temporary networking issues to the CA
    			// rather than a result of configuration issues, which trigger updates in Istiod when resolved.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. pilot/pkg/status/distribution/reporter.go

    	}
    }
    
    func (r *Reporter) readFromEventQueue(stop <-chan struct{}) {
    	for {
    		select {
    		case ev := <-r.distributionEventQueue:
    			// TODO might need to batch this to prevent lock contention
    			r.processEvent(ev.conID, ev.distributionType, ev.nonce)
    		case <-stop:
    			return
    		}
    	}
    }
    
    func (r *Reporter) processEvent(conID string, distributionType xds.EventType, nonce string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

             "xffNumTrustedHops": "4"
     }
    }`),
    			},
    		},
    		// Ensure we can mix v3 patches with v2 internal
    		// Note that alwaysSetRequestIdInResponse is only present in v3 protos. It will be silently ignored
    		// as we are working in v2 protos internally
    		{
    			ApplyTo: networking.EnvoyFilter_NETWORK_FILTER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  5. pkg/config/analysis/msg/messages.gen.go

    	// Description: Proxy may prevent tcp named ports and unmatched traffic for ports serving TCP protocol from being forwarded correctly for ExternalName services.
    	ExternalNameServiceTypeInvalidPortName = diag.NewMessageType(diag.Warning, "IST0150", "Port name for ExternalName service is invalid. Proxy may prevent tcp named ports and unmatched traffic for ports serving TCP protocol from being forwarded correctly")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			t.Fatal(err)
    		}
    		retry.UntilSuccessOrFail(t, func() error {
    			controller.pods.RLock()
    			defer controller.pods.RUnlock()
    			if _, ok := controller.pods.podsByIP[ip]; ok {
    				return fmt.Errorf("pod still present")
    			}
    			return nil
    		}, retry.Timeout(time.Second))
    	}
    	addService := func(name string) {
    		// create service
    		createServiceWait(controller, name, "nsA", nil, nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. licenses/github.com/hashicorp/go-version/LICENSE

       and such litigation shall be governed by laws of that jurisdiction, without
       reference to its conflict-of-law provisions. Nothing in this Section shall
       prevent a party’s ability to bring cross-claims or counter-claims.
    
    9. Miscellaneous
    
       This License represents the complete agreement concerning the subject matter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion_test.go

    	}
    	c, _, err := crd.ParseInputs(data)
    	if err != nil {
    		t.Fatalf("failed to parse CRD: %v", err)
    	}
    	return insertDefaults(c)
    }
    
    // insertDefaults sets default values that would be present when reading from Kubernetes but not from
    // files
    func insertDefaults(cfgs []config.Config) []config.Config {
    	res := make([]config.Config, 0, len(cfgs))
    	for _, c := range cfgs {
    		switch c.GroupVersionKind {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  9. pkg/wasm/cache_test.go

    			},
    			wantFileName:    ociWasmFile,
    			wantVisitServer: false,
    		},
    		{
    			name: "pull due to if-not-present policy when cache hit",
    			initialCachedModules: map[moduleKey]cacheEntry{
    				{name: moduleNameFromURL(ociURLWithTag), checksum: dockerImageDigest}: {modulePath: ociWasmFile},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    // Valid: "foo", "%HOSTNAME%", "100%%", "prefix %HOSTNAME% suffix"
    // Invalid: "abc%123", "%START_TIME%%"
    // We don't try to check that what is inside the %% is one of Envoy recognized values, we just prevent invalid config.
    // See: https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_conn_man/headers.html#custom-request-response-headers
    func ValidateHTTPHeaderValue(value string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top