Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 144 for untracked (0.15 sec)

  1. src/net/http/httptest/server.go

    		case http.StateNew:
    			if _, exists := s.conns[c]; exists {
    				panic("invalid state transition")
    			}
    			if s.conns == nil {
    				s.conns = make(map[net.Conn]http.ConnState)
    			}
    			// Add c to the set of tracked conns and increment it to the
    			// waitgroup.
    			s.wg.Add(1)
    			s.conns[c] = cs
    			if s.closed {
    				// Probably just a socket-late-binding dial from
    				// the default transport that lost the race (and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      // `per_resource_access_info_` and `op_to_resource_ids_`.
      void UpdateAccess(ResourceId resource_id, Operation* op, bool read_only);
    
      // Returns true iff the last unknown resource access is already indirectly
      // tracked by a previous `resource` access. `read_only` specifies the type of
      // access considered.
      bool IsUnknownAccessIndirectlyTrackedByResource(ResourceId resource,
                                                      bool read_only);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        auto out = op->getResult(0);
    
        // Calculates symbolic broadcast shape that is only used in types.
        SmallVector<int64_t, 4> symbolic_broadcast_shape;
        // Matches fail when lhs or rhs is unranked tensor.
        // TODO(b/176202543): Support unranked tensor.
        if (!mlir::cast<ShapedType>(lhs.getType()).hasRank() ||
            !mlir::cast<ShapedType>(rhs.getType()).hasRank()) {
          return failure();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

         */
        @Internal("already tracked as part of the Sign task")
        public Signatory getSignatory() {
            return signatureSpec.getSignatory();
        }
    
        /**
         * The file representation type of the signature.
         *
         * @return The signature type. May be {@code null} if unknown at this time.
         */
        @Internal("already tracked as part of the Sign task")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

      quantization_config.mutable_static_range_ptq_preset()
          ->set_enable_per_channel_quantized_weight(
              quantization_options.enable_per_channel_quantization());
      // When targeting server TPUs quantized types should be unpacked into
      // integer ops.
      quantization_config.mutable_pipeline_config()->set_unpack_quantized_types(
          true);
      *quantization_config.mutable_debugger_config() =
          quantization_options.debugger_config();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. maven-core/plugin-manager.txt

     *
     * - nexus - the plugin class - UI to contribute - what JS to hook into the UI - what resources to
     * load into the UI - having packed or unpacked plugins, and positioning resources if necessary -
     * maven can work out of the classloader, nexus plugins probably couldn't give the js and image
     * resources
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  7. src/runtime/metrics.go

    func initMetrics() {
    	if metricsInit {
    		return
    	}
    
    	sizeClassBuckets = make([]float64, _NumSizeClasses, _NumSizeClasses+1)
    	// Skip size class 0 which is a stand-in for large objects, but large
    	// objects are tracked separately (and they actually get placed in
    	// the last bucket, not the first).
    	sizeClassBuckets[0] = 1 // The smallest allocation is 1 byte in size.
    	for i := 1; i < _NumSizeClasses; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            _ * visitor.visitNested() >> true
            1 * visitor.visitInputProperty('nested.name$0', _, false)
            1 * visitor.visitInputProperty('nested.name$1', _, false)
        }
    
        def "providers are unpacked"() {
            def task = project.tasks.create("myTask", TaskWithNestedObject)
            task.nested = project.provider { new NestedBean() }
    
            when:
            visitProperties(task)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

    namespace mlir {
    namespace TFR {
    
    namespace {
    
    // This pattern is to rewrite the "tfr.call" op and the "tfr.cast" ops on the
    // operands by a TF op with "tfr.cast" ops on the results. The result type of
    // the new TF op is an unranked tensor with element type derived.
    class RewriteTFRCallOp : public OpRewritePattern<CallOp> {
      using OpRewritePattern<CallOp>::OpRewritePattern;
    
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrTask.java

                this.sourceSetDirectories = ((SourceDirectorySet) source).getSourceDirectories();
            }
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        @Internal("tracked via stableSources")
        public FileTree getSource() {
            return super.getSource();
        }
    
        /**
         * The sources for incremental change detection.
         *
         * @since 6.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top