Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 353 for deltaY (0.56 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		if xNoCond&(f.mask|condMask) != f.value || f.priority <= priority {
    			continue
    		}
    		delta := uint32(0)
    		deltaShift := uint(0)
    		for opBits := f.opBits; opBits != 0; opBits >>= 16 {
    			n := uint(opBits & 0xFF)
    			off := uint((opBits >> 8) & 0xFF)
    			delta |= (x >> off) & (1<<n - 1) << deltaShift
    			deltaShift += n
    		}
    		op := f.op + Op(delta)
    
    		// Special case: BKPT encodes with condition but cannot have one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/IntMath.java

          // http://graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax
    
          int delta = a - b; // can't overflow, since a and b are nonnegative
    
          int minDeltaOrZero = delta & (delta >> (Integer.SIZE - 1));
          // equivalent to Math.min(delta, 0)
    
          a = delta - minDeltaOrZero - minDeltaOrZero; // sets a to Math.abs(a - b)
          // a is now nonnegative and even
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. cluster/addons/addon-manager/kube-addons.sh

    # $1 filename of addon to start.
    # $2 count of tries to start the addon.
    # $3 delay in seconds between two consecutive tries
    # $4 namespace
    function start_addon() {
      local -r addon_filename=$1;
      local -r tries=$2;
      local -r delay=$3;
      local -r namespace=$4
    
      create_resource_from_string "$(cat "${addon_filename}")" "${tries}" "${delay}" "${addon_filename}" "${namespace}"
    }
    
    # $1 string with json or yaml.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/check_test.go

    		index := -1 // index of matching error
    		var delta uint
    		for _, i := range indices {
    			if d := absDiff(gotPos.Col(), errList[i].Pos.Col()); index < 0 || d < delta {
    				index, delta = i, d
    			}
    		}
    
    		// The closest column position must be within expected colDelta.
    		if delta > colDelta {
    			t.Errorf("%s: got col = %d; want %d", gotPos, gotPos.Col(), errList[index].Pos.Col())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

            private final long delay;
            private final TimeUnit unit;
    
            public DelayBeforeBuildMutator(long delay, TimeUnit unit) {
                this.unit = unit;
                this.delay = delay;
            }
    
            @Override
            public void beforeBuild(BuildContext context) {
                try {
                    unit.sleep(delay);
                } catch (InterruptedException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_volumes_test.go

    		err := kubelet.volumeManager.WaitForAttachAndMount(ctx, pod)
    		delta := time.Since(start)
    		// the standard timeout is 2 minutes, so if it's just a few seconds we know that the context timeout was the cause
    		assert.Lessf(t, delta, 10*time.Second, "WaitForAttachAndMount should timeout when the context is cancelled")
    		assert.ErrorIs(t, err, context.DeadlineExceeded)
    		cancel()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 17 16:53:28 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

              (TF_MatMulOp $a, (TF_TransposeOp $b, (TF_SubOp (TF_RangeOp
                 /*start=*/(TF_RankOp $b),
                 /*limit=*/(TF_ConstOp TFi32<0>),
                 /*delta=*/(TF_ConstOp TFi32<-1>)), (TF_ConstOp TFi32<1>))),
               $at, ConstBoolAttrTrue, $grad_a, $grad_b)>;
    
    // Matmul with transpose on a to matmul with explicit transpose op and a not
    // transposed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/obj6.go

    			continue
    
    		case APUSHL, APUSHFL:
    			deltasp += 4
    			p.Spadj = 4
    			continue
    
    		case APUSHQ, APUSHFQ:
    			deltasp += 8
    			p.Spadj = 8
    			continue
    
    		case APUSHW, APUSHFW:
    			deltasp += 2
    			p.Spadj = 2
    			continue
    
    		case APOPL, APOPFL:
    			deltasp -= 4
    			p.Spadj = -4
    			continue
    
    		case APOPQ, APOPFQ:
    			deltasp -= 8
    			p.Spadj = -8
    			continue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller_test.go

    				ClientCA:                         someRandomCAProvider,
    				RequestHeaderUsernameHeaders:     headerrequest.StaticStringSlice{"alfa", "bravo", "charlie"},
    				RequestHeaderGroupHeaders:        headerrequest.StaticStringSlice{"delta"},
    				RequestHeaderExtraHeaderPrefixes: headerrequest.StaticStringSlice{"echo", "foxtrot"},
    				RequestHeaderCA:                  anotherRandomCAProvider,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/scheduler/rate_limited_queue_test.go

    	}
    }
    
    func TestTryOrdering(t *testing.T) {
    	defer func() { now = time.Now }()
    	current := time.Unix(0, 0)
    	delay := 0
    	// the current time is incremented by 1ms every time now is invoked
    	now = func() time.Time {
    		if delay > 0 {
    			delay--
    		} else {
    			current = current.Add(time.Millisecond)
    		}
    		t.Logf("time %d", current.UnixNano())
    		return current
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 17:40:33 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top