Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for PlaceholderException (0.38 sec)

  1. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/protocol/DaemonMessageSerializerTest.groovy

    import org.gradle.internal.logging.events.UserInputResumeEvent
    import org.gradle.internal.logging.events.YesNoQuestionPromptEvent
    import org.gradle.internal.serialize.DefaultSerializer
    import org.gradle.internal.serialize.PlaceholderException
    import org.gradle.internal.serialize.Serializer
    import org.gradle.internal.serialize.SerializerSpec
    import org.gradle.launcher.daemon.diagnostics.DaemonDiagnostics
    import org.gradle.launcher.exec.BuildActionResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/MessageTest.groovy

                def Object o = new Object()
            }
    
            when:
            def transported = transport(broken)
    
            then:
            transported.class == PlaceholderException
            transported.cause == null
            transported.stackTrace.length == 0
    
            when:
            transported.message
    
            then:
            RuntimeException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

                    } else {
                        placeholder = new PlaceholderException(type, message, getMessageExec, toString, toStringRuntimeExec, causes.isEmpty() ? null : causes.get(0));
                    }
                }
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.serialize.PlaceholderException> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (PlaceholderException.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top