Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for mishandled (0.26 sec)

  1. src/cmd/compile/internal/test/shift_test.go

    		t.Errorf("shift overflow mishandled")
    	}
    	if one16>>N>>N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one16u>>N>>N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one8<<N<<N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one8>>N>>N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one8u>>N>>N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  2. src/mime/mediatype_test.go

    		// at least when the source page is served with UTF-8.
    		{`form-data; firstname="Брэд"; lastname="Фицпатрик"`,
    			"form-data",
    			m("firstname", "Брэд", "lastname", "Фицпатрик")},
    
    		// Empty string used to be mishandled.
    		{`foo; bar=""`, "foo", m("bar", "")},
    
    		// Microsoft browsers in intranet mode do not think they need to escape \ in file name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    		if r == 0 {
    			r = int(p.To.Reg)
    		}
    		if r0iszero != 0 /*TypeKind(100016)*/ && p.To.Reg == 0 {
    			c.ctxt.Diag("literal operation on R0\n%v", p)
    		}
    		if int32(int16(v)) != v {
    			log.Fatalf("mishandled instruction %v", p)
    		}
    		o1 = AOP_IRR(c.opirr(p.As), uint32(p.To.Reg), uint32(r), uint32(v))
    
    	case 5: /* syscall */
    		o1 = c.oprrr(p.As)
    
    	case 6: /* logical op Rb,[Rs,]Ra; no literal */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. test/fixedbugs/bug517.go

    // run
    
    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The gofrontend used to mishandle this code due to a pass ordering issue.
    // It was inconsistent as to whether unsafe.Sizeof(byte(0)) was a constant,
    // and therefore as to whether it was a direct-iface type.
    
    package main
    
    import "unsafe"
    
    type A [unsafe.Sizeof(byte(0))]*byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 20 03:00:06 UTC 2023
    - 703 bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/list.go

    	for _, item := range list.Items {
    		item := item.(*Item)
    		if len(item.Blocks) == 0 {
    			// Goldmark mishandles what follows; see testdata/extra.txt 111.md.
    			return true
    		}
    		switch item.Blocks[0].(type) {
    		case *List, *ThematicBreak, *CodeBlock:
    			// Goldmark mishandles a list with various block items inside it.
    			return true
    		}
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/runtime/signal_darwin_amd64.go

    		// The hardware delivers a different kind of fault for a malformed address
    		// than it does for an attempt to access a valid but unmapped address.
    		// OS X 10.9.2 mishandles the malformed address case, making it look like
    		// a user-generated signal (like someone ran kill -SEGV ourpid).
    		// We pass user-generated signals to os/signal, or else ignore them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/code.go

    	var n int
    	if t := s; t.trimFence(&fence, &info, &n) && strings.HasPrefix(fence, c.fence) && info == "" {
    		return line{}, false
    	}
    	if !s.trimSpace(c.n, c.n, false) {
    		p.corner = true // goldmark mishandles fenced blank lines with not enough spaces
    		s.trimSpace(0, c.n, false)
    	}
    	c.text = append(c.text, s.string())
    	p.corner = p.corner || s.nl != '\n' // goldmark does not normalize to \n
    	return line{}, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsServer.groovy

                            println("This expectation for the request [${request.method} :${request.pathInfo}] was already handled - skipping")
                            return
                        }
                        if (!baseRequest.isHandled()) {
                            expectation.atomicRun.set(true)
                            action.handle(request, response)
                            baseRequest.setHandled(true)
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  9. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Server.groovy

                            return
                        }
                        if (!((Request) request).isHandled()) {
                            expectation.atomicRun.set(true)
                            action.handle(request, response)
                            ((Request) request).setHandled(true)
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/html.go

    				return nil, 0, false
    			}
    			_, k, ok := parseAttr(p, s, j)
    			if !ok {
    				break
    			}
    			j = k
    		}
    		k := skipSpace(s, j)
    		if k != j {
    			// Goldmark mishandles spaces before >.
    			p.corner = true
    		}
    		j = k
    		if j < len(s) && s[j] == '/' {
    			j++
    		}
    		if j < len(s) && s[j] == '>' {
    			return &HTMLTag{s[i : j+1]}, j + 1, true
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top