Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for x1 (0.02 sec)

  1. src/go/scanner/scanner.go

    func invalidSep(x string) int {
    	x1 := ' ' // prefix char, we only care if it's 'x'
    	d := '.'  // digit, one of '_', '0' (a digit), or '.' (anything else)
    	i := 0
    
    	// a prefix counts as a digit
    	if len(x) >= 2 && x[0] == '0' {
    		x1 = lower(rune(x[1]))
    		if x1 == 'x' || x1 == 'o' || x1 == 'b' {
    			d = '0'
    			i = 2
    		}
    	}
    
    	// mantissa and exponent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        // We also want to adjust vb.baseVal.x so that u.x remains at same
        // screen X coordinate.  In other words, want to change it from x1 to x2
        // so that:
        //     (u.x - x1) / w1 = (u.x - x2) / w2
        // Simplifying that, we get
        //     (u.x - x1) * (w2 / w1) = u.x - x2
        //     x2 = u.x - (u.x - x1) * (w2 / w1)
        vb.baseVal.x = u.x - (u.x - vb.baseVal.x) * (w2 / w1);
        vb.baseVal.y = u.y - (u.y - vb.baseVal.y) * (h2 / h1);
      }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. src/runtime/runtime1.go

    		h     uint64
    		i, i1 float32
    		j, j1 float64
    		k     unsafe.Pointer
    		l     *uint16
    		m     [4]byte
    	)
    	type x1t struct {
    		x uint8
    	}
    	type y1t struct {
    		x1 x1t
    		y  uint8
    	}
    	var x1 x1t
    	var y1 y1t
    
    	if unsafe.Sizeof(a) != 1 {
    		throw("bad a")
    	}
    	if unsafe.Sizeof(b) != 1 {
    		throw("bad b")
    	}
    	if unsafe.Sizeof(c) != 2 {
    		throw("bad c")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

          dot.getPrecisionConfigAttr());
      return success();
    }
    
    // Convert:
    //   %y0 = dot_general(%x0, %w)
    //   %y1 = dot_general(%x1, %w)
    //   ...
    //   concatenate(%y0, %y1, ...)
    // To:
    //   %x = concatenate(%x0, %x1, ...)
    //   dot_general(%x, %w)
    LogicalResult LiftDotConcatLHS(mhlo::ConcatenateOp concat,
                                   PatternRewriter &rewriter) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. src/go/types/builtins.go

    			check.dump("%v: trace() without arguments", call.Pos())
    			x.mode = novalue
    			break
    		}
    		var t operand
    		x1 := x
    		for _, arg := range argList {
    			check.rawExpr(nil, x1, arg, nil, false) // permit trace for types, e.g.: new(trace(T))
    			check.dump("%v: %s", x1.Pos(), x1)
    			x1 = &t // use incoming x only for first argument
    		}
    		if x.mode == invalid {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Throwables.java

       *     null}.
       */
      @Deprecated
      @J2ktIncompatible
      @GwtIncompatible // propagateIfInstanceOf
      public static <X1 extends Throwable, X2 extends Throwable> void propagateIfPossible(
          @CheckForNull Throwable throwable, Class<X1> declaredType1, Class<X2> declaredType2)
          throws X1, X2 {
        checkNotNull(declaredType2);
        propagateIfInstanceOf(throwable, declaredType1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		// arg1 = mem
    		// auxint = offset into duffzero code to start executing
    		// X1 (link register) changed because of function call
    		// returns mem
    		{
    			name:      "DUFFZERO",
    			aux:       "Int64",
    			argLength: 2,
    			reg: regInfo{
    				inputs:   []regMask{regNamed["X25"]},
    				clobbers: regNamed["X1"] | regNamed["X25"],
    			},
    			typ:            "Mem",
    			faultOnNilArg0: true,
    		},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Throwables.java

       *     null}.
       */
      @Deprecated
      @J2ktIncompatible
      @GwtIncompatible // propagateIfInstanceOf
      public static <X1 extends Throwable, X2 extends Throwable> void propagateIfPossible(
          @CheckForNull Throwable throwable, Class<X1> declaredType1, Class<X2> declaredType2)
          throws X1, X2 {
        checkNotNull(declaredType2);
        propagateIfInstanceOf(throwable, declaredType1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

         * 1.0.0.RC1 &lt; 1.0.0-RC2 and more generally:
         * 1.0.0.X1 &lt; 1.0.0-X2 for any string X
         */
        @Test
        void testMng7644() {
            for (String x : new String[] {"abc", "alpha", "a", "beta", "b", "def", "milestone", "m", "RC"}) {
                // 1.0.0.X1 < 1.0.0-X2 for any string x
                checkVersionsOrder("1.0.0." + x + "1", "1.0.0-" + x + "2");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:39:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/partially_decluster_pass.cc

    }
    
    // Declusters nodes to reduce the number of times we think we need to recompile
    // a TensorFlow graph.
    //
    // Abstractly, if we have a cluster of this form:
    //
    //   x0 = arg0
    //   x1 = arg1
    //     ...
    //   shape = f(x0, x1, ...)
    //   result = Reshape(input=<something>, new_shape=shape)
    //
    // then pulling `f` out of the cluster may reduce the number of compilations and
    // will never increase the number of compilations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top