Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for Present (0.12 sec)

  1. istioctl/pkg/wait/wait.go

    				// because tickers won't run immediately
    				present, notpresent, sdcnum, err := poll(cliCtx, cmd, generations, targetResource, proxyFlag, opts)
    				printVerbosef(cmd, "Received poll result: %d/%d", present, present+notpresent)
    				if err != nil {
    					return err
    				} else if float32(present)/float32(present+notpresent) >= threshold {
    					_, _ = fmt.Fprintf(cmd.OutOrStdout(), "Resource %s present on %d out of %d configurations across %d sidecars\n",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/wasmplugin_test.go

    				desc:            "upstream is upgraded to 0.0.2, but 0.0.1 is already present and policy is default",
    				name:            "wasm-test-module",
    				tag:             tag,
    				policy:          "",
    				upstreamVersion: "0.0.2",
    				expectedVersion: "0.0.1",
    			})
    
    			// Intentionally, do not reset here to see the upgrade from 0.0.1.
    			applyAndTestWasmWithOCI(t, wasmTestConfigs{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. istioctl/pkg/injector/injector-list_test.go

    				},
    			},
    			expected: true,
    		},
    		{
    			name: "Only label present and enabled",
    			pod: &corev1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Annotations: nil,
    					Labels: map[string]string{
    						label.SidecarInject.Name: "true",
    					},
    				},
    			},
    			expected: false,
    		},
    		{
    			name: "Only label present and disabled",
    			pod: &corev1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 04:33:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/networking/v1/generated.proto

      // path is matched against the path of an incoming request. Currently it can
      // contain characters disallowed from the conventional "path" part of a URL
      // as defined by RFC 3986. Paths must begin with a '/' and must be present
      // when using PathType with value "Exact" or "Prefix".
      // +optional
      optional string path = 1;
    
      // pathType determines the interpretation of the path matching. PathType can
      // be one of the following values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. releasenotes/notes/delta-xds-default.yaml

          This should be an internal implementation detail, but because this controls the core configuration protocol in Istio,
          an upgrade notice is present in an abundance of caution.
    
          The expected impacts of this change is improved performance of configuration distribution.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 17:43:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. releasenotes/notes/49364.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 49364
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 01:20:21 UTC 2024
    - 224 bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conditions.go

    type RouteParentResult struct {
    	// OriginalReference contains the original reference
    	OriginalReference k8s.ParentReference
    	// DeniedReason, if present, indicates why the reference was not valid
    	DeniedReason *ParentError
    	// RouteError, if present, indicates why the reference was not valid
    	RouteError *ConfigError
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    	for _, r := range rules {
    		chainTable := fmt.Sprintf("%s:%s", r.chain, r.table)
    		// Create new chain if key: `chainTable` isn't present in map
    		if !chainTableLookupSet.Contains(chainTable) {
    			// Ignore chain creation for built-in chains for iptables
    			if _, present := constants.BuiltInChainsMap[r.chain]; !present {
    				cmd := []string{"-t", r.table, "-N", r.chain}
    				output = append(output, cmd)
    				chainTableLookupSet.Insert(chainTable)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // `verbs` is a list of matching verbs and may not be empty.
      // "*" matches all verbs and, if present, must be the only entry.
      // +listType=set
      // Required.
      repeated string verbs = 1;
    
      // `apiGroups` is a list of matching API groups and may not be empty.
      // "*" matches all API groups and, if present, must be the only entry.
      // +listType=set
      // Required.
      repeated string apiGroups = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/dependencies/implementation.go

    	DetectedSaveBinary    string
    	DetectedRestoreBinary string
    	// the actual version
    	Version *utilversion.Version
    	// true if legacy mode, false if nf_tables
    	Legacy bool
    	// true if we detected that existing rules are present for this variant (legacy, nft, v6)
    	ExistingRules bool
    }
    
    func (v IptablesVersion) CmdToString(cmd constants.IptablesCmd) string {
    	switch cmd {
    	case constants.IPTables:
    		return v.DetectedBinary
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top