Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for Captured (0.25 sec)

  1. src/internal/trace/traceviewer/static/webcomponents.min.js

    ar m=0,w=i.length;m<w;m++){var v=i[m];if(v.removed)f=!0;else if(!(v.type!==h||!v.capture&&n===oe||v.capture&&n===ae))try{if("function"==typeof v.handler?v.handler.call(e,t):v.handler.handleEvent(t),ee.get(t))return!1}catch(g){P||(P=g)}}if(i.depth--,f&&0===i.depth){var b=i.slice();i.length=0;for(var m=0;m<b.length;m++)b[m].removed||i.push(b[m])}return!Q.get(t)}function b(e,t,n){this.type=e,this.handler=t,this.capture=Boolean(n)}function y(e,t){if(!(e instanceof se))return V(T(se,"Event",e,t));var...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    ,el:function(){return this.dropbar},handler:function(){var t=this.getActive();t&&!this.dropdowns.some(function(t){return Mt(t,":hover")})&&t.hide()}},{name:"beforeshow",capture:!0,filter:function(){return this.dropbar},handler:function(){this.dropbar.parentNode||xe(this.dropbarAnchor||this.$el,this.dropbar)}},{name:"show",capture:!0,filter:function(){return this.dropbar},handler:function(t,e){var i=e.$el,n=e.dir;this.clsDrop&&ze(i,this.clsDrop+"-dropbar"),"bottom"===n&&this.transitionTo(i.offset...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	Left   int32
    	Top    int32
    	Right  int32
    	Bottom int32
    }
    
    type GUIThreadInfo struct {
    	Size        uint32
    	Flags       uint32
    	Active      HWND
    	Focus       HWND
    	Capture     HWND
    	MenuOwner   HWND
    	MoveSize    HWND
    	CaretHandle HWND
    	CaretRect   Rect
    }
    
    const (
    	DWMWA_NCRENDERING_ENABLED            = 1
    	DWMWA_NCRENDERING_POLICY             = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

          client.newCall(request).execute()
        }
      }
    
      @Test
      fun interceptorGetsHttp2() {
        platform.assumeHttp2Support()
        enableProtocol(Protocol.HTTP_2)
    
        // Capture the protocol as it is observed by the interceptor.
        val protocolRef = AtomicReference<Protocol?>()
        val interceptor =
          Interceptor { chain: Interceptor.Chain ->
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    		stoppingCPUTime:  stoppingCPUTime,
    	}
    }
    
    // reason is the same STW reason passed to stopTheWorld. start is the start
    // time returned by stopTheWorld.
    //
    // now is the current time; prefer to pass 0 to capture a fresh timestamp.
    //
    // stattTheWorldWithSema returns now.
    func startTheWorldWithSema(now int64, w worldStop) int64 {
    	assertWorldStopped()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top