Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 136 for happen (0.14 sec)

  1. src/net/http/transport_test.go

    		}
    
    		// Now try again and see if we successfully
    		// pick a new connection.
    		res, err = c.Get(ts.URL + "/")
    		if err != nil {
    			errs = append(errs, err)
    			continue
    		}
    		slurp, err = io.ReadAll(res.Body)
    		if err != nil {
    			errs = append(errs, err)
    			continue
    		}
    		nSuccess++
    	}
    	if nSuccess > 0 {
    		t.Logf("successes = %d of %d", nSuccess, trials)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertContent("This connection won't pool properly", response1)
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
    
        // Give the server time to enact the socket policy if it's one that could happen after the
        // client has received the response.
        Thread.sleep(500)
        val response2 = getResponse(newRequest("/b"))
        response1.body.source().timeout().timeout(100, TimeUnit.MILLISECONDS)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	klogVEnabled := klogV.Enabled()
    	for _, s := range podStatus.ContainerStatuses {
    		if s.State == kubecontainer.ContainerStateRunning {
    			runningContainers = append(runningContainers, s.ID.String())
    		}
    		if klogVEnabled {
    			containers = append(containers, container{Name: s.Name, State: string(s.State), ExitCode: s.ExitCode, FinishedAt: s.FinishedAt.UTC().Format(time.RFC3339Nano)})
    		}
    	}
    	if klogVEnabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        of the MLIR bridge with V1 pipeline in some cases. The pass expects to have
        either none or both of the unified attributes present in an op for the
        conversion to happen. Otherwise it will fail.
    
        For example, `_replication_info="cluster"` and
        `_xla_compile_device_type="TPU"` in the following code
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

         * hold a reference to the executor and thus to the combiner. What we really care about is that
         * the futures are released once the combiner is done running. But we happen to provide this
         * earlier cleanup at the moment, so we're testing it.
         */
        GcFinalization.awaitClear(future1Ref);
        GcFinalization.awaitClear(future2Ref);
      }
    
      @AndroidIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

         * hold a reference to the executor and thus to the combiner. What we really care about is that
         * the futures are released once the combiner is done running. But we happen to provide this
         * earlier cleanup at the moment, so we're testing it.
         */
        GcFinalization.awaitClear(future1Ref);
        GcFinalization.awaitClear(future2Ref);
      }
    
      @AndroidIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    s3 := append(s2, s0...)            // append a slice              s3 == []int{0, 0, 2, 3, 5, 7, 0, 0}
    s4 := append(s3[3:6], s3[2:]...)   // append overlapping slice    s4 == []int{3, 5, 7, 2, 3, 5, 7, 0, 0}
    
    var t []interface{}
    t = append(t, 42, 3.1415, "foo")   //                             t == []interface{}{42, 3.1415, "foo"}
    
    var b []byte
    b = append(b, "bar"...)            // append string contents      b == []byte{'b', 'a', 'r' }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // -----
    
    // Tests that when the weight tensor for `stablehlo.dot_general` is coming from
    // `stablehlo.transpose` and its operand is not a `stablehlo.constant`
    // (e.g. argument), the conversion to `tfl.fully_connected` doesn't happen.
    
    // CHECK-LABEL: dot_general_srq_arg_transpose_rhs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  9. src/net/http/server.go

    		// but doing it ourselves is more reliable.
    		// See RFC 7231, section 7.1.2
    		if u.Scheme == "" && u.Host == "" {
    			oldpath := r.URL.Path
    			if oldpath == "" { // should not happen, but avoid a crash if it does
    				oldpath = "/"
    			}
    
    			// no leading http://server
    			if url == "" || url[0] != '/' {
    				// make relative path absolute
    				olddir, _ := path.Split(oldpath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      if (!input_ty) return {};
      auto result_ty = getType().template dyn_cast<RankedTensorType>();
      if (!result_ty) return {};
    
      // Bypass this op if the result has the same shape and type. This can happen
      // if the input tensor has size 0 or size 1.
      if (!getKeepDims() && input_ty == result_ty) {
        return getInput();
      }
      return {};
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top