Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for bidirectional (0.61 sec)

  1. pkg/apis/core/validation/validation.go

    		// Pods with Bidirectional propagation in non-privileged containers.
    		return allErrs
    	}
    
    	privileged := container.SecurityContext != nil && container.SecurityContext.Privileged != nil && *container.SecurityContext.Privileged
    	if *mountPropagation == core.MountPropagationBidirectional && !privileged {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    </pre>
    
    <p>
    The optional <code>&lt;-</code> operator specifies the channel <i>direction</i>,
    <i>send</i> or <i>receive</i>. If no direction is given, the channel is
    <i>bidirectional</i>.
    A channel may be constrained only to send or only to receive by
    <a href="#Assignments">assignment</a> or
    explicit <a href="#Conversions">conversion</a>.
    </p>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. test/cmp6.go

    type T4 struct {
    	_ []int
    	a float64
    }
    
    var t4 T4
    
    func main() {
    	// Arguments to comparison must be
    	// assignable one to the other (or vice versa)
    	// so chan int can be compared against
    	// directional channels but channel of different
    	// direction cannot be compared against each other.
    	var c1 chan<- int
    	var c2 <-chan int
    	var c3 chan int
    
    	use(c1 == c2) // ERROR "invalid operation|incompatible"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 21:49:31 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    		// non-privileged container + None
    		core.VolumeMount{Name: "foo", MountPath: "/foo", MountPropagation: &propagationNone},
    		defaultContainer,
    		false,
    	}, {
    		// error: implicitly non-privileged container + Bidirectional
    		core.VolumeMount{Name: "foo", MountPath: "/foo", MountPropagation: &propagationBidirectional},
    		defaultContainer,
    		true,
    	}, {
    		// explicitly non-privileged container + no propagation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

            // We check both directions to verify these candidates differ. If a.matches(b) but !b.matches(a), we still consider variants a and b to be matching.
            // This is because attribute schema compatibility rules can be directional, where for two attribute values x and y, x may be compatible with y
            // while y may not be compatible with x. We accept compatibility in either direction as sufficient for this method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. pkg/controller/util/selectors/bimultimap.go

    limitations under the License.
    */
    
    package selectors
    
    import (
    	"fmt"
    	"strings"
    	"sync"
    
    	pkglabels "k8s.io/apimachinery/pkg/labels"
    )
    
    // BiMultimap is an efficient, bi-directional mapping of object
    // keys. Associations are created by putting keys with a selector.
    type BiMultimap struct {
    	mux sync.RWMutex
    
    	// Objects.
    	labeledObjects   map[Key]*labeledObject
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 21:41:32 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// Note that this mode is recursively applied to all mounts in the volume
    	// ("rshared" in Linux terminology).
    	MountPropagationBidirectional MountPropagationMode = "Bidirectional"
    )
    
    // RecursiveReadOnlyMode describes recursive-readonly mode.
    type RecursiveReadOnlyMode string
    
    const (
    	// RecursiveReadOnlyDisabled disables recursive-readonly mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    		f = MakeFunc(TypeOf(f), func([]Value) []Value {
    			var w io.WriteCloser = &WC{}
    			return []Value{ValueOf(&w).Elem()}
    		}).Interface().(func() io.ReadWriteCloser)
    		f()
    	})
    	// Directional channels can't be assigned to bidirectional ones.
    	shouldPanic("", func() {
    		var f func() chan int
    		f = MakeFunc(TypeOf(f), func([]Value) []Value {
    			var c <-chan int = make(chan int)
    			return []Value{ValueOf(c)}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. docs/bucket/replication/README.md

    the destination side, a `X-Amz-Replication-Status` status of `REPLICA` indicates that the object was replicated successfully. Any replication failures are automatically re-attempted during a periodic disk scanner cycle.
    
    To perform bi-directional replication, repeat the above process on the target site - this time setting the source bucket as the replication target. It is recommended that replication be run in a system with at least two CPU's available to the process, so that replication...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/schema/schema.fbs

      proj_clip: float; // Optional, 0.0 means no clipping
    
      // If true then first dimension is sequence, otherwise batch.
      time_major:bool;
    
      // Parameter for Unidirectional Sequence LSTM version 3.
      asymmetric_quantize_inputs:bool;
    
      // Parameter for unidirectional sequence RNN version 4.
      diagonal_recurrent_tensors:bool;
    }
    
    table BidirectionalSequenceLSTMOptions {
      // Parameters supported by version 1:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top