Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Captured (0.29 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *   <li>Each other step is derived from one or more input steps. At each step, zero or more objects
     *       can be captured for later closing.
     *   <li>There is one last step (the root of the tree), from which you can extract the final result
     *       of the computation. After that result is available (or the computation fails), all objects
     *       captured by any of the steps in the pipeline are closed.
     * </ol>
     *
     * <h3>Starting a pipeline</h3>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def ClusterConstantSinkingPass : Pass<"tf-device-constant-sinking", "mlir::func::FuncOp"> {
      let summary = "Sinks constants implicitly captured in a tf_device.cluster region.";
    
      let description = [{
        This pass sinks implicitly captured constants (`tf.Const` ops) used by and into
        a `tf_device.cluster` region. Performing this prior to outlining will reduce the
        number of arguments of the outlined function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    		}
    
    		metrics = make([]MetricV2, 0, 50)
    		dataUsageInfo, err := loadDataUsageFromBackend(ctx, objLayer)
    		if err != nil {
    			metricsLogIf(ctx, err)
    			return
    		}
    
    		// data usage has not captured any data yet.
    		if dataUsageInfo.LastUpdate.IsZero() {
    			return
    		}
    
    		metrics = append(metrics, MetricV2{
    			Description: getUsageLastScanActivityMD(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // state, Y is the number of tensor components that represent the input
      // elements, and Z is the number of tensor components that represent any
      // captured arguments. Y is determined by the output_shapes of an op that
      // defines the first operand of `op`.
    
      // TODO(jpienaar): Avoid this lookup.
      auto module = op->getParentOfType<ModuleOp>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    			expected: []string{ipv6},
    			protocol: "udp",
    		},
    		{
    			// We should only capture traffic to servers in /etc/resolv.conf nameservers
    			// This checks we do not capture traffic to other servers.
    			// This is important for cases like app -> istio dns server -> dnsmasq -> upstream
    			// If we captured all DNS traffic, we would loop dnsmasq traffic back to our server.
    			name:     "tcp localhost server",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      LogicalResult matchAndRewrite(WhileRegionOp while_op,
                                    PatternRewriter &rewriter) const override {
        // Remove any extern values that are explicitly captured and returned. Also
        // replace values that simply passthrough the body with extern values. The
        // block arguments of body and while match and so the corresponding cond
        // argument can be easily found.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    func (sp *SizeofPack) goString(indent int, field string) string {
    	return fmt.Sprintf("%*s%sSizeofPack: Pack: %p", indent, "", field, sp.Pack)
    }
    
    // SizeofArgs is the size of a captured template parameter pack from
    // an alias template.
    type SizeofArgs struct {
    	Args []AST
    }
    
    func (sa *SizeofArgs) print(ps *printState) {
    	c := 0
    	for _, a := range sa.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    				// Note that this test simulates a net-new pod being discovered during HandlePodCleanups that was not
    				// delivered to the pod worker via HandlePodAdditions - there is no *known* scenario that can happen, but
    				// we want to capture it in the metric. The more likely scenario is that a static pod with a predefined
    				// UID is updated, which causes pod config to deliver DELETE -> ADD while the old pod is still shutting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one_test.go

    					},
    				},
    			},
    		),
    		WithFrameworkOutOfTreeRegistry(frameworkruntime.Registry{
    			"FakeNodeSelector": newFakeNodeSelector,
    		}),
    	)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Capture the bindings and events' controllers.
    	var wg sync.WaitGroup
    	wg.Add(2 * len(pods))
    	bindings := make(map[string]string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      // Lowers 2D upscaling logic to a single TFL::ResizeNearestNeighor op.
      //
      // To optimize JAX resize implementation, especially for 2D upscaling, this
      // pattern matching logic captures the following pattern to replace with the
      // single TFL::resize_nearest_neighbor op instance as a fast fused op
      // available in TFLite.
      //
      // - tfl.gather_nd -> tfl.transpose -> tfl.gather_nd -> tfl.transpose
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top