Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for local_ip (0.2 sec)

  1. istioctl/pkg/proxyconfig/testdata/config_dump.json

                              {
                                "object_key": "envoy.filters.listener.original_dst.local_ip",
                                "format_string": {
                                  "text_format_source": {
                                    "inline_string": "%FILTER_STATE(envoy.filters.listener.original_dst.local_ip:PLAIN)%"
                                  }
                                },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  2. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                  "on_request_headers": [
                                    {
                                      "object_key": "envoy.filters.listener.original_dst.local_ip",
                                      "format_string": {
                                        "text_format_source": {
                                          "inline_string": "%REQ(:AUTHORITY)%"
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/testdata/configdump.json

                                  "on_request_headers": [
                                    {
                                      "object_key": "envoy.filters.listener.original_dst.local_ip",
                                      "format_string": {
                                        "text_format_source": {
                                          "inline_string": "%REQ(:AUTHORITY)%"
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  4. internal/http/listener_test.go

    		case *net.IPNet:
    			ip = v.IP
    		case *net.IPAddr:
    			ip = v.IP
    		}
    
    		if ip.To4() != nil {
    			localIP4.Add(ip.String())
    		}
    	}
    
    	// Filter ipList by IPs those do not start with '127.'.
    	nonLoopBackIPs := localIP4.FuncMatch(func(ip string, matchString string) bool {
    		return !strings.HasPrefix(ip, "127.")
    	}, "")
    	if len(nonLoopBackIPs) == 0 {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Jun 12 16:09:28 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/config/BaseConfiguration.java

        static {
            DEFAULT_BATCH_LIMITS.put("TreeConnectAndX.QueryInformation", 0);
        }
    
        private final Map<String, Integer> batchLimits = new HashMap<>();
    
        protected int localPid = -1;
        protected TimeZone localTimeZone;
        protected SecureRandom random;
        protected boolean useBatching = false;
        protected boolean useUnicode = true;
        protected boolean forceUnicode = false;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  6. cmd/net.go

    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/logger"
    	xnet "github.com/minio/pkg/v2/net"
    )
    
    // IPv4 addresses of local host.
    var localIP4 = mustGetLocalIP4()
    
    // mustSplitHostPort is a wrapper to net.SplitHostPort() where error is assumed to be a fatal.
    func mustSplitHostPort(hostPort string) (host, port string) {
    	xh, err := xnet.ParseHost(hostPort)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Mar 26 15:00:38 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java

            return null;
        }
    
        @Override
        public ConditionBean addOrderBy_PK_Desc() {
            return null;
        }
    
        @Override
        public HpColumnSpHandler localSp() {
            return null;
        }
    
        @Override
        public void enableInnerJoinAutoDetect() {
            // do nothing
        }
    
        @Override
        public void disableInnerJoinAutoDetect() {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

            return null;
        }
    
        @Override
        public ConditionBean addOrderBy_PK_Desc() {
            return null;
        }
    
        @Override
        public HpColumnSpHandler localSp() {
            return null;
        }
    
        @Override
        public void enableInnerJoinAutoDetect() {
            // do nothing
        }
    
        @Override
        public void disableInnerJoinAutoDetect() {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java

            return null;
        }
    
        @Override
        public ConditionBean addOrderBy_PK_Desc() {
            return null;
        }
    
        @Override
        public HpColumnSpHandler localSp() {
            return null;
        }
    
        @Override
        public void enableInnerJoinAutoDetect() {
            // do nothing
        }
    
        @Override
        public void disableInnerJoinAutoDetect() {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  10. cmd/endpoint_test.go

    	tempGlobalMinioPort := globalMinioPort
    	defer func() {
    		globalMinioPort = tempGlobalMinioPort
    	}()
    	globalMinioPort = "9000"
    
    	// Filter ipList by IPs those do not start with '127.'.
    	nonLoopBackIPs := localIP4.FuncMatch(func(ip string, matchString string) bool {
    		return !net.ParseIP(ip).IsLoopback()
    	}, "")
    	if len(nonLoopBackIPs) == 0 {
    		t.Fatalf("No non-loop back IP address found for this host")
    	}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Jan 13 07:53:03 GMT 2024
    - 18.9K bytes
    - Viewed (1)
Back to top