Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 500 for bindTo (0.17 sec)

  1. maven-core/src/site/apt/offline-mode.apt

      descriptor's requiredConnectivity field.
    
      * If <<<(offline == true) && (requiresOnline != true)>>>, bind
        the mojo to the lifecycle.
    
        In this case, the client is <<offline>>, and the mojo does not require
        online status.
    
      * If <<<(offline == false) && (requiresOnline == true)>>>, bind
        the mojo to the lifecycle.
    
        In this case, the client is <<online>>, and the mojo either requires
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pkg/registry/core/serviceaccount/storage/token.go

    			if err != nil {
    				return nil, err
    			}
    			pod = podObj.(*api.Pod)
    			if name != pod.Spec.ServiceAccountName {
    				return nil, errors.NewBadRequest(fmt.Sprintf("cannot bind token for serviceaccount %q to pod running with different serviceaccount name.", name))
    			}
    			uid = pod.UID
    			if utilfeature.DefaultFeatureGate.Enabled(features.ServiceAccountTokenPodNodeInfo) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. pkg/scheduler/metrics/metrics.go

    	PreScore                    = "PreScore"
    	Score                       = "Score"
    	ScoreExtensionNormalize     = "ScoreExtensionNormalize"
    	PreBind                     = "PreBind"
    	Bind                        = "Bind"
    	PostBind                    = "PostBind"
    	Reserve                     = "Reserve"
    	Unreserve                   = "Unreserve"
    	Permit                      = "Permit"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    )
    
    type SecureServingOptions struct {
    	BindAddress net.IP
    	// BindPort is ignored when Listener is set, will serve https even with 0.
    	BindPort int
    	// BindNetwork is the type of network to bind to - defaults to "tcp", accepts "tcp",
    	// "tcp4", and "tcp6".
    	BindNetwork string
    	// DisableHTTP2Serving indicates that http2 serving should not be enabled.
    	DisableHTTP2Serving bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: bind-all
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: Route was valid, bound to 6 parents
          reason: Accepted
          status: "True"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_POSIX_FADVISE            = 531 // { int posix_fadvise(int fd, off_t offset, \
    	SYS_WAIT6                    = 532 // { int wait6(idtype_t idtype, id_t id, \
    	SYS_BINDAT                   = 538 // { int bindat(int fd, int s, caddr_t name, \
    	SYS_CONNECTAT                = 539 // { int connectat(int fd, int s, caddr_t name, \
    	SYS_CHFLAGSAT                = 540 // { int chflagsat(int fd, const char *path, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  7. cmd/admin-handlers-pools.go

    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	buckets := make([]string, 0, len(bucketInfos))
    	for _, bInfo := range bucketInfos {
    		buckets = append(buckets, bInfo.Name)
    	}
    
    	var id string
    	if id, err = pools.initRebalanceMeta(ctx, buckets); err != nil {
    		writeErrorResponseJSON(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. docs/de/docs/deployment/server-workers.md

            ```Python
            import uvicorn.workers.UvicornWorker
            ```
    
    * `--bind`: Das teilt Gunicorn die IP und den Port mit, welche abgehört werden sollen, wobei ein Doppelpunkt (`:`) verwendet wird, um die IP und den Port zu trennen.
        * Wenn Sie Uvicorn direkt ausführen würden, würden Sie anstelle von `--bind 0.0.0.0:80` (die Gunicorn-Option) stattdessen `--host 0.0.0.0` und `--port 80` verwenden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. internal/http/listener_test.go

    			if err != nil {
    				if strings.Contains(err.Error(), "The requested address is not valid in its context") {
    					// Ignore if IP is unbindable.
    					continue nextTest
    				}
    				if strings.Contains(err.Error(), "bind: address already in use") {
    					continue nextTest
    				}
    				t.Fatalf("Test %d: error: expected = <nil>, got = %v", i+1, err)
    			}
    		}
    
    		for _, serverAddr := range listener.Addrs() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/config/common.go

    		if lowercase != san {
    			klog.V(1).Infof("lowercasing SAN %q to %q", san, lowercase)
    			sans[i] = lowercase
    		}
    	}
    }
    
    // VerifyAPIServerBindAddress can be used to verify if a bind address for the API Server is 0.0.0.0,
    // in which case this address is not valid and should not be used.
    func VerifyAPIServerBindAddress(address string) error {
    	ip := netutils.ParseIPSloppy(address)
    	if ip == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top