Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 143 for Builders (0.14 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    #include "mlir/Dialect/Quant/QuantOps.h"  // from @llvm-project  // NOLINT: Required to register quantization dialect.
    #include "mlir/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_3x.md

        changes. In 3.x, `OkHttpClient` is now stateless and has a builder. Note
        that this class is not strictly immutable as it has stateful members like
        the connection pool and cache.
    
     *  **Get and Set prefixes are now avoided.** With ubiquitous builders
        throughout OkHttp these accessor prefixes aren't necessary. Previously
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // already set.
      auto symbol =
          mlir::SymbolRefAttr::get(builder.getContext(), func.getSymName());
      auto result_types = func.getResultTypes();
      auto caller = builder.create<TF::StatefulPartitionedCallOp>(
          loc, result_types, operands, symbol,
          /*config=*/builder.getStringAttr(""),
          /*config_proto=*/builder.getStringAttr(""),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    		// as the original build system.
    		env = append(env, "CGO_ENABLED=0")
    	}
    	if isRelease || os.Getenv("GO_BUILDER_NAME") != "" {
    		// Add -trimpath for reproducible builds of releases.
    		// Include builders so that -trimpath is well-tested ahead of releases.
    		// Do not include local development, so that people working in the
    		// main branch for day-to-day work on the Go toolchain itself can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsLabelTypeCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_Wildcard(String createdBy) {
            setCreatedBy_Wildcard(createdBy, null);
        }
    
        public void setCreatedBy_Wildcard(String createdBy, ConditionOptionCall<WildcardQueryBuilder> opLambda) {
            WildcardQueryBuilder builder = regWildcardQ("createdBy", createdBy);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsScheduledJobCA.java

            ScriptedMetricAggregationBuilder builder = regScriptedMetricA(name);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void topHits(String name, ConditionOptionCall<TopHitsAggregationBuilder> opLambda) {
            TopHitsAggregationBuilder builder = regTopHitsA(name);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 89.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsPathMappingCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_Wildcard(String createdBy) {
            setCreatedBy_Wildcard(createdBy, null);
        }
    
        public void setCreatedBy_Wildcard(String createdBy, ConditionOptionCall<WildcardQueryBuilder> opLambda) {
            WildcardQueryBuilder builder = regWildcardQ("createdBy", createdBy);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 72.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsClickLogCQ.java

            MatchPhrasePrefixQueryBuilder builder = regMatchPhrasePrefixQ("urlId", urlId);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setUrlId_Fuzzy(String urlId) {
            setUrlId_Fuzzy(urlId, null);
        }
    
        public void setUrlId_Fuzzy(String urlId, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regFuzzyQ("urlId", urlId);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsElevateWordCQ.java

            MatchPhrasePrefixQueryBuilder builder = regMatchPhrasePrefixQ("boost", boost);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setBoost_Fuzzy(Float boost) {
            setBoost_Fuzzy(boost, null);
        }
    
        public void setBoost_Fuzzy(Float boost, ConditionOptionCall<MatchQueryBuilder> opLambda) {
            MatchQueryBuilder builder = regFuzzyQ("boost", boost);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsDuplicateHostCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedBy_Wildcard(String createdBy) {
            setCreatedBy_Wildcard(createdBy, null);
        }
    
        public void setCreatedBy_Wildcard(String createdBy, ConditionOptionCall<WildcardQueryBuilder> opLambda) {
            WildcardQueryBuilder builder = regWildcardQ("createdBy", createdBy);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top