Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,667 for Fermat (0.33 sec)

  1. src/fmt/scan_test.go

    	{"%d X", "27 X", &intVal, 27},
    	{"%d X", " 27X", &intVal, nil}, // expected space in input to match format
    	{"%d X", " 27 X", &intVal, 27},
    
    	{"X %d X", "X27X", &intVal, nil},  // expected space in input to match format
    	{"X %d X", "X27 X", &intVal, nil}, // expected space in input to match format
    	{"X %d X", "X 27X", &intVal, nil}, // expected space in input to match format
    	{"X %d X", "X 27 X", &intVal, 27},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

            repository {
                id('org.test:moduleA:1.0') {
                    variant 'customVariant', [format: 'custom']
                    dependsOn('org.test:moduleB:1.0')
                }
            }
    
            buildFile << """
                def testAttribute = Attribute.of("TEST_ATTRIBUTE", String)
                def formatAttribute = Attribute.of('format', String)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

          pos_file /var/log/gcp-containers.log.pos
          # Tags at this point are in the format of:
          # reform.var.log.containers.<POD_NAME>_<NAMESPACE_NAME>_<CONTAINER_NAME>-<CONTAINER_ID>.log
          tag reform.*
          read_from_head true
          <parse>
            @type multi_format
            <pattern>
              format json
              time_key time
              time_format %Y-%m-%dT%H:%M:%S.%NZ
            </pattern>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  10. 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)
Back to top