- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 754 for nerede (0.05 sec)
-
ci/official/requirements_updater/numpy1_requirements/requirements.in
tb-nightly ~= 2.18.0.a # Test dependencies grpcio >= 1.24.3, < 2.0 portpicker == 1.6.0 scipy == 1.11.3 requests >= 2.31.0 packaging==23.2 setuptools==70.0.0 jax==0.4.7 # The dependencies below are needed for TF wheel testing. tensorflow-io-gcs-filesystem==0.37.1 libclang >= 13.0.0 google_pasta ~= 0.2
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Oct 11 22:42:53 UTC 2024 - 874 bytes - Viewed (0) -
android/guava/src/com/google/common/escape/UnicodeEscaper.java
int nextIndex = index + (Character.isSupplementaryCodePoint(cp) ? 2 : 1); if (escaped != null) { int charsSkipped = index - unescapedChunkStart; // This is the size needed to add the replacement, not the full // size needed by the string. We only regrow when we absolutely must. int sizeNeeded = destIndex + charsSkipped + escaped.length; if (dest.length < sizeNeeded) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jan 18 20:55:09 UTC 2022 - 13.2K bytes - Viewed (0) -
src/archive/zip/writer.go
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 14:32:33 UTC 2024 - 19.4K bytes - Viewed (0) -
internal/config/identity/openid/rsa-sha3_contrib.go
// limitations under the License. //go:build !fips // +build !fips package openid import ( "crypto" "github.com/golang-jwt/jwt/v4" // Needed for SHA3 to work - See: https://golang.org/src/crypto/crypto.go?s=1034:1288 _ "golang.org/x/crypto/sha3" // There is no SHA-3 FIPS-140 2 compliant implementation ) // Specific instances for RS256 and company var (
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Nov 05 19:20:08 UTC 2021 - 1.7K bytes - Viewed (0) -
internal/config/legacy.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package config // One time migration code section // SetRegion - One time migration code needed, for migrating from older config to new for server Region. func SetRegion(c Config, name string) { if name == "" { return } c[RegionSubSys][Default] = KVS{ KV{ Key: RegionName, Value: name, },
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Dec 19 20:27:06 UTC 2022 - 1.1K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http/RealResponseBody.kt
import okhttp3.MediaType import okhttp3.MediaType.Companion.toMediaTypeOrNull import okhttp3.ResponseBody import okio.BufferedSource class RealResponseBody( /** * Use a string to avoid parsing the content type until needed. This also defers problems caused * by malformed content types. */ private val contentTypeString: String?, private val contentLength: Long, private val source: BufferedSource, ) : ResponseBody() {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.2K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenInvokerRequest.java
* Represents a request to invoke Maven. * This interface extends the general {@link InvokerRequest}, specializing it for Maven-specific operations. * * <p>A {@link MavenInvokerRequest} encapsulates all the necessary information needed to perform * a Maven build, including any Maven-specific options defined in {@link MavenOptions}.</p> * * @param <O> The specific Options type this request carries * * @since 4.0.0 */ @Experimental
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 1.6K bytes - Viewed (0) -
docs/es/docs/tutorial/cookie-params.md
{* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[9]*} /// note | "Detalles Técnicos" `Cookie` es una clase "hermana" de `Path` y `Query`. También hereda de la misma clase común `Param`. Pero recuerda que cuando importas `Query`, `Path`, `Cookie` y otros de `fastapi`, en realidad son funciones que devuelven clases especiales. /// /// info
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 10:33:43 UTC 2024 - 1.1K bytes - Viewed (0) -
docs/en/docs/deployment/https.md
So, to renew the certificates, the renewal program needs to **prove** to the authority (Let's Encrypt) that it indeed **"owns" and controls that domain**. To do that, and to accommodate different application needs, there are several ways it can do it. Some popular ways are: * **Modify some DNS records**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 12K bytes - Viewed (0) -
internal/config/policy/opa/legacy.go
) // Legacy OPA envs const ( EnvIamOpaURL = "MINIO_IAM_OPA_URL" EnvIamOpaAuthToken = "MINIO_IAM_OPA_AUTHTOKEN" ) // SetPolicyOPAConfig - One time migration code needed, for migrating from older config to new for PolicyOPAConfig. func SetPolicyOPAConfig(s config.Config, opaArgs Args) { if opaArgs.URL == nil || opaArgs.URL.String() == "" { // Do not enable if opaArgs was empty. return }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 1.4K bytes - Viewed (0)