Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for captures (0.23 sec)

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

      /**
       * An object that can capture objects to be closed later, when a {@link ClosingFuture} pipeline is
       * done.
       */
      public static final class DeferredCloser {
        @RetainedWith private final CloseableList list;
    
        DeferredCloser(CloseableList list) {
          this.list = list;
        }
    
        /**
         * Captures an object to be closed when a {@link ClosingFuture} pipeline is done.
    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. 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)
  4. cmd/metrics-v2.go

    	Subsystem MetricSubsystem `json:"Subsystem"`
    	Name      MetricName      `json:"MetricName"`
    	Help      string          `json:"Help"`
    	Type      MetricTypeV2    `json:"Type"`
    }
    
    // MetricV2 captures the details for a metric
    type MetricV2 struct {
    	Description          MetricDescription `json:"Description"`
    	StaticLabels         map[string]string `json:"StaticLabels"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          // o = (i-k+1) + (s-1)(i-1) + P
          // Where the first term is the kernel applications on the input,
          // the second term is the additional applications from the stride
          // and P is a term that captures the total padding. After expanding we get
          // o = si + k - s + 2 + P
          // Here JAX sets P to cancel k-s+2, leading to the expression below
          if (output_size != input_size * stride) {
            return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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. pkg/kubelet/kubelet_node_status_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    			defer testKubelet.Cleanup()
    			kubelet := testKubelet.kubelet
    			// Ensure we capture actions on the heartbeat client only.
    			// We don't set it to nil or GetNode() doesn't read from nodeLister.
    			kubelet.kubeClient = &fake.Clientset{}
    			kubeClient := testKubelet.fakeKubeClient
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
Back to top