- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 7,227 for expert (0.03 seconds)
-
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/MethodMetaDataTest.groovy
method.returnType = new TypeMetaData('ReturnType') method.addParameter('param1', new TypeMetaData('ParamType')) method.addParameter('param2', new TypeMetaData('ParamType2')) expect: method.signature == 'ReturnType method(ParamType param1, ParamType2 param2)' method.overrideSignature == 'method(ParamType, ParamType2)' } def formatsOverrideSignatureUsingRawParameterTypes() {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 5.6K bytes - Click Count (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/PropertyMetaDataTest.groovy
def formatsSignature() { def type = new TypeMetaData('org.gradle.SomeClass') propertyMetaData.type = type expect: propertyMetaData.signature == 'org.gradle.SomeClass prop' } def usesGetterToLocateOverriddenProperty() { MethodMetaData getter = Mock() MethodMetaData overriddenGetter = Mock()Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 4.1K bytes - Click Count (0) -
docs/distributed/README.md
```sh export MINIO_ROOT_USER=<ACCESS_KEY> export MINIO_ROOT_PASSWORD=<SECRET_KEY> minio server http://host{1...n}/export{1...m} http://host{o...z}/export{1...m} ``` For example: ``` minio server http://host{1...4}/export{1...16} http://host{5...12}/export{1...16} ```
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 8.9K bytes - Click Count (0) -
docs/iam/access-management-plugin.md
``` This program, lets the admin user perform any action and prevents all other users from performing `s3:Put*` operations. In another terminal start MinIO: ```sh export MINIO_CI_CD=1 export MINIO_ROOT_USER=minio export MINIO_ROOT_PASSWORD=minio123 export MINIO_POLICY_PLUGIN_URL=http://localhost:8080/ minio server /tmp/disk{1...4} ``` Now, let's test it out with `mc`: ```shCreated: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Dec 13 22:28:48 GMT 2022 - 4.4K bytes - Click Count (1) -
utils/tests/utils.go
} if expect != nil { expect = reflect.Indirect(reflect.ValueOf(expect)).Interface() } if reflect.ValueOf(got).IsValid() != reflect.ValueOf(expect).IsValid() { t.Errorf("%v: expect: %+v, got %+v", utils.FileWithLineNum(), expect, got) return } if reflect.ValueOf(got).Kind() == reflect.Slice { if reflect.ValueOf(expect).Kind() == reflect.Slice {Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Fri Mar 10 09:21:56 GMT 2023 - 3.9K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/publicsuffix/PublicSuffixList.kt
/** * Basic I/O for `PublicSuffixDatabase.list` */ internal interface PublicSuffixList { fun ensureLoaded() val bytes: ByteString val exceptionBytes: ByteString companion object }Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Tue May 27 22:00:49 GMT 2025 - 929 bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionSpliteratorTester.java
public void testSpliteratorUnknownOrder() { SpliteratorTester.of(collection::spliterator).expect(getSampleElements()); } @CollectionFeature.Require(KNOWN_ORDER) public void testSpliteratorKnownOrder() { SpliteratorTester.of(collection::spliterator).expect(getOrderedElements()).inOrder(); } @CollectionFeature.Require(ALLOWS_NULL_VALUES) @CollectionSize.Require(absent = ZERO)
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 3.9K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttp.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package okhttp3 expect object OkHttp { /** * This is a string like "5.0.0", "5.0.0-alpha.762", or "5.3.0-SNAPSHOT" indicating the version of * OkHttp in the current runtime. Use this to include the OkHttp version in custom `User-Agent` * headers. *Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Mon Jul 28 20:33:04 GMT 2025 - 1.5K bytes - Click Count (0) -
ci/official/bisect.sh
# # export TFCI=... # export TF_BISECT_SCRIPT=ci/official/any.sh # export TF_BISECT_GOOD=a_good_commit_sha # export TF_BISECT_BAD=a_failing_commit_sha # export TF_ANY_TARGETS="quoted list of targets, like on the command line" # export TF_ANY_MODE=test set -exo pipefail cd "$(dirname "$0")/../../" # tensorflow/
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Thu Jan 09 18:37:25 GMT 2025 - 1.8K bytes - Click Count (0) -
ci/official/containers/ml_build/setup.sources.sh
# ============================================================================== # # Sets up custom apt sources for our TF images. # Prevent apt install tzinfo from asking our location (assumes UTC) export DEBIAN_FRONTEND=noninteractive # Set up shared custom sources apt-get update apt-get install -y gnupg ca-certificates # Deadsnakes: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Thu Oct 03 21:13:05 GMT 2024 - 1.6K bytes - Click Count (0)