Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for Invert (0.15 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    .admonitionblock td.icon i {
    	align-items: center;
    	background-position-x: .5em;
    	display: inline-flex;
    	filter: invert(100%);
    	padding-left: 2em;
    	vertical-align: initial;
    	width: auto
    }
    
    .admonitionblock td.icon i::after {
    	content: attr(title);
    	filter: invert(100%);
    	font-style: normal;
    	font-weight: bold;
    	margin: -.05em;
    	padding: 0 .5em;
    	text-transform: uppercase
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse.go

    		case 'U':
    			flags |= NonGreedy
    			sawFlag = true
    
    		// Switch to negation.
    		case '-':
    			if sign < 0 {
    				break Loop
    			}
    			sign = -1
    			// Invert flags so that | above turn into &^ and vice versa.
    			// We'll invert flags again before using it below.
    			flags = ^flags
    			sawFlag = false
    
    		// End of flags, starting group or not.
    		case ':', ')':
    			if sign < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    		}
    	}
    
    	for name, stringMatch := range in.WithoutHeaders {
    		if metadataMatcher := translateMetadataMatch(name, stringMatch, useExtendedJwt); metadataMatcher != nil {
    			metadataMatcher.Invert = true
    			out.DynamicMetadata = append(out.DynamicMetadata, metadataMatcher)
    		} else {
    			matcher := translateHeaderMatch(name, stringMatch)
    			matcher.InvertMatch = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          for (auto pair : *allowlist_table) {
            allowlist.insert(pair.second.begin(), pair.second.end());
          }
        } else if (allowlist_table->contains(s)) {
          auto v = allowlist_table->at(s);
          allowlist.insert(v.begin(), v.end());
        } else if (!s.empty()) {
          // Should be a user provided TF operation.
          allowlist.insert(string(s));
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    			// this simple check is forced to work because if this is true a Phi in ind.Block must exists
    			continue
    		}
    
    		check := ind.Block.Controls[0]
    		// invert the check
    		check.Args[0], check.Args[1] = check.Args[1], check.Args[0]
    
    		// swap start and end in the loop
    		for i, v := range check.Args {
    			if v != end {
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

            if (all_in_backwards)
              to_insert.insert(input);
            else
              to_clone.insert(input);
          }
        }
      }
      backward_pass_ops.insert(to_insert.begin(), to_insert.end());
      for (TF::TPUReplicatedInputOp input : to_clone) {
        builder.setInsertionPointAfter(input);
        TF::TPUReplicatedInputOp private_input = input.clone();
        builder.insert(private_input);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        // This is a brief description of the pass.
        return "Quantize composite functions with QDQ input/outputs.";
      }
    
      void getDependentDialects(DialectRegistry& registry) const override {
        registry.insert<TF::TensorFlowDialect, quant::QuantizationDialect,
                        quantfork::QuantizationForkDialect>();
      }
    
     private:
      void runOnOperation() override;
    
      bool enable_legacy_weight_only_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            [k1: "1"]           | { it.set([:]) }           | { it.insert("k1", "1") }                              | "insert to empty"
            [k2: "2"]           | { }                       | { it.put("k1", notDefined()) ; it.insert("k2", "2") } | "put missing then append"
            [k2: "2"]           | { }                       | { it.insert("k1", notDefined()) ; it.put("k2", "2") } | "insert missing then add"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    							"maxField": "valuewithlength17",
    						}}},
    				expectError{
    					applyPatchOperation{
    						"revert minFIeld to previously ratcheted value",
    						myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    							"minField": "value",
    						}}},
    				expectError{
    					applyPatchOperation{
    						"revert maxField to previously ratcheted value",
    						myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

                             mlir::TF::_XlaRecvAtHostV2Op>(defining_op)) {
                external_values.insert(v);
              }
              continue;
            }
            auto block_arg = mlir::cast<BlockArgument>(v);
            if (block_arg.getParentRegion() == op->getParentRegion())
              external_values.insert(v);
          }
          return WalkResult::advance();
        });
      }
      return external_values;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top