Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 178 for ns_end (0.17 sec)

  1. tensorflow/compiler/aot/codegen.cc

      string ns_start;
      for (const string& n : opts.namespaces) {
        ns_start += absl::StrCat("namespace ", n, " {\n");
      }
      ns_start += "\n";
      string ns_end("\n");
      for (int i = opts.namespaces.size() - 1; i >= 0; --i) {
        const string& n = opts.namespaces[i];
        ns_end += absl::StrCat("}  // end namespace ", n, "\n");
      }
    
      // Generate metadata.
      const string arg_names_code =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. src/runtime/select.go

    			continue
    		case selectSend:
    			j = nsends
    			nsends++
    		case selectRecv:
    			nrecvs++
    			j = len(cases) - nrecvs
    		}
    
    		sel[j] = scase{c: rc.ch, elem: rc.val}
    		orig[j] = i
    	}
    
    	// Only a default case.
    	if nsends+nrecvs == 0 {
    		return dflt, false
    	}
    
    	// Compact sel and orig if necessary.
    	if nsends+nrecvs < len(cases) {
    		copy(sel[nsends:], sel[len(cases)-nrecvs:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.cc

        absl::Span<Predicate* const> operands, bool is_and) {
      Predicate::Kind pred_kind =
          is_and ? Predicate::Kind::kAnd : Predicate::Kind::kOr;
    
      IncrementStackDepth stack_frame(this);
      if (stack_frame.HasOverflowed()) {
        return MakeInternedAndOr(
            std::vector<Predicate*>(operands.begin(), operands.end()), pred_kind);
      }
    
      Predicate::Kind other_pred_kind =
          is_and ? Predicate::Kind::kOr : Predicate::Kind::kAnd;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/LoggingEventListener.kt

      }
    
      override fun dnsStart(
        call: Call,
        domainName: String,
      ) {
        logWithTime("dnsStart: $domainName")
      }
    
      override fun dnsEnd(
        call: Call,
        domainName: String,
        inetAddressList: List<InetAddress>,
      ) {
        logWithTime("dnsEnd: $inetAddressList")
      }
    
      override fun connectStart(
        call: Call,
        inetSocketAddress: InetSocketAddress,
        proxy: Proxy,
      ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 11:07:32 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/CallConnectionUser.kt

      }
    
      override fun dnsStart(socketHost: String) {
        eventListener.dnsStart(call, socketHost)
      }
    
      override fun dnsEnd(
        socketHost: String,
        result: List<InetAddress>,
      ) {
        eventListener.dnsEnd(call, socketHost, result)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/uniform_quantized_types_test.cc

      ASSERT_THAT(func_op, NotNull());
    
      auto add_op_itr = func_op.getBody().op_begin<mlir::stablehlo::AddOp>();
      ASSERT_THAT(add_op_itr,
                  Ne(func_op.getBody().op_end<mlir::stablehlo::AddOp>()));
    
      EXPECT_TRUE(IsOpFullyQuantized(*add_op_itr));
    }
    
    TEST_F(IsOpFullyQuantizedTest, FalseIfOpNotQuantized) {
      constexpr absl::string_view kNotQuantizedAdd = R"mlir(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. src/crypto/sha1/sha1block_arm.s

    #define Rw	R14		// point to w buffer
    
    // func block(dig *digest, p []byte)
    // 0(FP) is *digest
    // 4(FP) is p.array (struct Slice)
    // 8(FP) is p.len
    //12(FP) is p.cap
    //
    // Stack frame
    #define p_end	end-4(SP)		// pointer to the end of data
    #define p_data	data-8(SP)	// current data pointer (unused?)
    #define w_buf	buf-(8+4*80)(SP)	//80 words temporary buffer w uint32[80]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectionUser.kt

      fun candidateConnection(): RealConnection?
    
      fun proxySelectStart(url: HttpUrl)
    
      fun proxySelectEnd(
        url: HttpUrl,
        proxies: List<Proxy>,
      )
    
      fun dnsStart(socketHost: String)
    
      fun dnsEnd(
        socketHost: String,
        result: List<InetAddress>,
      )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/PoolConnectionUser.kt

      }
    
      override fun proxySelectEnd(
        url: HttpUrl,
        proxies: List<Proxy>,
      ) {
      }
    
      override fun dnsStart(socketHost: String) {
      }
    
      override fun dnsEnd(
        socketHost: String,
        result: List<InetAddress>,
      ) {
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 20:39:41 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/crypto/md5/md5block_arm.s

    #define Rt0	R12	// temporary
    #define Rt1	R14	// temporary
    
    // func block(dig *digest, p []byte)
    // 0(FP) is *digest
    // 4(FP) is p.array (struct Slice)
    // 8(FP) is p.len
    //12(FP) is p.cap
    //
    // Stack frame
    #define p_end	end-4(SP)	// pointer to the end of data
    #define p_data	data-8(SP)	// current data pointer
    #define buf	buffer-(8+4*16)(SP)	//16 words temporary buffer
    		// 3 words at 4..12(R13) for called routine parameters
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top