Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 432 for inserting (0.27 sec)

  1. pkg/scheduler/apis/config/v1/default_plugins.go

    		// if the user is manually disabling any (or all, with "*") default plugins for an extension point,
    		// we need to track that so that the MultiPoint extension logic in the framework can know to skip
    		// inserting unspecified default plugins to this point.
    		disabled = append(disabled, v1.Plugin{Name: disabledPlugin.Name})
    		disabledPlugins.Insert(disabledPlugin.Name)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/crypto/x509/platform_test.go

    // the path below, into your trust store. This root is constrained such that it
    // should not be dangerous to local developers to trust, but care should be
    // taken when inserting it into the trust store not to give it increased
    // permissions.
    //
    // On macOS the certificate can be further constrained to only be valid for
    // 'SSL' in the certificate properties pane of the 'Keychain Access' program.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 17:18:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/DfsImpl.java

                            entry.map.put(domain, new HashMap<String, CacheEntry<DfsReferralDataInternal>>());
                            if ( log.isTraceEnabled() ) {
                                log.trace("Inserting cache entry for domain " + domain + ": " + dr);
                            }
                            dr = dr.next();
                        }
                        while ( dr != start );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

          op_to_cluster_map[&op] = &nearest_cluster;
          continue;
        }
    
        // If nearest cluster of same target can not absorb `op`, then that
        // cluster needs to be finalized by inserting into the final cluster map
        // that contains all operations in clusters.
        all_clusters[target_name].push_back(nearest_cluster);
    
        // Create a new cluster to hold op alone and update nearest_clusters.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais2.go

    	// Because j-1 is type L, inserting it into sa now will sort it correctly.
    	// But we want to distinguish a j-1 with j-2 of type L from type S.
    	// We can process the former but want to leave the latter for the caller.
    	// We record the difference by negating j-1 if it is preceded by type S.
    	// Either way, the insertion (into the text[j-1] bucket) is guaranteed to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

    // naming conflicts. But we need to rename the function calls inside the
    // stablehlo functions as well. So we first do this renaming in the stablehlo
    // module itself without inserting into the tf module.
    FailureOr<StringAttr> RenameStablehloFunctions(
        MLIRContext *context, SymbolTableCollection &symbol_tables,
        ModuleOp tf_module, ModuleOp stablehlo_module) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultMutableAttributeContainer.java

            checkInsertionAllowed(key);
            assertAttributeValueIsNotNull(provider);
            // We can only sometimes check the type of the provider ahead of time.
            // When realizing this provider and inserting its value into the container, we still
            // check the value type is appropriate. see doInsertion
            if (provider instanceof ProviderInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 20:29:26 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/default_quant_params.cc

          if (biases.find(use.getOperandNumber()) != biases.end()) return true;
        }
        return false;
      }
    
      // Uses `quant_params` to quantize `value` and inserting a pair of
      // tfl.quantize and tfl.dequantize ops for this `value`.
      void QuantizeValue(OpBuilder builder, Value value,
                         quant::QuantParams quant_params);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize_drq.cc

        // 1. Collect quantizable ops.
        if (!(getQuantizableOps(op, quantizable_ops))) {
          return failure();
        }
    
        // 2. Quantize collected ops. It is immediately quantized by inserting Q-DQ
        // pair for int8.
        if (!(quantizeOps(rewriter, op, quantizable_ops))) {
          return failure();
        }
    
        return success();
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

          yield_op->getOperands().take_front(num_loop_carried);
      args.reserve(loop_carried_yield_operands.size() + new_args.size());
      if (passthru_extra_args) {
        // Add operands of yield to the return, inserting casts if needed.
        for (auto it : llvm::zip_first(loop_carried_yield_operands, types)) {
          auto value = std::get<0>(it);
          auto type = std::get<1>(it);
          if (value.getType() == type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top