Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for operationDisplayName (0.33 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                            testClass("org.example.SimpleTests") {
                                operationDisplayName "a class display name"
                                testDisplayName "a class display name"
                                test("test()") {
                                    operationDisplayName "and a test display name"
                                    testDisplayName "and a test display name"
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestOperationMapper.java

            String methodName = null;
            String operationDisplayName = suite.toString();
    
            TestDescriptor originalDescriptor = getOriginalDescriptor(suite);
            if (originalDescriptor instanceof AbstractTestDescriptor) {
                methodName = ((AbstractTestDescriptor) originalDescriptor).getMethodName();
                operationDisplayName = adjustOperationDisplayNameForIntelliJ(operationDisplayName, (AbstractTestDescriptor) originalDescriptor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultTestDescriptor.java

            String operationName,
            String operationDisplayName,
            String displayName,
            String testKind,
            @Nullable String suiteName,
            @Nullable String className,
            @Nullable String methodName,
            OperationIdentifier parentId,
            String taskPath
        ) {
            this.id = id;
            this.operationName = operationName;
            this.operationDisplayName = operationDisplayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockManager.java

         * @param operationDisplayName A display name for the operation being performed on the target file. This is used in log and error messages.
         */
        FileLock lock(File target, LockOptions options, String targetDisplayName, String operationDisplayName) throws LockTimeoutException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

            Consumer contendedAction
    
            given:
            1 * lockManager.lock(file, _, _, _, _) >> {
                File target, LockOptions options, String targetDisplayName, String operationDisplayName, Consumer<FileLockReleasedSignal> whenContended -> contendedAction = whenContended
                    return lock
            }
    
            cacheAccess.withFileLock(action)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

        @Override
        public FileLock lock(File target, LockOptions options, String targetDisplayName, String operationDisplayName) {
            return lock(target, options, targetDisplayName, operationDisplayName, null);
        }
    
        @Override
        public FileLock lock(File target, LockOptions options, String targetDisplayName, String operationDisplayName, @Nullable Consumer<FileLockReleasedSignal> whenContended) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                this.parent = parent
                this.testEvents = testEvents
                this.verifiedEvents = verifiedEvents
            }
    
            @Override
            void operationDisplayName(String displayName) {
                this.operationDisplayName = displayName
            }
    
            @Override
            void testDisplayName(String displayName) {
                this.testDisplayName = displayName
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultExclusiveCacheAccessCoordinatorTest.groovy

            access.useCache(action)
    
            then:
            1 * lockManager.lock(lockFile, mode(Exclusive), "<display-name>", "", _) >> {
                File target, LockOptions options, String targetDisplayName, String operationDisplayName, Consumer<FileLockReleasedSignal> whenContended -> contentionAction = whenContended; return lock }
            1 * initializationAction.requiresInitialization(lock) >> true
            1 * lock.writeFile(_) >> { Runnable r -> r.run() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/TestDisplayNameSpockCrossVersionSpec.groovy

                                testDisplayName "ParameterizedTests"
                                testMethodSuite("length of #name is #length") {
                                    operationDisplayName "length of #name is #length"
                                    testDisplayName "length of #name is #length"
                                    test("length of Spock is 5") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top