Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for too (0.09 sec)

  1. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

            ),
          )
        }
        assertFailsWith<ProtocolException> {
          getResponse(newRequest("/0"))
        }.also { expected ->
          assertThat(expected.message).isEqualTo(
            "Too many follow-up requests: 21",
          )
        }
      }
    
      @Test
      fun httpsWithCustomTrustManager() {
        val hostnameVerifier = RecordingHostnameVerifier()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// (The unsafeptr check does not write any facts for use by
    	// later vet runs, nor does unreachable.)
    	if a.Package.Goroot && !VetExplicit && VetTool == "" {
    		// Turn off -unsafeptr checks.
    		// There's too much unsafe.Pointer code
    		// that vet doesn't like in low-level packages
    		// like runtime, sync, and reflect.
    		// Note that $GOROOT/src/buildall.bash
    		// does the same
    		// and should be updated if these flags are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    				mark := p.Mark &^ PFX_X64B
    				if pc&63 == 60 {
    					p.Pc += 4
    					m += 4
    					mark |= PFX_X64B
    				}
    
    				// Marks may be adjusted if a too-far conditional branch is
    				// fixed up above. Likewise, inserting a NOP may cause a
    				// branch target to become too far away.  We need to run
    				// another iteration and verify no additional changes
    				// are needed.
    				if mark != p.Mark {
    					bflag = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

            "${group}" --zone "${ZONE}" --project "${PROJECT}" \
            --format='value(name)')
        done
      fi
      # Add heapster node name to the list too (if it exists).
      if [[ -n "${HEAPSTER_MACHINE_TYPE:-}" ]]; then
        NODE_NAMES+=("${NODE_INSTANCE_PREFIX}-heapster")
      fi
      export NODE_NAMES
      WINDOWS_NODE_NAMES=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

     * @author Bob Lee ({@code com.google.common.collect.MapMaker})
     * @author Doug Lea ({@code ConcurrentHashMap})
     */
    @SuppressWarnings({
      "GoodTime", // lots of violations (nanosecond math)
      "nullness", // too much trouble for the payoff
    })
    @GwtCompatible(emulated = true)
    // TODO(cpovirk): Annotate for nullness.
    class LocalCache<K, V> extends AbstractMap<K, V> implements ConcurrentMap<K, V> {
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    	// TODO(quasilyte): when oclass register case is refactored into
    	// lookup table, use it here to get register kind more easily.
    	// Helper functions like regIsXmm should go away too (they will become redundant).
    
    	regIsXmm := func(r int) bool { return r >= REG_X0 && r <= REG_X31 }
    	regIsYmm := func(r int) bool { return r >= REG_Y0 && r <= REG_Y31 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	StaleReason string `json:",omitempty"` // why is Stale true?
    
    	// Source files
    	// If you add to this list you MUST add to p.AllFiles (below) too.
    	// Otherwise file name security lists will not apply to any new additions.
    	GoFiles           []string `json:",omitempty"` // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * as necessary when the method is expected to return (at the cost of hanging forever if there is
       * a bug in the class under test) but that we time out fairly promptly when the method is expected
       * to hang (possibly too quickly, but too-quick failures should be very unlikely, given that we
       * used to bail after 20ms during the expected-successful tests, and there we saw a failure rate
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * as necessary when the method is expected to return (at the cost of hanging forever if there is
       * a bug in the class under test) but that we time out fairly promptly when the method is expected
       * to hang (possibly too quickly, but too-quick failures should be very unlikely, given that we
       * used to bail after 20ms during the expected-successful tests, and there we saw a failure rate
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    			cas := &info[helpers[x.Choose(len(helpers))]]
    			helper = cas.helper
    			cas.canSelect = true
    			numCanSelect++
    		}
    
    		// Permute cases and case info.
    		// Doing too much here makes the exhaustive loop
    		// too exhausting, so just do two swaps.
    		for loop := 0; loop < 2; loop++ {
    			i := x.Choose(len(cases))
    			j := x.Choose(len(cases))
    			cases[i], cases[j] = cases[j], cases[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top