Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,027 for Bind (0.08 sec)

  1. pkg/registry/core/serviceaccount/storage/token.go

    		node   *api.Node
    		secret *api.Secret
    	)
    
    	if ref := req.Spec.BoundObjectRef; ref != nil {
    		var uid types.UID
    
    		gvk := schema.FromAPIVersionAndKind(ref.APIVersion, ref.Kind)
    		switch {
    		case gvk.Group == "" && gvk.Kind == "Pod":
    			newCtx := newContext(ctx, "pods", ref.Name, namespace, gvk)
    			podObj, err := r.pods.Get(newCtx, ref.Name, &metav1.GetOptions{})
    			if err != nil {
    				return nil, err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    		}
    		opts.policy.ConnectionPool = sidecarConnPool
    	}
    	cb.applyTrafficPolicy(opts)
    
    	if bind != LocalhostAddress && bind != LocalhostIPv6Address {
    		// iptables will redirect our own traffic to localhost back to us if we do not use the "magic" upstream bind
    		// config which will be skipped.
    		localCluster.cluster.UpstreamBindConfig = &core.BindConfig{
    			SourceAddress: &core.SocketAddress{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. pkg/volume/volume.go

    	// be mounted after it is attached. This is a global mount
    	// point which should be bind mounted for individual volumes.
    	GetDeviceMountPath(spec *Spec) (string, error)
    
    	// MountDevice mounts the disk to a global path which
    	// individual pods can then bind mount
    	// Note that devicePath can be empty if the volume plugin does not implement any of Attach and WaitForAttach methods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            return find(ModelPath.path(path), type);
        }
    
        @Override
        public <T> T find(ModelPath path, ModelType<T> type) {
            return toType(type, get(path), "find(ModelPath, ModelType)");
        }
    
        private <T> T toType(ModelType<T> type, ModelNodeInternal node, String msg) {
            if (node == null) {
                return null;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

        name: slctr-combined-no
        supportedKinds:
        - group: gateway.networking.k8s.io
          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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"path"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.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

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package config contains utilities for managing the kubeadm configuration API.
    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