Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for originalDst (0.17 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/api.go

    	ServiceAccount string `json:"serviceAccount"`
    }
    
    type InboundConnection struct {
    	Src         string `json:"src"`
    	OriginalDst string `json:"originalDst"`
    	ActualDst   string `json:"actualDst"`
    }
    
    type OutboundConnection struct {
    	Src         string `json:"src"`
    	OriginalDst string `json:"originalDst"`
    	ActualDst   string `json:"actualDst"`
    }
    
    type WorkloadConnection struct {
    	Src         string `json:"src"`
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 25 02:16:06 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/connections.go

    				fmt.Fprintf(w, "%v\tInbound\t%v\t%v\t%v\n", name, lookupIP(c.ActualDst), lookupIP(c.Src), c.OriginalDst)
    			}
    		}
    		if filter.Direction != "inbound" {
    			for _, c := range wl.Connections.Outbound {
    				fmt.Fprintf(w, "%v\tOutbound\t%v\t%v\t%v\n", name, lookupIP(c.Src), lookupIP(c.ActualDst), lookupIP(c.OriginalDst))
    			}
    		}
    	}
    	return w.Flush()
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 15:39:28 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/testdata/configdump.json

                    {
                      "name": "envoy.filters.listener.original_dst",
                      "typed_config": {
                        "@type": "type.googleapis.com/envoy.extensions.filters.listener.original_dst.v3.OriginalDst"
                      }
                    },
                    {
                      "name": "envoy.filters.listener.http_inspector",
                      "typed_config": {
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                    {
                      "name": "envoy.filters.listener.original_dst",
                      "typed_config": {
                        "@type": "type.googleapis.com/envoy.extensions.filters.listener.original_dst.v3.OriginalDst"
                      }
                    },
                    {
                      "name": "envoy.filters.listener.http_inspector",
                      "typed_config": {
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (1)
  5. istioctl/pkg/proxyconfig/testdata/config_dump.json

                    {
                      "name": "envoy.filters.listener.original_dst",
                      "typed_config": {
                        "@type": "type.googleapis.com/envoy.extensions.filters.listener.original_dst.v3.OriginalDst"
                      }
                    },
                    {
                      "name": "envoy.filters.listener.http_inspector",
                      "typed_config": {
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  6. istioctl/pkg/authz/testdata/configdump.yaml

           "listener_filters": [
            {
             "name": "envoy.filters.listener.original_dst",
             "typed_config": {
              "@type": "type.googleapis.com/envoy.extensions.filters.listener.original_dst.v3.OriginalDst"
             }
            },
            {
             "name": "envoy.filters.listener.tls_inspector",
             "typed_config": {
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jun 21 14:20:23 GMT 2023
    - 206.7K bytes
    - Viewed (2)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirResolveExtensionInfoProvider.kt

        @OptIn(KtModuleStructureInternals::class)
        override fun getResolveExtensionNavigationElements(originalPsi: KtElement): Collection<PsiElement> {
            val targetsProvider = originalPsi.containingFile?.virtualFile?.navigationTargetsProvider ?: return emptyList()
            return with(targetsProvider) { analysisSession.getNavigationTargets(originalPsi) }
        }
    }
    
    private class KtFirResolveExtensionScope(
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ResolveExtensionInfoProvider.kt

            return KtEmptyScope(token)
        }
    
        override fun isResolveExtensionFile(file: VirtualFile): Boolean = false
    
        override fun getResolveExtensionNavigationElements(originalPsi: KtElement): Collection<PsiElement> = emptyList()
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Jul 14 17:32:09 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

            final int[] spaceChars = getSpaceChars();
            try (final Reader reader = new StringReader(subContent)) {
                final String originalStr = TextUtil.normalizeText(reader).initialCapacity(content.length()).spaceChars(spaceChars).execute();
                return StringUtils.abbreviate(originalStr, maxWidth);
            } catch (final IOException e) {
                return StringUtil.EMPTY; // empty
            }
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableList.java

       * collected. If you want the original list to be eligible for garbage collection, you should
       * create and use a copy of the sub list (e.g., {@code
       * ImmutableList.copyOf(originalList.subList(...))}).
       */
      @Override
      public ImmutableList<E> subList(int fromIndex, int toIndex) {
        checkPositionIndexes(fromIndex, toIndex, size());
        int length = toIndex - fromIndex;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 27.1K bytes
    - Viewed (0)
Back to top