Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 171 for wads (0.04 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        val response = call.execute()
        assertThat(response.body.string()).isEqualTo("ABC")
        assertThat(response.protocol).isEqualTo(protocol)
    
        // Confirm a single ping was sent and received, and its reply was sent and received.
        val logs = testLogHandler.takeAll()
        assertThat(countFrames(logs, "FINE: >> 0x00000000     8 PING          "))
          .isEqualTo(1)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    			// relevant to the packages in the main module.
    			spotCheckRoot[pkg.mod] = true
    		} else {
    			roots = append(roots, pkg.mod)
    			rootsUpgraded = true
    			// The roots slice was initially sorted because rs.rootModules was sorted,
    			// but the root we just added could be out of order.
    			needSort = true
    		}
    	}
    
    	for _, m := range add {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    		}
    	}
    	return released
    }
    
    // printScavTrace prints a scavenge trace line to standard error.
    //
    // released should be the amount of memory released since the last time this
    // was called, and forced indicates whether the scavenge was forced by the
    // application.
    //
    // scavenger.lock must be held.
    func printScavTrace(releasedBg, releasedEager uintptr, forced bool) {
    	assertLockHeld(&scavenger.lock)
    
    	printlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Note that syncing a build from an IDE doesn't benefit from the configuration cache, only running tasks does.
    
    [[config_cache:ide:intellij]]
    === IntelliJ based IDEs
    
    In IntelliJ IDEA or Android Studio this can be done in two ways, either globally or per run configuration.
    
    To enable it for the whole build, go to `Run > Edit configurations...`.
    This will open the IntelliJ IDEA or Android Studio dialog to configure Run/Debug configurations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers.go

    	startedTerminating bool
    	// deleted is true if the pod has been marked for deletion on the apiserver
    	// or has no configuration represented (was deleted before).
    	deleted bool
    	// evicted is true if the kill indicated this was an eviction (an evicted
    	// pod can be more aggressively cleaned up).
    	evicted bool
    	// finished is true once the pod worker completes for a pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	// 1) the watch w1 is blocked, so we were consuming the whole budget once
    	//    its buffer was filled in (10 items)
    	// 2) the budget is refreshed once per second, so it basically wasn't
    	//    happening in the test at all
    	// 3) if the test was cpu-starved and we weren't able to consume events
    	//    from w2 ResultCh it could have happened that its buffer was also
    	//    filling in and given we no longer had timeBudget (consumed in (1))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    func (check *Checker) exprInternal(T *target, x *operand, e ast.Expr, hint Type) exprKind {
    	// make sure x has a valid state in case of bailout
    	// (was go.dev/issue/5770)
    	x.mode = invalid
    	x.typ = Typ[Invalid]
    
    	switch e := e.(type) {
    	case *ast.BadExpr:
    		goto Error // error was reported before
    
    	case *ast.Ident:
    		check.ident(x, e, nil, false)
    
    	case *ast.Ellipsis:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	// close closech which in turn ensures writeLoop returns.
    	<-pc.writeLoopDone
    
    	// If the request was canceled, that's better than network
    	// failures that were likely the result of tearing down the
    	// connection.
    	if cerr := pc.canceled(); cerr != nil {
    		return cerr
    	}
    
    	// See if an error was set explicitly.
    	req.mu.Lock()
    	reqErr := req.err
    	req.mu.Unlock()
    	if reqErr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	err := testContext.Plugin.Dispatch(
    		testContext,
    		attributeRecord(nil, fakeParams, admission.Create),
    		&admission.RuntimeObjectInterfaces{},
    	)
    
    	// expect the specific error to be that the param was not found, not that CRD
    	// is not existing
    	require.ErrorContains(t, err,
    		`failed to configure policy: failed to find resource referenced by paramKind: 'example.com/v1, Kind=BadParamKind'`)
    
    	close(passedParams)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    	}
    
    	// NewMainKubelet should have set up a pod source config if one didn't exist
    	// when the builder was run. This is just a precaution.
    	if kubeDeps.PodConfig == nil {
    		return fmt.Errorf("failed to create kubelet, pod source config was nil")
    	}
    	podCfg := kubeDeps.PodConfig
    
    	if err := rlimit.SetNumFiles(uint64(kubeServer.MaxOpenFiles)); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top