Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 858 for wall (0.05 sec)

  1. src/net/ipsock.go

    // routed to an IPv6 socket - two separate sockets are required if
    // both address families are to be supported.
    // See inet6(4) for details.
    
    type ipStackCapabilities struct {
    	sync.Once             // guards following
    	ipv4Enabled           bool
    	ipv6Enabled           bool
    	ipv4MappedIPv6Enabled bool
    }
    
    var ipStackCaps ipStackCapabilities
    
    // supportsIPv4 reports whether the platform supports IPv4 networking
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/analyze_variables.cc

                       TF::LookupTableSizeV2Op>(op);
    }
    
    // Returns true if 'op' is TF/TFLite control flow op that can accept resource
    // type. Usually these ops are just pass through, they call another subgraph and
    // pass the operands to.
    bool IsSupportedTFLiteControlFlow(Operation* op) {
      return llvm::isa<TFL::WhileOp, TFL::IfOp, TFL::CallOnceOp>(op);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/unwrap_xla_call_module_op.cc

    #define GEN_PASS_DEF_UNWRAPXLACALLMODULEOPPASS
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    namespace {
    
    // Unwraps XlaCallModule ops without quantizable trait that call function with
    // '_from_xla_call_module' trait.
    class UnwrapXlaCallModuleOpPass
        : public impl::UnwrapXlaCallModuleOpPassBase<UnwrapXlaCallModuleOpPass> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/LittleEndianByteArray.java

            | ((source[offset + 3] & 0xFF) << 24);
      }
    
      /**
       * Indicates that the loading of Unsafe was successful and the load and store operations will be
       * very efficient. May be useful for calling code to fall back on an alternative implementation
       * that is slower than Unsafe.get/store but faster than the pure-Java mask-and-shift.
       */
      static boolean usingUnsafe() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/LittleEndianByteArray.java

            | ((source[offset + 3] & 0xFF) << 24);
      }
    
      /**
       * Indicates that the loading of Unsafe was successful and the load and store operations will be
       * very efficient. May be useful for calling code to fall back on an alternative implementation
       * that is slower than Unsafe.get/store but faster than the pure-Java mask-and-shift.
       */
      static boolean usingUnsafe() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_openbsd_ppc64.s

    	CALL	libc_connect(SB)
    	RET
    TEXT ·libc_socket_trampoline(SB),NOSPLIT,$0-0
    	CALL	libc_socket(SB)
    	RET
    TEXT ·libc_getsockopt_trampoline(SB),NOSPLIT,$0-0
    	CALL	libc_getsockopt(SB)
    	RET
    TEXT ·libc_setsockopt_trampoline(SB),NOSPLIT,$0-0
    	CALL	libc_setsockopt(SB)
    	RET
    TEXT ·libc_getpeername_trampoline(SB),NOSPLIT,$0-0
    	CALL	libc_getpeername(SB)
    	RET
    TEXT ·libc_getsockname_trampoline(SB),NOSPLIT,$0-0
    	CALL	libc_getsockname(SB)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/crypto/aes/asm_amd64.s

    	AESKEYGENASSIST $0x01, X2, X1
    	CALL _expand_key_192a<>(SB)
    	AESKEYGENASSIST $0x02, X2, X1
    	CALL _expand_key_192b<>(SB)
    	AESKEYGENASSIST $0x04, X2, X1
    	CALL _expand_key_192a<>(SB)
    	AESKEYGENASSIST $0x08, X2, X1
    	CALL _expand_key_192b<>(SB)
    	AESKEYGENASSIST $0x10, X2, X1
    	CALL _expand_key_192a<>(SB)
    	AESKEYGENASSIST $0x20, X2, X1
    	CALL _expand_key_192b<>(SB)
    	AESKEYGENASSIST $0x40, X2, X1
    	CALL _expand_key_192a<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/LoggingEventListener.kt

        call: Call,
        connection: Connection,
      ) {
        logWithTime("connectionReleased")
      }
    
      override fun requestHeadersStart(call: Call) {
        logWithTime("requestHeadersStart")
      }
    
      override fun requestHeadersEnd(
        call: Call,
        request: Request,
      ) {
        logWithTime("requestHeadersEnd")
      }
    
      override fun requestBodyStart(call: Call) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 11:07:32 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. pkg/kubelet/pod/testing/mock_manager.go

    	return m.recorder
    }
    
    // AddPod mocks base method.
    func (m *MockManager) AddPod(pod *v1.Pod) {
    	m.ctrl.T.Helper()
    	m.ctrl.Call(m, "AddPod", pod)
    }
    
    // AddPod indicates an expected call of AddPod.
    func (mr *MockManagerMockRecorder) AddPod(pod any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AddPod", reflect.TypeOf((*MockManager)(nil).AddPod), pod)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/connection/CallConnectionUser.kt

        call.plansToCancel -= connectPlan
      }
    
      override fun updateRouteDatabaseAfterSuccess(route: Route) {
        call.client.routeDatabase.connected(route)
      }
    
      override fun connectStart(route: Route) {
        eventListener.connectStart(call, route.socketAddress, route.proxy)
        poolConnectionListener.connectStart(route, call)
      }
    
      override fun connectFailed(
        route: Route,
        protocol: Protocol?,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top