Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 450 for diag (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

      (TF_MatrixSetDiagOp:$src $input, $diag),
      (TF_MatrixSetDiagV3Op:$dest $input, $diag, (TF_ConstOp (GetI32Attr<0>)),
        (GetStrAttr<"RIGHT_LEFT">)),
      [], [(CopyAttrs $src, $dest)]>;
    
    // MatrixSetDiagToV2 op implicitly used LEFT_LEFT alignment.
    def MatrixSetDiagV2ToV3 : Pat<
      (TF_MatrixSetDiagV2Op:$src $input, $diag, $k),
      (TF_MatrixSetDiagV3Op:$dest $input, $diag, $k, (GetStrAttr<"LEFT_LEFT">)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/seh.go

    			pushbp = p
    			break
    		}
    		if p.Pos.Xlogue() == src.PosPrologueEnd {
    			break
    		}
    	}
    	if pushbp == nil {
    		ctxt.Diag("missing frame pointer instruction: PUSHQ BP")
    		return
    	}
    
    	// It must be followed by a MOVQ SP, BP.
    	movbp := pushbp.Link
    	if movbp == nil {
    		ctxt.Diag("missing frame pointer instruction: MOVQ SP, BP")
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    // with context specified by the -c flag.
    func PrintPlain(fset *token.FileSet, diag analysis.Diagnostic) {
    	posn := fset.Position(diag.Pos)
    	fmt.Fprintf(os.Stderr, "%s: %s\n", posn, diag.Message)
    
    	// -c=N: show offending line plus N lines of context.
    	if Context >= 0 {
    		posn := fset.Position(diag.Pos)
    		end := fset.Position(diag.End)
    		if !end.IsValid() {
    			end = posn
    		}
    		data, _ := os.ReadFile(posn.Filename)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/context.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package analysis
    
    import (
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/resource"
    )
    
    // IteratorFn is used to iterate over a set of collection entries. It must return true to keep iterating.
    type IteratorFn func(r *resource.Instance) bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 20:21:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. pkg/api/testing/unstructured_test.go

    				}
    				var uCBOR runtime.Object = &metaunstruct.Unstructured{}
    				uCBOR, _, err = cborSerializer.Decode(buf.Bytes(), &gvk, uCBOR)
    				if err != nil {
    					diag, _ := cbor.Diagnose(buf.Bytes())
    					t.Fatalf("error decoding cbor to unstructured: %v, diag: %s", err, diag)
    				}
    
    				// original->JSON->Unstructured == original->CBOR->Unstructured
    				if !apiequality.Semantic.DeepEqual(uJSON, uCBOR) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    			inss = []*instruction{insAUIPC, ins}
    
    		default:
    			p.Ctxt.Diag("unsupported name %d for %v", p.From.Name, p)
    			return nil
    		}
    
    	case p.From.Type == obj.TYPE_ADDR && p.To.Type != obj.TYPE_REG:
    		p.Ctxt.Diag("%v: address load must target register", p)
    		return nil
    
    	default:
    		p.Ctxt.Diag("%v: unsupported MOV", p)
    		return nil
    	}
    
    	return inss
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzer_test.go

    // limitations under the License.
    
    package analysis
    
    import (
    	"testing"
    
    	. "github.com/onsi/gomega"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/collection"
    	resource2 "istio.io/istio/pkg/config/schema/resource"
    )
    
    type analyzer struct {
    	name   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/composite.go

    				}
    			}
    			if allKeyValue {
    				// all the struct fields are keyed
    				continue
    			}
    
    			diag := analysis.Diagnostic{
    				Pos:     cl.Pos(),
    				End:     cl.End(),
    				Message: fmt.Sprintf("%s struct literal uses unkeyed fields", typeName),
    			}
    			if suggestedFixAvailable {
    				diag.SuggestedFixes = []analysis.SuggestedFix{{
    					Message:   "Add field names to struct literal",
    					TextEdits: missingKeys,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/plist.go

    		return
    	}
    	if s.Func() != nil {
    		ctxt.Diag("%s: symbol %s redeclared\n\t%s: other declaration of symbol %s", ctxt.PosTable.Pos(start), s.Name, ctxt.PosTable.Pos(s.Func().Text.Pos), s.Name)
    		return
    	}
    	s.NewFuncInfo()
    	if s.OnList() {
    		ctxt.Diag("%s: symbol %s redeclared", ctxt.PosTable.Pos(start), s.Name)
    		return
    	}
    	if strings.HasPrefix(s.Name, `"".`) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm/obj5.go

    		// MOVW $sym, Rx becomes MOVW sym@GOT, Rx
    		// MOVW $sym+<off>, Rx becomes MOVW sym@GOT, Rx; ADD <off>, Rx
    		if p.As != AMOVW {
    			c.ctxt.Diag("do not know how to handle TYPE_ADDR in %v with -dynlink", p)
    		}
    		if p.To.Type != obj.TYPE_REG {
    			c.ctxt.Diag("do not know how to handle LEAQ-type insn to non-register in %v with -dynlink", p)
    		}
    		p.From.Type = obj.TYPE_MEM
    		p.From.Name = obj.NAME_GOTREF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
Back to top