- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 36 for character (0.14 sec)
-
platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy
Registered: 2024-06-12 18:38 - Last Modified: 2024-06-08 11:29 - 5.5K bytes - Viewed (0) -
pilot/pkg/serviceregistry/kube/controller/ambient/policies.go
} func implicitWaypointPolicyName(waypoint *Waypoint) string { if !features.DefaultAllowFromWaypoint || waypoint == nil || len(waypoint.ServiceAccounts) == 0 { return "" } // use '_' character since those are illegal in k8s names return "istio_allow_waypoint_" + waypoint.Namespace + "_" + waypoint.Name }
Registered: 2024-06-14 15:00 - Last Modified: 2024-06-13 16:51 - 5.2K bytes - Viewed (0) -
tensorflow/compiler/mlir/lite/python/converter_python_api.cc
if (!PyList_Check(list)) { PyErr_SetString(PyExc_TypeError, "Expected list in argument"); return nullptr; } int64_t size = PyList_Size(list); for (int i = 0; i < size; ++i) { // Get character array from Python object. char* tf_opdefs; Py_ssize_t len; if (tflite::python_utils::ConvertFromPyString(PyList_GetItem(list, i), &tf_opdefs, &len) == -1) {
Registered: 2024-06-16 05:45 - Last Modified: 2024-06-12 23:15 - 19.2K bytes - Viewed (0) -
platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy
failure.assertHasDescription("Error loading encryption key from GRADLE_ENCRYPTION_KEY environment variable") failure.assertHasCause("Illegal base64 character ${Integer.toHexString((int) invalidBase64Char)}") } def "build fails if key is provided via env var but not long enough"() { given:
Registered: 2024-06-12 18:38 - Last Modified: 2024-06-08 11:29 - 13K bytes - Viewed (0) -
docs/site-replication/run-replication-with-checksum-header.sh
num_to_alpha() { local num=$1 # ASCII value of 'a' is 97, so we add (num - 1) to 97 to get the corresponding alphabet local ascii_value=$((96 + num)) # Convert the ASCII value to the character using printf printf "\\$(printf '%03o' "$ascii_value")" } cleanup export MINIO_CI_CD=1 export MINIO_BROWSER=off export MINIO_ROOT_USER="minio" export MINIO_ROOT_PASSWORD="minio123"
Registered: 2024-06-16 00:44 - Last Modified: 2024-06-08 16:24 - 6.9K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java
return i == that.i; } return false; } } static class SameCharacterInstance { private final Character i; public SameCharacterInstance(Character i) { this.i = checkNotNull(i); } @Override public int hashCode() { return i.hashCode(); } @Override
Registered: 2024-06-12 16:38 - Last Modified: 2024-06-11 16:13 - 36.2K bytes - Viewed (0) -
src/cmd/go/internal/work/exec.go
quote := byte(0) // what is the quote character around the current string? for _, c := range out { if escaped { if quote == '"' { // “The <backslash> shall retain its special meaning as an escape // character … only when followed by one of the following characters // when considered special:” switch c { case '$', '`', '"', '\\', '\n':
Registered: 2024-06-12 16:32 - Last Modified: 2024-06-10 14:46 - 105.6K bytes - Viewed (0) -
cmd/storage-rest-server.go
} return c.rc.Close() } // keepHTTPReqResponseAlive can be used to avoid timeouts with long storage // operations, such as bitrot verification or data usage scanning. // Every 10 seconds a space character is sent. // keepHTTPReqResponseAlive will wait for the returned body to be read before starting the ticker. // The returned function should always be called to release resources.
Registered: 2024-06-16 00:44 - Last Modified: 2024-06-10 15:51 - 44.8K bytes - Viewed (0) -
src/time/format.go
// for compatibility with fixed-width Unix time formats. A leading zero represents // a zero-padded value. // // The formats __2 and 002 are space-padded and zero-padded // three-character day of year; there is no unpadded day of year format. // // A comma or decimal point followed by one or more zeros represents // a fractional second, printed to the given number of decimal places.
Registered: 2024-06-12 16:32 - Last Modified: 2024-06-11 17:09 - 49.3K bytes - Viewed (0) -
cmd/object-api-utils.go
// requirements. It cannot exceed 1024 characters and must be a valid UTF8 // string. // // See: // http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html // // You should avoid the following characters in a key name because of // significant special handling for consistency across all // applications. // // Rejects strings with following characters. // // - Backslash ("\") //
Registered: 2024-06-16 00:44 - Last Modified: 2024-06-11 03:13 - 36.3K bytes - Viewed (0)