Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for clientTop (0.13 sec)

  1. src/main/java/org/codelibs/fess/es/log/bsentity/BsSearchLog.java

            this.accessType = value;
        }
    
        public String getClientIp() {
            checkSpecifiedProperty("clientIp");
            return convertEmptyToNull(clientIp);
        }
    
        public void setClientIp(String value) {
            registerModifiedProperty("clientIp");
            this.clientIp = value;
        }
    
        public Long getHitCount() {
            checkSpecifiedProperty("hitCount");
            return hitCount;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. security/pkg/k8s/configutil_test.go

    			}
    			kc := kube.NewFakeClient(objs...)
    			fake := kc.Kube().(*fake.Clientset)
    			configmaps := kclient.New[*v1.ConfigMap](kc)
    			if tc.clientMod != nil {
    				tc.clientMod(fake)
    			}
    			kc.RunAndWait(test.NewStop(t))
    			fake.ClearActions()
    			err := InsertDataToConfigMap(configmaps, tc.meta, tc.caBundle)
    			if err != nil && err.Error() != tc.expectedErr {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/net/splice_linux_test.go

    	size := tc.totalSize
    	if tc.limitReadSize > 0 {
    		if tc.limitReadSize < size {
    			size = tc.limitReadSize
    		}
    	}
    
    	clientUp, serverUp := spawnTestSocketPair(t, tc.upNet)
    	defer serverUp.Close()
    	cleanup, err := startTestSocketPeer(t, clientUp, "w", tc.chunkSize, size)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer cleanup(t)
    	clientDown, serverDown := spawnTestSocketPair(t, tc.downNet)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/SearchLogDbm.java

                false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnClientIp = cci("clientIp", "clientIp", null, null, String.class, "clientIp", null, false, false,
                false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. src/net/http/httputil/reverseproxy.go

    //		r.SetXForwarded()
    //	}
    func (r *ProxyRequest) SetXForwarded() {
    	clientIP, _, err := net.SplitHostPort(r.In.RemoteAddr)
    	if err == nil {
    		prior := r.Out.Header["X-Forwarded-For"]
    		if len(prior) > 0 {
    			clientIP = strings.Join(prior, ", ") + ", " + clientIP
    		}
    		r.Out.Header.Set("X-Forwarded-For", clientIP)
    	} else {
    		r.Out.Header.Del("X-Forwarded-For")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. pkg/webhooks/validation/controller/controller_test.go

    	})
    	return gatewayError
    }
    
    func TestGreenfield(t *testing.T) {
    	controllerStop := make(chan struct{})
    	clientStop := test.NewStop(t)
    	kc := kube.NewFakeClient()
    	gatewayError := setupGatewayError(kc)
    	c := unstartedTestController(kc)
    	kc.RunAndWait(clientStop)
    	go c.Run(controllerStop)
    	webhooks := clienttest.Wrap(t, c.webhooks)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 03:21:04 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	"sync/atomic"
    
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/sumdb/note"
    	"golang.org/x/mod/sumdb/tlog"
    )
    
    // A ClientOps provides the external operations
    // (file caching, HTTP fetches, and so on) needed by the [Client].
    // The methods must be safe for concurrent use by multiple goroutines.
    type ClientOps interface {
    	// ReadRemote reads and returns the content served at the given path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. pkg/proxy/serviceport.go

    	var stickyMaxAgeSeconds int
    	if service.Spec.SessionAffinity == v1.ServiceAffinityClientIP {
    		// Kube-apiserver side guarantees SessionAffinityConfig won't be nil when session affinity type is ClientIP
    		stickyMaxAgeSeconds = int(*service.Spec.SessionAffinityConfig.ClientIP.TimeoutSeconds)
    	}
    
    	clusterIP := proxyutil.GetClusterIPByFamily(ipFamily, service)
    	info := &BaseServicePortInfo{
    		clusterIP:           netutils.ParseIPSloppy(clusterIP),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/defaults.go

    		if obj.Spec.SessionAffinityConfig == nil || obj.Spec.SessionAffinityConfig.ClientIP == nil || obj.Spec.SessionAffinityConfig.ClientIP.TimeoutSeconds == nil {
    			timeoutSeconds := v1.DefaultClientIPServiceAffinitySeconds
    			obj.Spec.SessionAffinityConfig = &v1.SessionAffinityConfig{
    				ClientIP: &v1.ClientIPConfig{
    					TimeoutSeconds: &timeoutSeconds,
    				},
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    	// Copied from net/http/httputil/reverseproxy.go:
    	if clientIP, _, err := net.SplitHostPort(req.RemoteAddr); err == nil {
    		// If we aren't the first proxy retain prior
    		// X-Forwarded-For information as a comma+space
    		// separated list and fold multiple headers into one.
    		if prior, ok := req.Header["X-Forwarded-For"]; ok {
    			clientIP = strings.Join(prior, ", ") + ", " + clientIP
    		}
    		req.Header.Set("X-Forwarded-For", clientIP)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
Back to top