Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for bidirectional (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

    LogicalResult ConvertTFAssertOp::matchAndRewrite(
        Operation* op, PatternRewriter& rewriter) const {
      rewriter.eraseOp(op);
      return success();
    }
    
    // Legalize unidirectional sequence lstm.
    struct LegalizeUnidirectionalSequenceLstm : public RewritePattern {
      explicit LegalizeUnidirectionalSequenceLstm(MLIRContext* context)
          : RewritePattern(kUnidirectionalSequenceLstm, 1, context) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    * [alpha] Mount namespace propagation
    
      * The `VolumeMount.Propagation` field for `VolumeMount` in pod containers is now available.
    
      * You can now set `VolumeMount.Propagation` to `Bidirectional` to enable a particular mount for a container to propagate itself to the host or other containers.
    
    * [alpha] Improve Flex volume deployment
    
      * Flex volume driver deployment is simplified in the following ways:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

          pass_manager->addPass(mlir::TFL::CreateReduceTypePrecisionPass());
        }
    
        // This pass should be always at the end of the model
        // conversion (even after quantization). Some TFL ops like unidirectional
        // sequence lstm will have stateful operands and some optimization passes
        // will merge those operands if they have identical values & types. However,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top