Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for OpType (0.4 sec)

  1. cmd/bucket-replication-utils_test.go

    				ReplicationStatus:     replication.Completed,
    				OpType:                replication.ObjectReplicationType,
    				ReplicationAction:     replicateAll,
    			},
    			{
    				Arn:                   "arn2",
    				Size:                  249,
    				PrevReplicationStatus: replication.Pending,
    				ReplicationStatus:     replication.Failed,
    				OpType:                replication.ObjectReplicationType,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 08 20:27:40 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/image_grad_test.cc

    using ops::ResizeBilinear;
    using ops::ResizeNearestNeighbor;
    using ops::ScaleAndTranslate;
    
    class ImageGradTest : public ::testing::Test {
     protected:
      ImageGradTest() : scope_(Scope::NewRootScope()) {}
    
      enum OpType { RESIZE_NEAREST, RESIZE_BILINEAR, RESIZE_BICUBIC };
    
      template <typename T>
      Tensor MakeData(const TensorShape& data_shape) {
        DataType data_type = DataTypeToEnum<T>::v();
        Tensor data(data_type, data_shape);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 04:08:05 UTC 2019
    - 12.1K bytes
    - Viewed (0)
  3. internal/bucket/replication/replication.go

    // FilterActionableRules returns the rules actions that need to be executed
    // after evaluating prefix/tag filtering
    func (c Config) FilterActionableRules(obj ObjectOpts) []Rule {
    	if obj.Name == "" && !(obj.OpType == ResyncReplicationType || obj.OpType == AllReplicationType) {
    		return nil
    	}
    	var rules []Rule
    	for _, rule := range c.Rules {
    		if rule.Status == Disabled {
    			continue
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.cc

      assert(r.second);
      (void)r;
    }
    
    template <typename OpType, typename F>
    void RegisterCostFunction(CostFunctionRegistry& registry, F f) {
      RegisterCostFunction(
          registry, OpType::getOperationName().str(),
          [f = std::move(f)](const CostContext& context, mlir::Operation* op) {
            return f(context, llvm::cast<OpType>(op));
          });
    }
    
    CostFunctionRegistry& GetCostFunctionRegistry() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    		if uobjInfo.Name != "" {
    			objInfo = uobjInfo
    		}
    
    		opType := replication.MetadataReplicationType
    		if rinfos.Action() == replicateAll {
    			opType = replication.ObjectReplicationType
    		}
    		for _, rinfo := range rinfos.Targets {
    			if rinfo.ReplicationStatus != rinfo.PrevReplicationStatus {
    				rinfo.OpType = opType // update optype to reflect correct operation.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    				// exported non-type (const, var, func)
    				if r := find(obj, o.Type(), append(path, opType), nil); r != nil {
    					return Path(r), nil
    				}
    			}
    			continue
    		}
    
    		// Inspect declared methods of defined types.
    		if T, ok := aliases.Unalias(o.Type()).(*types.Named); ok {
    			path = append(path, opType)
    			// The method index here is always with respect
    			// to the underlying go/types data structures,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/EsUrlQueueService.java

            insert(urlQueue);
        }
    
        @Override
        public void insert(final EsUrlQueue urlQueue) {
            try {
                super.insert(urlQueue, urlQueue.getId() == null ? OpType.CREATE : OpType.INDEX);
            } catch (final EsAccessException e) {
                final Throwable cause = e.getCause();
                if (cause != null && "VersionConflictEngineException".equals(cause.getClass().getSimpleName())) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. tests/fuzz/aggregate_controller_fuzzer.go

    	opts.MeshHolder = meshHolder
    	c := aggregate.NewController(opts)
    
    	iterations, err := f.GetInt()
    	if err != nil {
    		return 0
    	}
    	for i := 0; i < iterations%30; i++ {
    		opType, err := f.GetInt()
    		if err != nil {
    			return 0
    		}
    		switch ops[opType%maxOps] {
    		case "AddRegistry":
    			err = runAddRegistry(f, c)
    		case "DeleteRegistry":
    			err = runDeleteRegistry(f, c)
    		}
    		if err != nil {
    			return 0
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/index/writer/SuggestIndexWriter.java

                    final IndexRequestBuilder indexRequestBuilder = new IndexRequestBuilder(client, IndexAction.INSTANCE, index);
                    indexRequestBuilder.setId(item.getId()).setOpType(IndexRequest.OpType.INDEX)
                            .setSource(item.getUpdatedSource(getResponse.getSourceAsMap()));
                    bulkRequestBuilder.add(indexRequestBuilder);
                } else {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h

    FailureOr<SmallVector<int32_t>> CastI64ArrayToI32(
        ArrayRef<int64_t> int64_array);
    
    // Returns the first operation with the given type in the function.
    template <typename OpType>
    OpType FindOperationOfType(func::FuncOp function) {
      for (auto op : function.getBody().getOps<OpType>()) {
        return op;
      }
      return nullptr;
    }
    
    // Returns the first user of the given operation, optionally of the given
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top