Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,487 for Fermat (0.79 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/UriTextResource.java

                } catch (FileNotFoundException e) {
                    throw new MissingResourceException(sourceUri, String.format("Could not read %s as it does not exist.", getDisplayName()));
                } catch (Exception e) {
                    throw ResourceExceptions.failure(sourceUri, String.format("Could not read %s.", getDisplayName()), e);
                }
            }
            Reader reader = getAsReader();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

        def testLogging = Mock(TestLogging)
        def formatter = new FullExceptionFormatter(testLogging)
    
        def "shows all exceptions that have occurred for a test"() {
            expect:
            formatter.format(testDescriptor, [new RuntimeException("oops"), new Exception("ouch")]) == """\
        java.lang.RuntimeException: oops
    
        java.lang.Exception: ouch
    """
        }
    
        def "optionally shows causes"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/cmd/covdata/dump.go

    		}
    	}
    }
    
    func (d *dstate) Finish() {
    	// d.format maybe nil here if the specified input dir was empty.
    	if d.format != nil {
    		if d.cmd == percentMode {
    			d.format.EmitPercent(os.Stdout, "", false, false)
    		}
    		if d.cmd == funcMode {
    			d.format.EmitFuncs(os.Stdout)
    		}
    		if d.textfmtoutf != nil {
    			if err := d.format.EmitTextual(d.textfmtoutf); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

                lookup.encodingFor(serializableType)
            }
    
        override suspend fun ReadContext.decode(): Any =
            decodePreservingIdentity { id ->
                when (readEnum<Format>()) {
                    Format.WriteObject -> {
                        withImmediateMode {
                            decodingBeanWithId(id) { bean, beanType, beanStateReader ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. pkg/test/framework/testcontext.go

    	c.Helper()
    	c.T.Fatal(args...)
    }
    
    func (c *testContext) Fatalf(format string, args ...any) {
    	c.Helper()
    	c.T.Fatalf(format, args...)
    }
    
    func (c *testContext) Log(args ...any) {
    	c.Helper()
    	c.T.Log(args...)
    }
    
    func (c *testContext) Logf(format string, args ...any) {
    	c.Helper()
    	c.T.Logf(format, args...)
    }
    
    func (c *testContext) Name() string {
    	c.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            Snapshot now = snapshot();
            assertEquals(String.format("contents of %s has changed", this), snapshot.hash, now.hash);
        }
    
        public void assertHasNotChangedSince(Snapshot snapshot) {
            Snapshot now = snapshot();
            assertEquals(String.format("last modified time of %s has changed", this), snapshot.modTime, now.modTime);
            assertEquals(String.format("contents of %s has changed", this), snapshot.hash, now.hash);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            if (value == null) {
                return null;
            }
    
            try {
                if (PDF_DATE.equals(format)) {
                    final Calendar cal = DateConverter.toCalendar(value);
                    return cal != null ? cal.getTime() : null;
                }
    
                final long time = Joda.forPattern(format).parseMillis(value);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/log/scope.go

    	out := make(map[string]any, len(m))
    	for k, v := range m {
    		out[k] = v
    	}
    	return out
    }
    
    func maybeSprintf(format string, args []any) string {
    	msg := format
    	if len(args) > 0 {
    		msg = fmt.Sprintf(format, args...)
    	}
    	return msg
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. cmd/post-policy_test.go

    			expectedRespStatus: http.StatusNoContent,
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			dates:              []interface{}{curTimePlus5Min.Format(iso8601TimeFormat), curTime.Format(iso8601DateFormat), curTime.Format(yyyymmdd)},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"proto":     {report.Proto, nil, awayFromTTY("pb.gz"), false, "Outputs the profile in compressed protobuf format", ""},
    	"topproto":  {report.TopProto, nil, awayFromTTY("pb.gz"), false, "Outputs top entries in compressed protobuf format", ""},
    
    	// Generate report in DOT format and postprocess with dot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top