Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 348 for ns_end (0.25 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. tensorflow/cc/gradients/linalg_grad.cc

      int bx_start, by_start;
      absl::optional<int> bx_end, by_end;
      std::tie(bx_start, bx_end) = EinsumGetBcastSubshape(x_subs);
      std::tie(by_start, by_end) = EinsumGetBcastSubshape(y_subs);
    
      // Sum the gradient across the broadcasted axes.
      auto args = internal::BroadcastGradientArgs(
          scope, Slice1dHelper(scope, x_shape, bx_start, bx_end),
          Slice1dHelper(scope, y_shape, by_start, by_end));
      grad_x = Reshape(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  3. src/image/png/testdata/invalid-noend.png

    invalid-noend.png...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.2K bytes
    - Viewed (0)
  4. 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)
  5. test/closedchan.go

    			failed = true
    		}
    	}
    
    	// send should work with ,ok too: sent a value without blocking, so ok == true.
    	shouldPanic(func() { c.Nbsend(1) })
    
    	// the value should have been discarded.
    	if x := c.Recv(); x != 0 {
    		println("test1: recv on closed got non-zero after send on closed:", x, c.Impl())
    		failed = true
    	}
    
    	// similarly Send.
    	shouldPanic(func() { c.Send(2) })
    	if x := c.Recv(); x != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 5.8K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/EventListenerTest.kt

        assertThat(dnsStart.call).isSameAs(call)
        assertThat(dnsStart.domainName).isEqualTo(server.hostName)
        val dnsEnd: DnsEnd = listener.removeUpToEvent<DnsEnd>()
        assertThat(dnsEnd.call).isSameAs(call)
        assertThat(dnsEnd.domainName).isEqualTo(server.hostName)
        assertThat(dnsEnd.inetAddressList.size).isEqualTo(1)
      }
    
      @Test
      fun noDnsLookupOnPooledConnection() {
        server.enqueue(MockResponse())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/walk/select.go

    		if n == nil { // default:
    			continue
    		}
    
    		var i int
    		var c, elem ir.Node
    		switch n.Op() {
    		default:
    			base.Fatalf("select %v", n.Op())
    		case ir.OSEND:
    			n := n.(*ir.SendStmt)
    			i = nsends
    			nsends++
    			c = n.Chan
    			elem = n.Value
    		case ir.OSELRECV2:
    			n := n.(*ir.AssignListStmt)
    			nrecvs++
    			i = ncas - nrecvs
    			recv := n.Rhs[0].(*ir.UnaryExpr)
    			c = recv.X
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. 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)
  10. docs/features/events.md

        printEvent("callEnd");
      }
    
      @Override public void dnsStart(Call call, String domainName) {
        printEvent("dnsStart");
      }
    
      @Override public void dnsEnd(Call call, String domainName, List<InetAddress> inetAddressList) {
        printEvent("dnsEnd");
      }
    
      ...
    }
    ```
    
    We make a couple calls:
    
    ```java
    Request request = new Request.Builder()
        .url("https://publicobject.com/helloworld.txt")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 7.7K bytes
    - Viewed (0)
Back to top