Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 605 for diag (0.04 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    			case REG_CR7:
    				r = BI_CR7
    			default:
    				c.ctxt.Diag("unrecognized register: expecting CR\n")
    			}
    		}
    		v := int32(0)
    		if p.To.Target() != nil {
    			v = int32(p.To.Target().Pc - p.Pc)
    		}
    		if v&03 != 0 {
    			c.ctxt.Diag("odd branch target address\n%v", p)
    			v &^= 03
    		}
    
    		if v < -(1<<16) || v >= 1<<15 {
    			c.ctxt.Diag("branch too far\n%v", p)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. istioctl/pkg/analyze/analyze.go

    	return FileParseString
    }
    
    var (
    	listAnalyzers     bool
    	useKube           bool
    	failureThreshold  = formatting.MessageThreshold{Level: diag.Error} // messages at least this level will generate an error exit code
    	outputThreshold   = formatting.MessageThreshold{Level: diag.Info}  // messages at least this level will be included in the output
    	colorize          bool
    	msgOutputFormat   string
    	meshCfgFile       string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/obj7.go

    		// MOVD $sym, Rx becomes MOVD sym@GOT, Rx
    		// MOVD $sym+<off>, Rx becomes MOVD sym@GOT, Rx; ADD <off>, Rx
    		if p.As != AMOVD {
    			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: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/util/find_errorline_utils.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    import (
    	"fmt"
    	"strings"
    
    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/resource"
    )
    
    const (
    	// Path templates for different fields with different paths, may edited by future developers if not covered in this list
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/pcln.go

    	}
    
    	if started {
    		if dbg {
    			ctxt.Logf("%6x done\n", uint64(fn.Text.Pc+func_.Size))
    		}
    		v := (func_.Size - pc) / int64(ctxt.Arch.MinLC)
    		if v < 0 {
    			ctxt.Diag("negative pc offset: %v", v)
    		}
    		n := binary.PutUvarint(buf, uint64(v))
    		dst = append(dst, buf[:n]...)
    		// add terminating varint-encoded 0, which is just 0
    		dst = append(dst, 0)
    	}
    
    	if dbg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

    }
    
    std::unique_ptr<tfrt::CoreRuntime> CreateTestCoreRuntime() {
      auto corert = tfrt::CoreRuntime::Create(
          /*diag_handler=*/[](const tfrt::DecodedDiagnostic&
                                  diag) { LOG(ERROR) << diag.message(); },
          tfrt::CreateMallocAllocator(),
          tfrt::CreateMultiThreadedWorkQueue(16, 16));
      CHECK(corert);
      auto fallback_op_handler = tensorflow::tfd::CreateKernelFallbackOpHandler(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    		var opcode uint32
    		switch p.As {
    		default:
    			c.ctxt.Diag("unexpected opcode %v", p.As)
    		case AKM, AKMC, AKLMD:
    			if p.From.Reg == REG_R0 {
    				c.ctxt.Diag("input must not be R0 in %v", p)
    			}
    			if p.From.Reg&1 != 0 {
    				c.ctxt.Diag("input must be even register in %v", p)
    			}
    			if p.To.Reg == REG_R0 {
    				c.ctxt.Diag("second argument must not be R0 in %v", p)
    			}
    			if p.To.Reg&1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    		if rm == nil || rm.Type != obj.TYPE_MEM {
    			ctxt.Diag("illegal broadcast without memory argument: %v", p)
    		} else if !evex.BroadcastEnabled() {
    			ctxt.Diag("unsupported broadcast: %v", p)
    		}
    		evexB = 1
    	case suffix.sae:
    		if rm != nil && rm.Type == obj.TYPE_MEM {
    			ctxt.Diag("illegal SAE with memory argument: %v", p)
    		} else if !evex.SaeEnabled() {
    			ctxt.Diag("unsupported SAE: %v", p)
    		}
    		evexB = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. pkg/config/analysis/diag/helper.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package diag
    
    import (
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/resource"
    )
    
    var (
    	_ resource.Origin    = &testOrigin{}
    	_ resource.Reference = &testReference{}
    )
    
    type testOrigin struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. pkg/config/analysis/diag/level.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package diag
    
    import (
    	"strings"
    )
    
    // Level is the severity level of a message.
    type Level struct {
    	sortOrder int
    	name      string
    }
    
    func (l Level) String() string {
    	return l.name
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top