Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for badly (0.08 sec)

  1. src/time/zoneinfo.go

    )
    
    // UTC represents Universal Coordinated Time (UTC).
    var UTC *Location = &utcLoc
    
    // utcLoc is separate so that get can refer to &utcLoc
    // and ensure that it never returns a nil *Location,
    // even if a badly behaved client has changed UTC.
    var utcLoc = Location{name: "UTC"}
    
    // Local represents the system's local time zone.
    // On Unix systems, Local consults the TZ environment
    // variable to find the time zone to use. No TZ means
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. src/strconv/atof_test.go

    func TestAtofRandom(t *testing.T) {
    	initAtof()
    	for _, test := range atofRandomTests {
    		x, _ := ParseFloat(test.s, 64)
    		switch {
    		default:
    			t.Errorf("number %s badly parsed as %b (expected %b)", test.s, x, test.x)
    		case x == test.x:
    		case math.IsNaN(test.x) && math.IsNaN(x):
    		}
    	}
    	t.Logf("tested %d random numbers", len(atofRandomTests))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  3. src/net/mail/message.go

    	// whether an error from the Decode method was due to the
    	// CharsetReader (meaning the charset is invalid).
    	// We used to look for the charsetError type in the error result,
    	// but that behaves badly with CharsetReaders other than the
    	// one in rfc2047Decoder.
    	adec := *dec
    	charsetReaderError := false
    	adec.CharsetReader = func(charset string, input io.Reader) (io.Reader, error) {
    		if dec.CharsetReader == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. src/runtime/sema.go

    // where n is the number of distinct addresses with goroutines blocked
    // on them that hash to the given semaRoot.
    // See golang.org/issue/17953 for a program that worked badly
    // before we introduced the second level of list, and
    // BenchmarkSemTable/OneAddrCollision/* for a benchmark that exercises this.
    type semaRoot struct {
    	lock  mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParserTest.groovy

            e.message == "Could not parse Ivy file ${file}"
            e.cause.message == "illegal cycle detected in configuration extension: A => B => A"
        }
    
        def "fails when descriptor contains badly formed XML"() {
            def file = temporaryFolder.file("ivy.xml") << """
    <ivy-module version="1.0">
        <info
    </ivy-module>
    """
    
            when:
            parse(parseContext, file)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            then:
            macros.empty
            macroFunctions == [
                macroFunction('SOME_STRING', '"abc"'),
                unresolvedMacroFunction('STRING_2')
            ]
        }
    
        def "ignores badly formed define directives"() {
            when:
            sourceFile << """
    #define
    #define  // white space
    #define ()
    #define ( _
    #define ( _ )
    #define X(
    #define X(abc
    #define X( ,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParserTest.groovy

            1 * variant1.setAvailableExternally(false)
            1 * metadata.getMutableVariants()
            0 * _
        }
    
        def "fails on badly formed content"() {
            def metadata = Mock(MutableModuleComponentResolveMetadata)
    
            when:
            parser.parse(resource('not-json'), metadata)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 38K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/term/terminal.go

    		// too long when shinking. Others, (e.g. gnome-terminal) will
    		// attempt to wrap them. For the former, repainting t.maxLine
    		// works great, but that behaviour goes badly wrong in the case
    		// of the latter because they have doubled every full line.
    
    		// We assume that we are working on a terminal that wraps lines
    		// and adjust the cursor position based on every previous line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_2x.md

     *  Fix: Never return null on `call.proceed()`. This was a bug in call
        cancelation.
     *  Fix: When a network interceptor mutates a request, that change is now
        reflected in `Response.networkResponse()`.
     *  Fix: Badly-behaving caches now throw a checked exception instead of a
        `NullPointerException`.
     *  Fix: Better handling of uncaught exceptions in MockWebServer with HTTP/2.
    
    ## Version 2.3.0
    
    _2015-03-16_
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/base/OptionalTest.java

      }
    
      @SuppressWarnings("unused") // compilation test
      public void testSampleCodeFine2() {
        FluentIterable<? extends Number> numbers = getSomeNumbers();
    
        // Sadly, the following is what users will have to do in some circumstances.
    
        @SuppressWarnings("unchecked") // safe covariant cast
        Optional<Number> first = (Optional<Number>) numbers.first();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top