Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 605 for diag (0.35 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    		d := p.From.Offset
    		if d == 0 {
    			c.ctxt.Diag("zero shifts cannot be handled correctly: %v", p)
    		}
    		s := movcon(d)
    		if s < 0 || s >= 4 {
    			c.ctxt.Diag("bad constant for MOVK: %#x\n%v", uint64(d), p)
    		}
    		if (o1&S64) == 0 && s >= 2 {
    			c.ctxt.Diag("illegal bit position\n%v", p)
    		}
    		if ((uint64(d) >> uint(s*16)) >> 16) != 0 {
    			c.ctxt.Diag("requires uimm16\n%v", p)
    		}
    		rt := int(p.To.Reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/data.go

    func (s *LSym) prepwrite(ctxt *Link, off int64, siz int) {
    	if off < 0 || siz < 0 || off >= 1<<30 {
    		ctxt.Diag("prepwrite: bad off=%d siz=%d s=%v", off, siz, s)
    	}
    	switch s.Type {
    	case objabi.Sxxx, objabi.SBSS:
    		s.Type = objabi.SDATA
    	case objabi.SNOPTRBSS:
    		s.Type = objabi.SNOPTRDATA
    	case objabi.STLSBSS:
    		ctxt.Diag("cannot supply data for %v var %v", s.Type, s.Name)
    	}
    	l := off + int64(siz)
    	s.Grow(l)
    	if l > s.Size {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 24 14:38:53 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  3. pkg/config/analysis/local/local.go

    package local
    
    import (
    	"istio.io/istio/pkg/config/analysis/diag"
    )
    
    const (
    	meshConfigMapKey   = "mesh"
    	meshConfigMapName  = "istio"
    	meshNetworksMapKey = "meshNetworks"
    )
    
    // AnalysisResult represents the returnable results of an analysis execution
    type AnalysisResult struct {
    	Messages          diag.Messages
    	MappedMessages    map[string]diag.Messages
    	SkippedAnalyzers  []string
    	ExecutedAnalyzers []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 20:21:54 UTC 2023
    - 984 bytes
    - Viewed (0)
  4. pkg/config/analysis/testing/fixtures/context.go

    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/resource"
    )
    
    // Context is a test fixture of analysis.Context
    type Context struct {
    	Resources []*resource.Instance
    	Reports   []diag.Message
    }
    
    var _ analysis.Context = &Context{}
    
    // Report implements analysis.Context
    func (ctx *Context) Report(_ config.GroupVersionKind, t diag.Message) {
    	ctx.Reports = append(ctx.Reports, t)
    }
    
    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. istioctl/pkg/util/formatting/msg_threshold.go

    package formatting
    
    import (
    	"errors"
    	"strings"
    
    	"istio.io/istio/pkg/config/analysis/diag"
    )
    
    // MessageThreshold is a wrapper around Level to be used as a cobra command line argument.
    // It should satisfy the pflag.Value interface.
    type MessageThreshold struct {
    	diag.Level
    }
    
    // String is a function declared in the pflag.Value interface
    func (m *MessageThreshold) String() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/local/context.go

    func (i *istiodContext) Report(c config.GroupVersionKind, m diag.Message) {
    	msgs := i.messages[i.currentAnalyzer]
    	if msgs == nil {
    		msgs = &diag.Messages{}
    		i.messages[i.currentAnalyzer] = msgs
    	}
    	msgs.Add(m)
    }
    
    func (i *istiodContext) SetAnalyzer(analyzerName string) {
    	i.currentAnalyzer = analyzerName
    }
    
    func (i *istiodContext) GetMessages(analyzerNames ...string) diag.Messages {
    	result := diag.Messages{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pkg/config/analysis/incluster/controller.go

    			}
    			chKind <- gvk
    		})
    	}
    	oldmsgs := map[string]diag.Messages{}
    	pushFn := func(combinedKinds sets.Set[config.GroupVersionKind]) {
    		res, err := c.analyzer.ReAnalyzeSubset(combinedKinds, stop)
    		if err != nil {
    			log.Errorf("In-cluster analysis has failed: %s", err)
    			return
    		}
    		// reorganize messages to map
    		index := map[status.Resource]diag.Messages{}
    		for _, m := range res.Messages {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/asm5.go

    	if p.Scond&C_SBIT != 0 && o.scond&C_SBIT == 0 {
    		c.ctxt.Diag("invalid .S suffix: %v", p)
    	}
    	if p.Scond&C_PBIT != 0 && o.scond&C_PBIT == 0 {
    		c.ctxt.Diag("invalid .P suffix: %v", p)
    	}
    	if p.Scond&C_WBIT != 0 && o.scond&C_WBIT == 0 {
    		c.ctxt.Diag("invalid .W suffix: %v", p)
    	}
    	if p.Scond&C_UBIT != 0 && o.scond&C_UBIT == 0 {
    		c.ctxt.Diag("invalid .U suffix: %v", p)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/metrics/error_collector_inst.h

    inline InFlightDiagnostic AttachErrorCode(InFlightDiagnostic &&diag,
                                              int error_code) {
      using tflite::metrics::ConverterErrorData;
      diag.attachNote() << kErrorCodePrefix
                        << ConverterErrorData::ErrorCode_Name(error_code);
      return std::move(diag);
    }
    
    }  // namespace TFL
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/error_util.cc

                fileLoc.getFilename().str());
          } else {
            // If this is a non-FileLineColLoc, go ahead and include it.
            return true;
          }
        };
      }
    
      setHandler([this](Diagnostic& diag) { return this->handler(&diag); });
    }
    
    Status StatusScopedDiagnosticHandler::ConsumeStatus() {
      return BaseScopedDiagnosticHandler::ConsumeStatus();
    }
    
    Status StatusScopedDiagnosticHandler::Combine(Status status) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top