Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for badly (0.14 sec)

  1. android/guava/src/com/google/common/base/Verify.java

     *       class instead.
     *   <li>If checking an <i>impossible</i> condition (which <i>cannot</i> happen unless your own
     *       class or its <i>trusted</i> dependencies is badly broken), this is what ordinary Java
     *       assertions are for. Note that assertions are not enabled by default; they are essentially
     *       considered "compiled comments."
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf_test.go

    	if section.Flags&elf.SHF_ALLOC != 0 {
    		t.Fatal("expected zero alloc flag got nonzero for .shstrtab")
    	}
    	for idx, p := range elfFile.Progs {
    		if section.Offset >= p.Off && section.Offset < p.Off+p.Filesz {
    			t.Fatalf("badly formed .shstrtab, is contained in segment %d", idx)
    		}
    	}
    }
    
    func TestElfBindNow(t *testing.T) {
    	t.Parallel()
    	testenv.MustHaveGoBuild(t)
    
    	const (
    		prog = `package main; func main() {}`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top