Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 75 for Flip (0.25 sec)

  1. guava/src/com/google/common/base/CharMatcher.java

          return precomputedPositive(totalCharacters, table, toString());
        } else {
          // TODO(lowasser): is it worth it to worry about the last character of large matchers?
          table.flip(Character.MIN_VALUE, Character.MAX_VALUE + 1);
          int negatedCharacters = DISTINCT_CHARS - totalCharacters;
          String suffix = ".negate()";
          final String description = toString();
          String negatedDescription =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/ByteStreams.java

          return position - oldPosition;
        }
    
        ByteBuffer buf = ByteBuffer.wrap(createBuffer());
        long total = 0;
        while (from.read(buf) != -1) {
          Java8Compatibility.flip(buf);
          while (buf.hasRemaining()) {
            total += to.write(buf);
          }
          Java8Compatibility.clear(buf);
        }
        return total;
      }
    
      /** Max array length on JVM. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/ByteStreams.java

          return position - oldPosition;
        }
    
        ByteBuffer buf = ByteBuffer.wrap(createBuffer());
        long total = 0;
        while (from.read(buf) != -1) {
          Java8Compatibility.flip(buf);
          while (buf.hasRemaining()) {
            total += to.write(buf);
          }
          Java8Compatibility.clear(buf);
        }
        return total;
      }
    
      /** Max array length on JVM. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_sharding_identification.mlir

      %0 = "tf.XlaSharding"(%arg0) { _XlaSharding = "\01\02\03"} : (tensor<*xi32>) -> tensor<*xi32>
      %1 = "tf.XlaSharding"(%arg1) { _XlaSharding = "\04\05\06"} : (tensor<*xi32>) -> tensor<*xi32>
      // flip order
      %2 = "tf.A"(%1) : (tensor<*xi32>) -> (tensor<*xi32>)
      %3 = "tf.B"(%0) : (tensor<*xi32>) -> (tensor<*xi32>)
      func.return %2, %3 : tensor<*xi32>, tensor<*xi32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 19:07:52 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  5. src/crypto/sha256/sha256block_amd64.s

    	VMOVDQU (0*32)(INP), XTMP0
    	VMOVDQU (1*32)(INP), XTMP1
    	VMOVDQU (2*32)(INP), XTMP2
    	VMOVDQU (3*32)(INP), XTMP3
    
    	VMOVDQU flip_mask<>(SB), BYTE_FLIP_MASK
    
    	// Apply Byte Flip Mask: LE -> BE
    	VPSHUFB BYTE_FLIP_MASK, XTMP0, XTMP0
    	VPSHUFB BYTE_FLIP_MASK, XTMP1, XTMP1
    	VPSHUFB BYTE_FLIP_MASK, XTMP2, XTMP2
    	VPSHUFB BYTE_FLIP_MASK, XTMP3, XTMP3
    
    	// Transpose data into high/low parts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  6. src/runtime/asm_386.s

    	MOVL	BX, (g_stack+stack_lo)(BP)
    	MOVL	SP, (g_stack+stack_hi)(BP)
    
    	// find out information about the processor we're on
    	// first see if CPUID instruction is supported.
    	PUSHFL
    	PUSHFL
    	XORL	$(1<<21), 0(SP) // flip ID bit
    	POPFL
    	PUSHFL
    	POPL	AX
    	XORL	0(SP), AX
    	POPFL	// restore EFLAGS
    	TESTL	$(1<<21), AX
    	JNE 	has_cpuid
    
    bad_proc: // show that the program requires MMX.
    	MOVL	$2, 0(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Let your team know they can opt-in by, for example, enabling the configuration cache on their IDE run configurations for the supported workflow.
    +
    Later on, when more workflows are working, you can flip this around.
    Enable the configuration cache by default, configure CI to disable it, and if required communicate the unsupported workflow(s) for which the configuration cache needs to be disabled.
    
    [[config_cache:adoption:reacting]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue60542.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func Clip[S ~[]E, E any](s S) S {
    	return s
    }
    
    var versions func()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 21:28:05 UTC 2024
    - 331 bytes
    - Viewed (0)
  9. src/slices/example_test.go

    	// Output:
    	// 4
    	// [0 42 -10 8]
    	// 4
    	// 8
    }
    
    func ExampleClip() {
    	a := [...]int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
    	s := a[:4:10]
    	clip := slices.Clip(s)
    	fmt.Println(cap(s))
    	fmt.Println(clip)
    	fmt.Println(len(clip))
    	fmt.Println(cap(clip))
    	// Output:
    	// 10
    	// [0 1 2 3]
    	// 4
    	// 4
    }
    
    func ExampleConcat() {
    	s1 := []int{0, 1, 2, 3}
    	s2 := []int{4, 5, 6}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/utils/math_utils.cc

        return failure();
      }
      const double fraction = std::frexp(double_multiplier, &shift);
      quantized_fraction = static_cast<int32_t>(std::round(fraction * (1L << 15)));
      // Clip extreme values.  These are more than enough to overflow int8, the
      // storage type for quantized values, and the final values will be clamped
      // no matter what.
      if (quantized_fraction == (1L << 15)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top