Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for bidirectional (0.45 sec)

  1. staging/src/k8s.io/api/core/v1/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
    - 390.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_v3b.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 4.
      asymmetric_quantize_inputs:bool;
    }
    
    table BidirectionalSequenceLSTMOptions {
      // Parameters supported by version 1:
      fused_activation_function:ActivationFunctionType;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/unify.go

    				// of unnamed types, all matching against the same type parameter, we infer the
    				// directed channel if there is one, independent of order.
    				// Selecting a directional channel, if any, ensures that a value of another
    				// inexactly unifying channel type remains assignable (go.dev/issue/62157).
    				//
    				// If we have multiple defined channel types, they are either identical or we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. src/go/types/unify.go

    				// of unnamed types, all matching against the same type parameter, we infer the
    				// directed channel if there is one, independent of order.
    				// Selecting a directional channel, if any, ensures that a value of another
    				// inexactly unifying channel type remains assignable (go.dev/issue/62157).
    				//
    				// If we have multiple defined channel types, they are either identical or we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar.go

    			// If a route defines `*.com` and we import `a.com`, it will not match
    			match = vsHost.SubsetOf(importedHost)
    		} else {
    			// The old way. We check Matches which is bi-directional. This is for backwards compatibility
    			match = vsHost.Matches(importedHost)
    		}
    		if match {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. RELEASE.md

        `GRUCell`, and a number of other cells. These now reside in `tf.nn.rnn_cell`
        (with aliases in `tf.contrib.rnn` for backwards compatibility). The original
        `tf.nn.rnn` function is now `tf.nn.static_rnn`, and the bidirectional static
        and state saving static rnn functions are also now back in the `tf.nn`
        namespace.
    
        Notable exceptions are the `EmbeddingWrapper`, `InputProjectionWrapper` and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    			return &ParentError{
    				Reason:  ParentErrorNotAccepted,
    				Message: fmt.Sprintf("sectionName %q not found", parentRef.SectionName),
    			}
    		}
    
    		// Next check the hostnames are a match. This is a bi-directional wildcard match. Only one route
    		// hostname must match for it to be allowed (but the others will be filtered at runtime)
    		// If either is empty its treated as a wildcard which always matches
    
    		if len(hostnames) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    way around. When not set, MountPropagationNone is used. This field is beta in 1.10. When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None).\n\nPossible enum values:\n - `\"Bidirectional\"` means that the volume in a container will receive new mounts from the host or other containers, and its own mounts will be propagated from the container to the host or other containers. Note that this mode is recursively applied to all mounts...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    // PLEASE DO NOT ATTEMPT TO SIMPLIFY THIS CODE.
    // KEEP THE SPACE SHUTTLE FLYING.
    // ==================================================================
    
    // Design:
    //
    // The fundamental key to this design is the bi-directional "pointer" between
    // PersistentVolumes (PVs) and PersistentVolumeClaims (PVCs), which is
    // represented here as pvc.Spec.VolumeName and pv.Spec.ClaimRef. The bi-
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. src/reflect/value.go

    	if typ.Kind() != Chan {
    		panic("reflect.MakeChan of non-chan type")
    	}
    	if buffer < 0 {
    		panic("reflect.MakeChan: negative buffer size")
    	}
    	if typ.ChanDir() != BothDir {
    		panic("reflect.MakeChan: unidirectional channel type")
    	}
    	t := typ.common()
    	ch := makechan(t, buffer)
    	return Value{t, ch, flag(Chan)}
    }
    
    // MakeMap creates a new map with the specified type.
    func MakeMap(typ Type) Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top