Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Blacklist (0.35 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                // continue the build but ban all projects that depend on the failed one
                buildContext.getReactorBuildStatus().blackList(mavenProject);
            } else if (MavenExecutionRequest.REACTOR_FAIL_FAST.equals(rootSession.getReactorFailureBehavior())) {
                buildContext.getReactorBuildStatus().halt();
            } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. common/config/.golangci.yml

          - name: modifies-parameter
          - name: unreachable-code
          - name: struct-tag
          - name: constant-logical-expr
          - name: bool-literal-in-expr
          - name: redefines-builtin-id
          - name: imports-blacklist
          - name: range-val-in-closure
          - name: range-val-address
          - name: waitgroup-by-value
          - name: atomic
          - name: call-to-gc
          - name: duplicated-imports
          - name: string-of-int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. javadoc-stylesheet.css

    }
    ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
        padding:0 0 5px 8px;
        background-color:#ffffff;
        border:1px solid #9eadc0;
        border-top:none;
    }
    ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
        margin-left:0;
        padding-left:0;
        padding-bottom:15px;
        border:none;
        border-bottom:1px solid #9eadc0;
    }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jul 17 21:01:06 UTC 2013
    - 11.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/passes.td

                 "Use legacy quantize mode in test. Valid when `-legacy-quantize` is set.">,
          ListOption<"ops_blocklist_flag_", "ops-blocklist",
                 "std::string", "Names of ops to blocklist from quantization">,
          ListOption<"nodes_blocklist_flag_", "locs-blocklist",
                 "std::string", "Names of location to blocklist from quantization">,
          Option<"enable_custom_op_weight_only_", "enable-custom-op-weight-only",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      bool use_fake_quant_num_bits = false;
    
      // Names of ops to block from quantization. Used in QuantizePass.
      // For dynamic range quantization, ops in blocklist are quantized in weight-
      // only manner.
      absl::flat_hash_set<std::string> ops_blocklist;
    
      // Names of locations to block from quantization. Used in QuantizePass.
      absl::flat_hash_set<std::string> nodes_blocklist;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. pkg/apis/rbac/helpers.go

    		}
    		// if resource names are set, then the verb must not be list, watch, create, or deletecollection
    		// since verbs are largely opaque, we don't want to accidentally prevent things like "impersonate", so
    		// we will backlist common mistakes, not whitelist acceptable options.
    		if len(r.PolicyRule.ResourceNames) != 0 {
    			illegalVerbs := []string{}
    			for _, verb := range r.PolicyRule.Verbs {
    				switch verb {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 23 15:11:00 UTC 2020
    - 12.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/quantize.mlir

    // RUN: tf-opt %s -tfl-quantize="legacy-quantize=true" | FileCheck --check-prefix=LEGACY %s
    // RUN: tf-opt %s -tfl-prepare-quantize -tfl-quantize="ops-blocklist=tfl.fully_connected,tfl.softmax locs-blocklist=Block,NullBlock" | FileCheck --check-prefix=BLOCK %s
    
    // CHECK-LABEL: QuantizeFloatConst
    func.func @QuantizeFloatConst() -> tensor<2x2x!quant.uniform<u8:f32, 7.8431372549019615E-4:128>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:10:13 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/quantize-dynamic-range.mlir

    // RUN: tf-opt %s -tfl-prepare-quantize-dynamic-range="enable-dynamic-range-per-channel-quantization=false" -tfl-quantize="enable-dynamic-range-quantization=true ops-blocklist=tfl.conv_2d" | FileCheck --check-prefix=BLOCK %s
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 21:09:00 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

            float_op->setAttr(kDebugModeOpFloatAttrName, rewriter.getUnitAttr());
            RewireFloatModelBackbone(quantizing_op, float_op);
            return success();
          }
    
          // Blocklist op is checked in advance for non-dynamic range quantization
          // case.
          if (!quant_params_.quant_spec.weight_quantization &&
              (ops_blocklist.find(quantizing_op->getName().getStringRef().str()) !=
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top