Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 126 for Bad (0.03 sec)

  1. src/cmd/internal/obj/loong64/asm.go

    		return 0x0c1<<20 | 0x3<<15 // FCMP.SLT.S
    
    	case ASQRTF:
    		return 0x4511 << 10
    	case ASQRTD:
    		return 0x4512 << 10
    	}
    
    	if a < 0 {
    		c.ctxt.Diag("bad rrr opcode -%v", -a)
    	} else {
    		c.ctxt.Diag("bad rrr opcode %v", a)
    	}
    	return 0
    }
    
    func (c *ctxt0) oprr(a obj.As) uint32 {
    	switch a {
    	case ACLO:
    		return 0x4 << 10
    	case ACLZ:
    		return 0x5 << 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	}
    	return c.badPointerTypedef(dt)
    }
    
    func (c *typeConv) badCFType(dt *dwarf.TypedefType) bool {
    	// The real bad types are CFNumberRef and CFDateRef.
    	// Sometimes non-pointers are stored in these types.
    	// CFTypeRef is a supertype of those, so it can have bad pointers in it as well.
    	// We return true for the other *Ref types just so casting between them is easier.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    						if strings.Contains(line.Function.Name, name) {
    							avoidSamples[i] += count
    						}
    					}
    				}
    			}
    		}
    
    		for i, name := range avoid {
    			bad := avoidSamples[i]
    			if bad != 0 {
    				t.Logf("found %d samples in avoid-function %s\n", bad, name)
    				ok = false
    			}
    		}
    
    		if len(need) == 0 {
    			return
    		}
    
    		var total uintptr
    		for i, name := range need {
    			total += have[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/parser.go

    	d.Path = p.oliteral()
    	if d.Path == nil {
    		p.syntaxError("missing import path")
    		p.advance(_Semi, _Rparen)
    		return d
    	}
    	if !d.Path.Bad && d.Path.Kind != StringLit {
    		p.syntaxErrorAt(d.Path.Pos(), "import path must be a string")
    		d.Path.Bad = true
    	}
    	// d.Path.Bad || d.Path.Kind == StringLit
    
    	return d
    }
    
    // ConstSpec = IdentifierList [ [ Type ] "=" ExpressionList ] .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/asm0.go

    	case ADSHD:
    		return SP(3, 7) | OP(44, 4)
    	case ASEB:
    		return SP(3, 7) | OP(132, 0)
    	case ASEH:
    		return SP(3, 7) | OP(196, 0)
    	}
    
    	if a < 0 {
    		c.ctxt.Diag("bad rrr opcode -%v", -a)
    	} else {
    		c.ctxt.Diag("bad rrr opcode %v", a)
    	}
    	return 0
    }
    
    func (c *ctxt0) opirr(a obj.As) uint32 {
    	switch a {
    	case AADD:
    		return SP(1, 0)
    	case AADDU:
    		return SP(1, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/asm5.go

    		for optab[i].as == r {
    			i++
    		}
    		oprange[r0] = optab[start:i]
    		i--
    
    		switch r {
    		default:
    			ctxt.Diag("unknown op in build: %v", r)
    			ctxt.DiagFlush()
    			log.Fatalf("bad code")
    
    		case AADD:
    			opset(ASUB, r0)
    			opset(ARSB, r0)
    			opset(AADC, r0)
    			opset(ASBC, r0)
    			opset(ARSC, r0)
    
    		case AORR:
    			opset(AEOR, r0)
    			opset(ABIC, r0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal_test.go

    		MarshalOnly: true,
    	},
    	{
    		ExpectXML:    `<IndirComment><T1></T1><T2></T2></IndirComment>`,
    		Value:        &IndirComment{Comment: nil},
    		MarshalError: "xml: bad type for comment field of xml.IndirComment",
    	},
    	{
    		ExpectXML:     `<IndirComment><T1></T1><!--hi--><T2></T2></IndirComment>`,
    		Value:         &IndirComment{Comment: nil},
    		UnmarshalOnly: true,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  8. cmd/xl-storage_test.go

    			volume: "i-dont-exist",
    			path:   "",
    			err:    errVolumeNotFound,
    		},
    		// TestXLStorage case - 2.
    		// Validate bad condition file does not exist.
    		{
    			volume: "exists",
    			path:   "as-file-not-found",
    			err:    errFileNotFound,
    		},
    		// TestXLStorage case - 3.
    		// Validate bad condition file exists as prefix/directory and
    		// we are attempting to read it.
    		{
    			volume: "exists",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  9. src/runtime/asm_amd64.s

    	// at an intermediate systemstack.
    	MOVQ	DI, DX
    	MOVQ	0(DI), DI
    	// The function epilogue is not called on a tail call.
    	// Pop BP from the stack to simulate it.
    	POPQ	BP
    	JMP	DI
    
    bad:
    	// Bad: g is not gsignal, not g0, not curg. What is it?
    	MOVQ	$runtime·badsystemstack(SB), AX
    	CALL	AX
    	INT	$3
    
    // func switchToCrashStack0(fn func())
    TEXT runtime·switchToCrashStack0<ABIInternal>(SB), NOSPLIT, $0-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                action.execute(component.getImplicitCapability());
            } else {
                // The isEmpty check is not required, might look innocent, but Guava's performance bad for an empty immutable list
                // because it still creates an inner class for an iterator, which delegates to an Array iterator, which does... nothing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top