Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for protMap (0.1 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            propMap.remove(APP_VALUES);
        }
    
        default String getAppValue() {
            return getSystemProperty(Constants.APP_VALUE_PROPERTY, StringUtil.EMPTY);
        }
    
        default void setDefaultLabelValue(final String value) {
            setSystemProperty(Constants.DEFAULT_LABEL_VALUE_PROPERTY, value);
            propMap.remove(DEFAULT_LABEL_VALUES);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

        rm -rf "${cni_plugin_tarball}" &&
        sudo find /opt/cni/bin -type f -not \( \
            -iname host-local \
            -o -iname bridge \
            -o -iname portmap \
            -o -iname loopback \
            \) \
            -delete
    
      # containerd 1.4.12 installed by docker in kubekins supports CNI version 0.4.0
      echo "Configuring cni"
      sudo mkdir -p "$CNI_CONFIG_DIR"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    	if features.EnableExternalNameAlias {
    		resolveServiceAliases(allServices, configsUpdate)
    	}
    
    	for _, s := range allServices {
    		portMap := map[string]int{}
    		ports := sets.New[int]()
    		for _, port := range s.Ports {
    			portMap[port.Name] = port.Port
    			ports.Insert(port.Port)
    		}
    
    		svcKey := s.Key()
    		if _, ok := ps.ServiceIndex.instancesByPort[svcKey]; !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			EndpointPort: 8081, // should be ignored since it doesn't define PortMap
    		},
    	}
    
    	wiRatings2 := &model.WorkloadInstance{
    		Name:      "ratings-2",
    		Namespace: "bookinfo-ratings",
    		Endpoint: &model.IstioEndpoint{
    			Labels:  labels.Instance{"app": "ratings"},
    			Address: "2.2.2.2",
    		},
    		PortMap: map[string]uint32{
    			"http": 8082, // should be used
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    		if pc.alt == nil {
    			if err != errCallerOwnsConn {
    				pc.conn.Close()
    			}
    			close(pc.closech)
    		}
    	}
    	pc.mutateHeaderFunc = nil
    }
    
    var portMap = map[string]string{
    	"http":    "80",
    	"https":   "443",
    	"socks5":  "1080",
    	"socks5h": "1080",
    }
    
    func idnaASCIIFromURL(url *url.URL) string {
    	addr := url.Hostname()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top