Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for bidirectional (0.24 sec)

  1. cmd/kubeadm/app/cmd/options/token.go

    }
    
    // AddTokenFlag adds the --token flag to the given flagset
    func (bto *BootstrapTokenOptions) AddTokenFlag(fs *pflag.FlagSet) {
    	fs.StringVar(
    		&bto.TokenStr, TokenStr, "",
    		"The token to use for establishing bidirectional trust between nodes and control-plane nodes. The format is [a-z0-9]{6}\\.[a-z0-9]{16} - e.g. abcdef.0123456789abcdef",
    	)
    }
    
    // AddTTLFlag adds the --token-ttl flag to the given flagset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. pkg/client/tests/portfoward_test.go

    		ports       []string
    		clientSends map[int32]string
    		serverSends map[int32]string
    	}{
    		"forward 1 port with no data either direction": {
    			ports: []string{":5000"},
    		},
    		"forward 2 ports with bidirectional data": {
    			ports: []string{":5001", ":6000"},
    			clientSends: map[int32]string{
    				5001: "abcd",
    				6000: "ghij",
    			},
    			serverSends: map[int32]string{
    				5001: "1234",
    				6000: "5678",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

                        to which this VolumeSnapshotContent object is bound. VolumeSnapshot.Spec.VolumeSnapshotContentName
                        field must reference to this VolumeSnapshotContent's name for the
                        bidirectional binding to be valid. For a pre-existing VolumeSnapshotContent
                        object, name and namespace of the VolumeSnapshot object MUST be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  4. src/internal/types/testdata/spec/assignability.go

    func _[TP Interface](X TP) {
    	i = d // ERROR "missing method m"
    	i = D
    	i = X
    	X = i // ERRORx `cannot use i .* as TP value`
    }
    
    // "x is a bidirectional channel value, T is a channel type, x's type V and T have identical element types, and at least one of V or T is not a named type"
    // (here a named type is a type with a name)
    type (
    	_SendChan = chan<- int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. pkg/registry/core/service/ipallocator/controller/repairip.go

    //
    // There is a one-to-one relation between Service ClusterIPs and IPAddresses.
    // The bidirectional relation is achieved using the following fields:
    // Service.Spec.Cluster == IPAddress.Name AND IPAddress.ParentRef == Service
    //
    // The controller use two reconcile loops, one for Services and other for IPAddress.
    // The Service reconcile loop verifies the bidirectional relation exists and is correct.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. src/go/types/operand.go

    			// T implements V, so give hint about type assertion.
    			if cause != nil {
    				*cause = "need type assertion"
    			}
    			return false, IncompatibleAssign
    		}
    	}
    
    	// x is a bidirectional channel value, T is a channel
    	// type, x's type V and T have identical element types,
    	// and at least one of V or T is not a named type.
    	if Vc, ok := Vu.(*Chan); ok && Vc.dir == SendRecv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go gen_trieval.go gen_ranges.go
    
    // Package bidi contains functionality for bidirectional text support.
    //
    // See https://www.unicode.org/reports/tr9.
    //
    // NOTE: UNDER CONSTRUCTION. This API may change in backwards incompatible ways
    // and without notice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/operand.go

    			// T implements V, so give hint about type assertion.
    			if cause != nil {
    				*cause = "need type assertion"
    			}
    			return false, IncompatibleAssign
    		}
    	}
    
    	// x is a bidirectional channel value, T is a channel
    	// type, x's type V and T have identical element types,
    	// and at least one of V or T is not a named type.
    	if Vc, ok := Vu.(*Chan); ok && Vc.dir == SendRecv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. pilot/pkg/model/config.go

    // treated as read-only. Modifying them violates thread-safety.
    type ConfigStore interface {
    	// Schemas exposes the configuration type schema known by the config store.
    	// The type schema defines the bidirectional mapping between configuration
    	// types and the protobuf encoding schema.
    	Schemas() collection.Schemas
    
    	// Get retrieves a configuration element by a type and a key
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/token.go

    		Short: "Manage bootstrap tokens",
    		Long: dedent.Dedent(`
    			This command manages bootstrap tokens. It is optional and needed only for advanced use cases.
    
    			In short, bootstrap tokens are used for establishing bidirectional trust between a client and a server.
    			A bootstrap token can be used when a client (for example a node that is about to join the cluster) needs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top