Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for swipe (0.13 sec)

  1. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    on(t){if(i&&i(),ne(t)){var s=re(t),a="tagName"in t.target?t.target:t.target.parentNode;i=Gt(document,mt+" "+bt,function(t){var e=re(t),r=e.x,o=e.y;(a&&r&&100<Math.abs(s.x-r)||o&&100<Math.abs(s.y-o))&&setTimeout(function(){var t,e,i,n;Kt(a,"swipe"),Kt(a,"swipe"+(t=s.x,e=s.y,i=r,n=o,Math.abs(t-i)>=Math.abs(e-n)?0<t-i?"Left":"Right":0<e-n?"Up":"Down"))})}),"touchstart"==pt&&(Ve(document.body,"cursor","pointer"),Gt(document,mt+" "+bt,function(){return setTimeout(function(){return Ve(document.body,"c...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/bootstrap.min.js.map

    config\n  }\n\n  _handleSwipe() {\n    const absDeltax = Math.abs(this.touchDeltaX)\n\n    if (absDeltax <= SWIPE_THRESHOLD) {\n      return\n    }\n\n    const direction = absDeltax / this.touchDeltaX\n\n    // swipe left\n    if (direction > 0) {\n      this.prev()\n    }\n\n    // swipe right\n    if (direction < 0) {\n      this.next()\n    }\n  }\n\n  _addEventListeners() {\n    if (this._config.keyboard) {\n      $(this._element)\n        .on(Event.KEYDOWN, (event) => this._keydown(event))\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  3. src/main/webapp/js/bootstrap.min.js.map

    _handleSwipe() {\n    const absDeltax = Math.abs(this.touchDeltaX)\n\n    if (absDeltax <= SWIPE_THRESHOLD) {\n      return\n    }\n\n    const direction = absDeltax / this.touchDeltaX\n\n    this.touchDeltaX = 0\n\n    // swipe left\n    if (direction > 0) {\n      this.prev()\n    }\n\n    // swipe right\n    if (direction < 0) {\n      this.next()\n    }\n  }\n\n  _addEventListeners() {\n    if (this._config.keyboard) {\n      $(this._element)\n        .on(Event.KEYDOWN, (event) => this._keydown(event))\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  4. pkg/registry/core/service/strategy.go

    	// In all of these cases we only want to wipe a field if we a) know it no
    	// longer applies; b) might have initialized it automatically; c) know the
    	// user did not ALSO try to change it (in which case it should fail in
    	// validation).
    
    	// If the user is switching to a type that does not need a value in
    	// clusterIP/clusterIPs (even "None" counts as a value), we might be able
    	// to wipe some fields.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. pkg/istio-agent/health/health_check.go

    		healthy, err := w.prober.Probe(w.config.ProbeTimeout)
    		if healthy.IsHealthy() {
    			healthCheckLog.Debug("probe completed with healthy status")
    			// we were healthy, increment success counter
    			numSuccess++
    			// wipe numFail (need consecutive success)
    			numFail = 0
    			// if we reached the threshold, mark the target as healthy
    			if numSuccess == w.config.SuccessThresh && lastState != lastStateHealthy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:44 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istioctl/kube.go

    	rootCmd.SetErr(&err)
    	// istioctl will overwrite logs which we don't want.
    	// It happens to do this via PersistentPreRunE, which we can disable.
    	// We add an additional check in case someone refactors this away, to ensure we don't wipe out non-logging code.
    	if fmt.Sprintf("%p", rootCmd.PersistentPreRunE) != fmt.Sprintf("%p", cmd.ConfigureLogging) {
    		log.Fatalf("istioctl PersistentPreRunE is not configuring logging")
    	}
    	rootCmd.PersistentPreRunE = nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder_test.go

    			if !gotProperties.Equal(wantedProperties) {
    				t.Fatalf("unexpected properties, got: %s, expected: %s", gotProperties.List(), wantedProperties.List())
    			}
    
    			// wipe out TypeMeta/ObjectMeta content, with those many lines of descriptions. We trust that they match here.
    			for _, metaField := range []string{"kind", "apiVersion", "metadata"} {
    				if _, found := got.schema.Properties["kind"]; found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/status_strategy.go

    			// we might need a mechanism that is the inverse of resetFields where
    			// you specify only the fields to be kept rather than the fields to be wiped
    			// that way you could wipe everything but the status in this case.
    			fieldpath.MakePathOrDie("spec"),
    		),
    	}
    
    	return fields
    }
    
    func (a statusStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 22:16:10 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller_test.go

    		}
    
    		// create the associated service
    		// no need for assertions, just trying to ensure no errors
    		createSimpleService(t, client, "exportable-ns", "manual-export")
    
    		// assert that we didn't wipe out the pre-existing serviceexport status
    		assertServiceExportHasCondition(t, client, "exportable-ns", "manual-export",
    			mcsapi.ServiceExportValid)
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 16:02:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/database/sql/fakedb_test.go

    	s.touchMem()
    
    	if s.wait > 0 {
    		time.Sleep(s.wait)
    	}
    
    	select {
    	default:
    	case <-ctx.Done():
    		return nil, ctx.Err()
    	}
    
    	db := s.c.db
    	switch s.cmd {
    	case "WIPE":
    		db.wipe()
    		return driver.ResultNoRows, nil
    	case "USE_RAWBYTES":
    		s.c.db.useRawBytes.Store(true)
    		return driver.ResultNoRows, nil
    	case "CREATE":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top