Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for deltaY (0.22 sec)

  1. src/runtime/netpoll_aix.go

    // Returns list of goroutines that become runnable.
    // delay < 0: blocks indefinitely
    // delay == 0: does not block, just polls
    // delay > 0: block for up to that many nanoseconds
    //
    //go:nowritebarrierrec
    func netpoll(delay int64) (gList, int32) {
    	var timeout uintptr
    	if delay < 0 {
    		timeout = ^uintptr(0)
    	} else if delay == 0 {
    		// TODO: call poll with timeout == 0
    		return gList{}, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    		evt.preventDefault();
    
    	evt.returnValue = false;
    
    	var svgDoc = evt.target.ownerDocument;
    
    	var delta;
    
    	if(evt.wheelDelta)
    		delta = evt.wheelDelta / 360; // Chrome/Safari
    	else
    		delta = evt.detail / -9; // Mozilla
    
    	var z = Math.pow(1 + zoomScale, delta);
    
    	var g = getRoot(svgDoc);
    	
    	var p = getEventPoint(evt);
    
    	p = p.matrixTransform(g.getCTM().inverse());
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_mipsx.s

    TEXT ·Load8(SB),NOSPLIT,$0-5
    	MOVW	ptr+0(FP), R1
    	SYNC
    	MOVB	0(R1), R1
    	SYNC
    	MOVB	R1, ret+4(FP)
    	RET
    
    // uint32 Xadd(uint32 volatile *val, int32 delta)
    // Atomically:
    //	*val += delta;
    //	return *val;
    TEXT ·Xadd(SB),NOSPLIT,$0-12
    	MOVW	ptr+0(FP), R2
    	MOVW	delta+4(FP), R3
    	SYNC
    try_xadd:
    	LL	(R2), R1	// R1 = *R2
    	ADDU	R1, R3, R4
    	MOVW	R4, R1
    	SC	R4, (R2)	// *R2 = R4
    	BEQ	R4, try_xadd
    	SYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf_test.cc

      TF_EXPECT_OK(
          RunSessionTf2xlaClusteringBridge(*mlir_module_,
                                           /*is_in_fallback_enabled_mode=*/false));
      EXPECT_EQ(compilation_status.Delta(mlir::TF::kMlirPh1BridgeCounterReplicated,
                                         mlir::TF::kMlirPh1BridgeCounterV1,
                                         mlir::TF::kMlirPh1BridgeCounterTpu,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:44:37 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor_test.cc

      EXPECT_EQ(compilation_status.Delta("success"), 1);
    }
    
    TEST_F(TensorflowDialectToExecutorTest, ErrorsWhenCannotConvert) {
      CellReader<int64_t> compilation_status(kCompilationStreamz);
    
      TF_ASSERT_OK(CreateMlirModule("invalid_executor.mlir"));
    
      EXPECT_FALSE(ExportFromTensorflowDialectToExecutor(*mlir_module_).ok());
    
      EXPECT_EQ(compilation_status.Delta("failed"), 1);
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:08:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. internal/config/scanner/scanner.go

    	delay := env.Get(EnvDelayLegacy, "")
    	if delay == "" {
    		delay = env.Get(EnvDelay, kvs.GetWithDefault(Delay, DefaultKVS))
    	}
    	cfg.Delay, err = strconv.ParseFloat(delay, 64)
    	if err != nil {
    		return err
    	}
    	maxWait := env.Get(EnvMaxWaitLegacy, "")
    	if maxWait == "" {
    		maxWait = env.Get(EnvMaxWait, kvs.GetWithDefault(MaxWait, DefaultKVS))
    	}
    	cfg.MaxWait, err = time.ParseDuration(maxWait)
    	if err != nil {
    		return err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pilot/pkg/xds/workload.go

    	_ model.XdsDeltaResourceGenerator = &WorkloadGenerator{}
    )
    
    // GenerateDeltas computes Workload resources. This is design to be highly optimized to delta updates,
    // and supports *on-demand* client usage. A client can subscribe with a wildcard subscription and get all
    // resources (with delta updates), or on-demand and only get responses for specifically subscribed resources.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ManagedScheduledExecutorImpl.java

        }
    
        @Override
        public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) {
            return delegate.schedule(trackedCommand(command), delay, unit);
        }
    
        @Override
        public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) {
            return delegate.schedule(trackedCommand(callable), delay, unit);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. src/sync/mutex.go

    				}
    				delta := int32(mutexLocked - 1<<mutexWaiterShift)
    				if !starving || old>>mutexWaiterShift == 1 {
    					// Exit starvation mode.
    					// Critical to do it here and consider wait time.
    					// Starvation mode is so inefficient, that two goroutines
    					// can go lock-step infinitely once they switch mutex
    					// to starvation mode.
    					delta -= mutexStarving
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. tests/integration/security/remote_jwks/testdata/requestauthn-with-se-timeout.yaml.tmpl

    kind: RequestAuthentication
    metadata:
      name: request-authn
    spec:
      selector:
        matchLabels:
          app: {{ .dst }}
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "http://example.com:8000/jwks?delay={{ .delay }}"
        outputPayloadToHeader: "x-test-payload"
        forwardOriginalToken: true
        timeout: {{ .timeout }}
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: jwt-server-se
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 675 bytes
    - Viewed (0)
Back to top