Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for 16x16 (0.04 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/VersionConflictResolutionDetails.java

        }
    
        public Collection<? extends ComponentResolutionState> getCandidates() {
            return candidates;
        }
    
        @Override
        public String getDisplayName() {
            StringBuilder sb = new StringBuilder(16 + 16 * candidates.size());
            sb.append("between versions ");
            Iterator<? extends ComponentResolutionState> it = candidates.iterator();
            boolean more = false;
            while (it.hasNext()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

          /*diag_handler=*/[](const tfrt::DecodedDiagnostic&
                                  diag) { LOG(ERROR) << diag.message(); },
          tfrt::CreateMallocAllocator(),
          tfrt::CreateMultiThreadedWorkQueue(16, 16));
      CHECK(corert);
      auto fallback_op_handler = tensorflow::tfd::CreateKernelFallbackOpHandler(
          corert->get(), corert->get()->GetHostContext()->GetHostDeviceRef());
      CHECK(fallback_op_handler);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. src/sync/atomic/atomic_test.go

    		new := uint32(seed+i)<<16 | uint32(seed+i)<<16>>16
    		old := uint32(addr.Swap(int32(new)))
    		if old>>16 != old<<16>>16 {
    			panic(fmt.Sprintf("SwapInt32 is not atomic: %v", old))
    		}
    	}
    }
    
    func hammerSwapUint32(addr *uint32, count int) {
    	seed := int(uintptr(unsafe.Pointer(&count)))
    	for i := 0; i < count; i++ {
    		new := uint32(seed+i)<<16 | uint32(seed+i)<<16>>16
    		old := SwapUint32(addr, new)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  4. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

        # visible in the log viewer
    
        # Json Log Example:
        # {"log":"[info:2016-02-16T16:04:05.930-08:00] Some log text here\n","stream":"stdout","time":"2016-02-17T00:04:05.931087621Z"}
        # CRI Log Example:
        # 2016-02-17T00:04:05.931087621Z stdout F [info:2016-02-16T16:04:05.930-08:00] Some log text here
        <source>
          @type tail
          path /var/log/containers/*.log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  5. src/runtime/sys_plan9_amd64.s

    // Grab error string due to a syscall made
    // in entersyscall mode, without going
    // through the allocator (issue 4994).
    // See ../syscall/asm_plan9_amd64.s:/·Syscall/
    TEXT runtime·errstr(SB),NOSPLIT,$16-16
    	get_tls(AX)
    	MOVQ	g(AX), BX
    	MOVQ	g_m(BX), BX
    	MOVQ	(m_mOS+mOS_errstr)(BX), CX
    	MOVQ	CX, 0(SP)
    	MOVQ	$ERRMAX, 8(SP)
    	CALL	errstr<>(SB)
    	CALL	runtime·findnull(SB)
    	MOVQ	8(SP), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 16:41:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ErrorParsingTest.kt

                        message = Unparsable value argument: "("plugin-id-1"". Expecting ')',
                        potentialElementSource = indexes: 2..16, line/column: 1/3..1/17, file: test,
                        erroneousSource = indexes: 16..16, line/column: 1/17..1/17, file: test
                    )
                )
                ErroneousStatement (
                    ParsingError(
                        message = Expecting an element,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 09:41:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

        # monitored resource to ingest logs against.
    
        # Json Log Example:
        # {"log":"[info:2016-02-16T16:04:05.930-08:00] Some log text here\n","stream":"stdout","time":"2016-02-17T00:04:05.931087621Z"}
        # CRI Log Example:
        # 2016-02-17T00:04:05.931087621Z stdout F [info:2016-02-16T16:04:05.930-08:00] Some log text here
        <source>
          @type tail
          path /var/log/containers/*.log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  8. src/net/netip/slow_test.go

    // two-byte value.
    func parseWord(s string) (byte, byte, error) {
    	if len(s) > 4 {
    		return 0, 0, fmt.Errorf("parseWord(%q): invalid word", s)
    	}
    	ret, err := strconv.ParseUint(s, 16, 16)
    	if err != nil {
    		return 0, 0, err
    	}
    	return uint8(ret >> 8), uint8(ret), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/UnsignedIntegerTest.java

              UnsignedInteger.fromIntBits(a),
              UnsignedInteger.valueOf(value),
              UnsignedInteger.valueOf(Long.toString(value)),
              UnsignedInteger.valueOf(Long.toString(value, 16), 16));
        }
        equalsTester.testEquals();
      }
    
      public void testIntValue() {
        for (int a : TEST_INTS) {
          UnsignedInteger aUnsigned = UnsignedInteger.fromIntBits(a);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/UnsignedLongTest.java

          equalsTester.addEqualityGroup(
              UnsignedLong.fromLongBits(a),
              UnsignedLong.valueOf(big),
              UnsignedLong.valueOf(big.toString()),
              UnsignedLong.valueOf(big.toString(16), 16));
        }
        equalsTester.testEquals();
      }
    
      public void testIntValue() {
        for (long a : TEST_LONGS) {
          UnsignedLong aUnsigned = UnsignedLong.fromLongBits(a);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top