Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for fixwd (0.13 sec)

  1. cmd/encryption-v1.go

    )
    
    const (
    	// SSECustomerKeySize is the size of valid client provided encryption keys in bytes.
    	// Currently AWS supports only AES256. So the SSE-C key size is fixed to 32 bytes.
    	SSECustomerKeySize = 32
    
    	// SSEIVSize is the size of the IV data
    	SSEIVSize = 32 // 32 bytes
    
    	// SSEDAREPackageBlockSize - SSE dare package block size.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    				Limit: 1,
    			},
    			// TODO(#108003): As of now, watchcache is deliberately ignoring
    			// limit if RV=0 is specified, returning whole list of objects.
    			// While this should eventually get fixed, for now we're explicitly
    			// ignoring this testcase for watchcache.
    			ignoreForWatchCache:        true,
    			expectedOut:                []example.Pod{*preset[1]},
    			expectContinue:             true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def TensorFlowShapeInferencePass : Pass<"tf-shape-inference", "ModuleOp"> {
      let summary =
        "Shape inference on TF dialect and ops implementing InferTypeOpInterface";
    
      let description = [{
        Fixed point shape refinement pass that utilizes the shape functions
        registered on ops using the InferTypeOpInterface as well as by bridging to
        the TensorFlow op registry's shape functions. This is an interprocedural
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    // should be performed by other components (like the volume manager). The duration
    // of this call is the minimum latency for static pods to be restarted if they
    // are updated with a fixed UID (most should use a dynamic UID), and no config
    // updates are delivered to the pod workers while this method is running.
    func (kl *Kubelet) HandlePodCleanups(ctx context.Context) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. .bazelrc

    test:release_macos_arm64 --config=release_macos_base
    
    # Ensure release_base is set on windows
    build:release_cpu_windows --config=release_base
    
    # TODO(kanglan): Update windows configs after b/289091160 is fixed
    build:release_cpu_windows --config=avx_win
    build:release_cpu_windows --define=no_tensorflow_py_deps=true
    
    # Exclude TFRT integration for anything but Linux.
    build:android --config=no_tfrt
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

        readonly_model_ = input_model_->GetModel();
        model_ = UnPackFlatBufferModel(*readonly_model_);
      }
    };
    
    // TODO(b/327796566): re-enable after the bug is fixed
    // TEST_F(QuantizeConvNoBiasModelTest, QuantizationSucceeds) {
    //   auto status = QuantizeModelAllOperators(
    //       &model_, TensorType_INT8, TensorType_INT8,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. cmd/iam.go

    	// authZ plugin is set, role policies are just claims sent to
    	// the plugin and they need not exist.
    	//
    	// If some mapped policies do not exist, we print some error
    	// messages but continue any way - they can be fixed in the
    	// running server by creating the policies after start up.
    	for arn, rolePolicies := range m {
    		specifiedPoliciesSet := newMappedPolicy(rolePolicies).policySet()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto indices_rank = indices_ty.getRank();
        int64_t num_index_dims = indices_ty.getDimSize(indices_rank - 1);
        if (!params_ty || !indices_ty) return failure();
        // the last dim of indices of GatherNdOp must be fixed shaped
        if (num_index_dims == ShapedType::kDynamic) return failure();
    
        SmallVector<int64_t, 4> slice_sizes;
        slice_sizes.reserve(params_rank);
        for (int64_t i = 0; i < params_rank; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

              none_of(op->getResultTypes(), CanBeRefined))
            return WalkResult::advance();
    
          // Best-effort shape inference in attached functions. Do not return
          // failure even if it doesn't get to fixed point, but propagate "real"
          // failure.
          if (failed(PropagateShapeIntoAttachedFunctions(op, max_iterations))) {
            op->emitWarning() << "unable to refine shape of attached function "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. CREDITS

    in one of these ways:
    
        a) Convey the object code in, or embodied in, a physical product
        (including a physical distribution medium), accompanied by the
        Corresponding Source fixed on a durable physical medium
        customarily used for software interchange.
    
        b) Convey the object code in, or embodied in, a physical product
        (including a physical distribution medium), accompanied by a
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top