Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,353 for tokstring (0.29 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/TestEventLoggerTest.groovy

            eventLogger.afterTest(methodDescriptor, result)
    
            then:
            textOutputFactory.toString().count("PASSED") == 1
    
            when:
            textOutputFactory.clear()
            result.resultType = TestResult.ResultType.FAILURE
            eventLogger.afterTest(methodDescriptor, result)
    
            then:
            textOutputFactory.toString().count("PASSED") == 0
        }
    
        def "logs event if granularity matches"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:45:02 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r23/StandardStreamsCrossVersionSpec.groovy

            }
    
            then:
            output.toString().contains("task logging")
            output.toString().contains("warn logging")
            output.toString().contains("lifecycle logging")
            output.toString().contains("quiet logging")
            if (targetVersion.baseVersion >= GradleVersion.version('4.7')) {
                // Changed handling of error log messages
                output.toString().contains("error logging")
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebConfigBhv.java

                result.setExcludedUrls(DfTypeUtil.toString(source.get("excludedUrls")));
                result.setIncludedDocUrls(DfTypeUtil.toString(source.get("includedDocUrls")));
                result.setIncludedUrls(DfTypeUtil.toString(source.get("includedUrls")));
                result.setIntervalTime(DfTypeUtil.toInteger(source.get("intervalTime")));
                result.setMaxAccessCount(DfTypeUtil.toLong(source.get("maxAccessCount")));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/DataTypeInternal.kt

            override fun toString(): String = "Int"
            private
            fun readResolve(): Any = DefaultIntDataType
        }
    
        @Serializable
        @SerialName("long")
        data object DefaultLongDataType : DataType.LongDataType {
            override val constantType: Class<Long> = Long::class.java
            override fun toString(): String = "Long"
            private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSignatoryFactory.java

            if (executable != null) {
                settings.setExecutable(executable.toString());
            }
            if (useLegacyGpg != null) {
                settings.setUseLegacyGpg(Boolean.parseBoolean(useLegacyGpg.toString()));
            }
            if (homeDir != null) {
                settings.setHomeDir(project.file(homeDir.toString()));
            }
            if (optionsFile != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

            failure.assertHasCause("Failed to list versions for ${group}:${module}.")
            failure.assertHasCause("Unable to load Maven meta-data from ${mavenHttpRepo.uri.toString()}/${group}/${module}/maven-metadata.xml.")
            failure.assertHasCause("Could not GET '${mavenHttpRepo.uri.toString()}/${group}/${module}/maven-metadata.xml'.")
            failure.assertHasCause("Read timed out")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/testFixtures/groovy/org/gradle/internal/logging/text/TestStyledTextOutput.groovy

        @Override
        String toString() {
            result.toString()
        }
    
        TestStyledTextOutput ignoreStyle() {
            return new TestStyledTextOutput() {
                @Override protected void doStyleChange(Style style) {
                }
            }
        }
    
        String getRawValue() {
            return result.toString()
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/PlaceholderAssertionError.java

        private final String toString;
        private final Throwable toStringRuntimeEx;
    
        public PlaceholderAssertionError(String exceptionClassName,
                                         @Nullable String message,
                                         @Nullable Throwable getMessageException,
                                         @Nullable String toString,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/AbstractInvocationHandler.java

        return super.hashCode();
      }
    
      /**
       * By default delegates to {@link Object#toString}. The dynamic proxies' {@code toString()} will
       * delegate to this method. Subclasses can override this method to provide custom string
       * representation for the proxies.
       */
      @Override
      public String toString() {
        return super.toString();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/OutputEventRendererTest.groovy

            then:
            output.toString().readLines() == ['info']
            error.toString().readLines() == ['error']
            outputs.stdOut == ''
            outputs.stdErr == ''
        }
    }
    
    class TestListener implements StandardOutputListener {
        private final StringWriter writer = new StringWriter();
    
        def getValue() {
            return writer.toString()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top