Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,063 for involved (0.14 sec)

  1. docs/contribute/concurrency.md

    Since HTTP requests frequently happen in parallel, connection pooling must be thread-safe.
    
    These are the primary classes involved with establishing, sharing, and terminating connections:
    
     * **RealConnectionPool** manages reuse of HTTP and HTTP/2 connections for reduced latency. Every OkHttpClient has one, and its lifetime spans the lifetime of the OkHttpClient.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_use_cases.adoc

    The changes don't need to be completely independent, either; we'll take a look at the strategies to reuse results when dependencies are involved in the section about the <<build_cache_concepts.adoc#normalization,different forms of normalization>>.
    
    == Combine remote results with local caching
    
    You can utilize both a local and a remote cache for a compound effect.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unreachable/unreachable.go

    	labels      map[string]ast.Stmt
    	breakTarget ast.Stmt
    
    	reachable bool
    }
    
    // findLabels gathers information about the labels defined and used by stmt
    // and about which statements break, whether a label is involved or not.
    func (d *deadState) findLabels(stmt ast.Stmt) {
    	switch x := stmt.(type) {
    	default:
    		log.Fatalf("%s: internal error in findLabels: unexpected statement %T", d.pass.Fset.Position(x.Pos()), x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    * If no ranges are involved, then the highest version that is not rejected will be selected.
    ** If a version declared as `strictly` is lower than that version, selection will fail.
    * If ranges are involved:
    ** If there is a non range version that falls within the specified ranges or is higher than their upper bound, it will be selected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  5. src/sync/map_test.go

    		m.Store(i, v)
    	}
    	m.Range(func(key, value any) bool {
    		m.Range(func(key, value any) bool {
    			// We should be able to load the key offered in the Range callback,
    			// because there are no concurrent Delete involved in this tested map.
    			if v, ok := m.Load(key); !ok || !reflect.DeepEqual(v, value) {
    				t.Fatalf("Nested Range loads unexpected value, got %+v want %+v", v, value)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

            }
            return response;
        }
    
        public HttpClientResponse performHttpRequest(HttpRequestBase request) throws IOException {
            if (sharedContext == null) {
                // There's no authentication involved, requests can be done concurrently
                return performHttpRequest(request, new BasicHttpContext());
            }
            HttpContext httpContext = nextAvailableSharedContext();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. src/cmd/cgo/doc.go

    only library involved is libc.so, which can usually be assumed
    present.)
    
    This conflict between functionality and the gcc requirement means we
    must support both internal and external linking, depending on the
    circumstances: if net is the only cgo-using package, then internal
    linking is probably fine, but if other packages are involved, so that there
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. src/syscall/syscall_unix_test.go

    			os.Exit(0)
    		}
    		t.Fatalf("FcntlFlock got %v, want %v", got, flock)
    	}
    }
    
    // TestPassFD tests passing a file descriptor over a Unix socket.
    //
    // This test involved both a parent and child process. The parent
    // process is invoked as a normal test, with "go test", which then
    // runs the child process by running the current test binary with args
    // "-test.run=^TestPassFD$" and an environment variable used to signal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

    import org.jetbrains.kotlin.resolve.constants.evaluate.evalUnaryOp
    import org.jetbrains.kotlin.types.ConstantValueKind
    
    /**
     * An evaluator that transform numeric operation, such as div, into compile-time constant iff involved operands, such as explicit receiver
     * and the argument, are compile-time constant as well.
     */
    internal object FirCompileTimeConstantEvaluator {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. pkg/istio-agent/agent.go

    		} else {
    			rootCAPath = k8sCAPath
    		}
    	} else if a.secOpts.ProvCert != "" {
    		// This was never completely correct - PROV_CERT are only intended for auth with CA_ADDR,
    		// and should not be involved in determining the root CA.
    		// For VMs, the root cert file used to auth may be populated afterwards.
    		// Thus, return directly here and skip checking for existence.
    		return a.secOpts.ProvCert + "/root-cert.pem", nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top