Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 168 for getIPs (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables.cc

      mlir::Builder builder(context);
      StringAttr resource_name_id = builder.getStringAttr(kResourceNameArgAttr);
    
      SmallSet<StringRef, 4> resource_names;
    
      for (func::FuncOp func : module.getOps<func::FuncOp>()) {
        for (int i = 0, e = func.getNumArguments(); i < e; ++i) {
          auto resource_arg =
              func.getArgAttrOfType<StringAttr>(i, kResourceNameArgAttr);
          if (!resource_arg) continue;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaWorkspace.java

        }
    
        @Override
        public XmlTransformer getXmlTransformer() {
            if (workspace == null) {
                return super.getXmlTransformer();
            }
            return workspace.getIws().getXmlTransformer();
        }
    
        /**
         * The Idea workspace model containing the details required to generate the workspace file.
         */
        @Internal
        public IdeaWorkspace getWorkspace() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

      bool need_prefix_for_output_name = false;
      std::vector<StringRef> fn_input_name_vec, fn_output_name_vec;
      StringSet<> input_name_set, output_name_set;
      for (auto func_op : module_op.getOps<func::FuncOp>()) {
        if (!ShouldIncludeInMainFunction(func_op)) continue;
        if (auto tf_attrs =
                func_op->getAttrOfType<DictionaryAttr>(kEntryFunctionAttr)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/IdeaWorkspace.java

        private XmlFileContentMerger iws;
    
        /**
         * Enables advanced manipulation of the output XML.
         * <p>
         * For example see docs for {@link IdeaWorkspace}
         */
        public XmlFileContentMerger getIws() {
            return iws;
        }
    
        public void setIws(XmlFileContentMerger iws) {
            this.iws = iws;
        }
    
        /**
         * Enables advanced manipulation of the output XML.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

    template <typename GemmStyleOp>
    // Match for all gemm_style op and check for possible fusions.
    LogicalResult MatchGemmStyleOp(func::FuncOp entry_func_op) {
      const auto op_iterator_range = entry_func_op.getOps<GemmStyleOp>();
      if (op_iterator_range.empty()) {
        LLVM_DEBUG(llvm::dbgs() << "Function does not have "
                                << GemmStyleOp::getOperationName() << " op.\n");
        return failure();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    func CheckAutoScaleAndReplicaCount(values *valuesv1alpha1.Values, spec *v1alpha1.IstioOperatorSpec) (errs util.Errors, warnings []string) {
    	if values.GetPilot().GetAutoscaleEnabled().GetValue() && spec.GetComponents().GetPilot().GetK8S().GetReplicaCount() > 1 {
    		warnings = append(warnings,
    			"components.pilot.k8s.replicaCount should not be set when values.pilot.autoscaleEnabled is true")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/CIFSContext.java

    
        /**
         * @return the transport pool
         */
        SmbTransportPool getTransportPool ();
    
    
        /**
         * @return the DFS instance for this context
         */
        DfsResolver getDfs ();
    
    
        /**
         * @return the SID resolver for this context
         */
        SidResolver getSIDResolver ();
    
    
        /**
         * 
         * @return the used credentials
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiItemTest.java

            assertEquals("t1", kuromojiItem.getToken());
            assertEquals("s1", kuromojiItem.getSegmentation());
            assertEquals("r1", kuromojiItem.getReading());
            assertEquals("p1", kuromojiItem.getPos());
            assertNull(kuromojiItem.getNewToken());
            assertNull(kuromojiItem.getNewSegmentation());
            assertNull(kuromojiItem.getNewReading());
            assertNull(kuromojiItem.getNewPos());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/per_function_aggregate_analysis.h

      void runOnOperation() override {
        ModuleOp op = this->getOperation();
        DerivedT& derived = *static_cast<DerivedT*>(this);
        auto& analysis = this->template getAnalysis<AnalysisT>();
    
        for (auto func : op.getOps<func::FuncOp>())
          if (!func.isExternal())
            derived.runOnFunction(func, analysis.GetAnalysisForFunc(func));
      }
    };
    
    }  // namespace TF
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_util.cc

      }
    }
    
    void ForEachArgConsumedByFallback(
        mlir::ModuleOp module,
        llvm::function_ref<void(llvm::StringRef func_name, int arg_index)> action) {
      for (auto func : module.getOps<mlir::func::FuncOp>()) {
        ForEachArgConsumedByFallback(
            func, [func_name = func.getName(), action](int arg_index) {
              action(func_name, arg_index);
            });
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 02:12:49 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top