Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 173 for clientV3 (0.13 sec)

  1. tests/integration/security/sds_ingress/util/generate_certs.sh

    openssl genrsa -out "${WD}/clientA1.key" 2048
    openssl req -new -key "${WD}/clientA1.key" -out "${WD}/clientA1.csr" -subj "/CN=*.example.com" -config "${WD}/client.conf"
    openssl x509 -req -days 3650 -CA "${WD}/rootA.crt" -CAkey "${WD}/rootA.key" -set_serial 1 -in "${WD}/clientA1.csr" -out "${WD}/clientA1.crt" -extensions v3_req -extfile "${WD}/client.conf"
    
    openssl ca -config "${WD}/crlA.conf" -revoke "${WD}/clientA1.crt"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 22:01:21 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake.go

    				ew := heap.Pop(&fec.waiters).(eventWaiter)
    				fec.clientWG.Add(1)
    				go func(f eventclock.EventFunc, now time.Time) {
    					f(now)
    					fec.clientWG.Add(-1)
    				}(ew.f, now)
    				foundSome = true
    			}
    		}()
    		if !foundSome {
    			break
    		}
    		fec.clientWG.Wait()
    	}
    }
    
    // Sleep returns after the given duration has passed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  3. internal/handlers/forwarder.go

    func ipv6fix(clientIP string) string {
    	return strings.Split(clientIP, "%")[0]
    }
    
    func (rw *headerRewriter) Rewrite(req *http.Request) {
    	if clientIP, _, err := net.SplitHostPort(req.RemoteAddr); err == nil {
    		clientIP = ipv6fix(clientIP)
    		if req.Header.Get(xRealIP) == "" {
    			req.Header.Set(xRealIP, clientIP)
    		}
    	}
    
    	xfProto := req.Header.Get(xForwardedProto)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 07 05:42:10 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/mcs-serviceimport-crd.yaml

                    properties:
                      clientIP:
                        description: clientIP contains the configurations of Client IP
                          based session affinity.
                        type: object
                        properties:
                          timeoutSeconds:
                            description: timeoutSeconds specifies the seconds of ClientIP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/dra/plugin/client.go

    Patrick Ohly <******@****.***> 1712753446 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/metrics/client.go

    	customapi "k8s.io/metrics/pkg/apis/custom_metrics/v1beta2"
    	metricsapi "k8s.io/metrics/pkg/apis/metrics/v1beta1"
    	resourceclient "k8s.io/metrics/pkg/client/clientset/versioned/typed/metrics/v1beta1"
    	customclient "k8s.io/metrics/pkg/client/custom_metrics"
    	externalclient "k8s.io/metrics/pkg/client/external_metrics"
    )
    
    const (
    	metricServerDefaultMetricWindow = time.Minute
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 16 20:17:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. docs/sts/web-identity.go

    		"http://localhost:8080/auth/realms/minio/.well-known/openid-configuration",
    		"OpenID discovery document endpoint")
    	flag.StringVar(&clientID, "cid", "", "Client ID")
    	flag.StringVar(&clientSec, "csec", "", "Client Secret")
    	flag.StringVar(&clientScopes, "cscopes", "openid", "Client Scopes")
    	flag.IntVar(&port, "port", 8080, "Port")
    }
    
    func implicitFlowURL(c oauth2.Config, state string) string {
    	var buf bytes.Buffer
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 19 09:13:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. tests/test_swagger_ui_init_oauth.py

    from fastapi.testclient import TestClient
    
    swagger_ui_init_oauth = {"clientId": "the-foo-clients", "appName": "The Predendapp"}
    
    app = FastAPI(swagger_ui_init_oauth=swagger_ui_init_oauth)
    
    
    @app.get("/items/")
    async def read_items():
        return {"id": "foo"}
    
    
    client = TestClient(app)
    
    
    def test_swagger_ui():
        response = client.get("/docs")
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Aug 09 10:54:05 UTC 2020
    - 718 bytes
    - Viewed (0)
  9. fess-crawler-lasta/src/main/resources/crawler/client.xml

    		<property name="charset">"UTF-8"</property>
    	</component>
    
    	<component name="crawlerClientCreator"
    		class="org.codelibs.fess.crawler.client.CrawlerClientCreator">
    	</component>
    
    	<component name="clientFactory"
    		class="org.codelibs.fess.crawler.client.CrawlerClientFactory" instance="prototype">
    		<postConstruct name="addClient">
    			<arg>["http:.*", "https:.*"]</arg>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Tue Aug 08 12:54:47 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/net/rpc/client.go

    	Close() error
    }
    
    func (client *Client) send(call *Call) {
    	client.reqMutex.Lock()
    	defer client.reqMutex.Unlock()
    
    	// Register this call.
    	client.mutex.Lock()
    	if client.shutdown || client.closing {
    		client.mutex.Unlock()
    		call.Error = ErrShutdown
    		call.done()
    		return
    	}
    	seq := client.seq
    	client.seq++
    	client.pending[seq] = call
    	client.mutex.Unlock()
    
    	// Encode and send the request.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top