Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,171 for debugT (0.1 sec)

  1. test/fixedbugs/issue30898.go

    package foo
    
    func debugf(format string, args ...interface{}) { // ERROR "can inline debugf" "format does not escape" "args does not escape"
    	// Dummy implementation for non-debug build.
    	// A non-empty implementation would be enabled with a build tag.
    }
    
    func bar() { // ERROR "can inline bar"
    	value := 10
    	debugf("value is %d", value) // ERROR "inlining call to debugf" "value does not escape" "\.\.\. argument does not escape"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:45 UTC 2021
    - 676 bytes
    - Viewed (0)
  2. src/cmd/asm/internal/flags/flags.go

    }
    
    var (
    	D        MultiFlag
    	I        MultiFlag
    	PrintOut int
    	DebugV   bool
    )
    
    func init() {
    	flag.Var(&D, "D", "predefined symbol with optional simple value -D=identifier=value; can be set multiple times")
    	flag.Var(&I, "I", "include directory; can be set multiple times")
    	flag.BoolVar(&DebugV, "v", false, "print debug output")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/ztunnelserver.go

    	for {
    		log.Debug("accepting conn")
    		conn, err := z.accept()
    		if err != nil {
    			if errors.Is(err, net.ErrClosed) {
    				log.Debug("listener closed - returning")
    				return
    			}
    
    			log.Errorf("failed to accept conn: %v", err)
    			continue
    		}
    		log.Debug("connection accepted")
    		go func() {
    			log.Debug("handling conn")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/quantize-numeric-verify.mlir

    // MODEL-DEBUG: %[[f_sqrt2:.*]] = "tfl.sqrt"(%[[f_sqrt1]])
    // MODEL-DEBUG-NOT: debug_
    // MODEL-DEBUG-SAME: (tensor<?x1x1x3xf32>)
    // MODEL-DEBUG: %[[q_sqrt2:.*]] = "tfl.sqrt"(%[[dq1]]
    // MODEL-DEBUG-NOT: debug_
    // MODEL-DEBUG-SAME: (tensor<?x1x1x3xf32>)
    // MODEL-DEBUG: %[[q2:.*]] = "tfl.quantize"(%[[q_sqrt2]])
    // MODEL-DEBUG: %[[f_mul:.*]] = tfl.mul %[[f_sqrt2]], %[[f_conv]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. cni/pkg/log/uds.go

    		log.Debugf("Failed to unmarshal CNI plugin log entry: %v", err)
    		return cniLog{}, false
    	}
    	var msg cniLog
    	if err := json.Unmarshal(raw["msg"], &msg.Msg); err != nil {
    		log.Debugf("Failed to unmarshal CNI plugin log entry: %v", err)
    		return cniLog{}, false
    	}
    	if err := json.Unmarshal(raw["level"], &msg.Level); err != nil {
    		log.Debugf("Failed to unmarshal CNI plugin log entry: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/net.go

    		hostsideProbeIPSet:   probeSet,
    	}
    }
    
    func (s *NetServer) Start(ctx context.Context) {
    	log.Debug("starting ztunnel server")
    	go s.ztunnelServer.Run(ctx)
    }
    
    func (s *NetServer) Stop() {
    	log.Debug("removing host iptables rules")
    	s.iptablesConfigurator.DeleteHostRules()
    
    	log.Debug("destroying host ipset")
    	s.hostsideProbeIPSet.Flush()
    	if err := s.hostsideProbeIPSet.DestroySet(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. pkg/log/default_test.go

    		caller     bool
    		wantExit   bool
    		stackLevel Level
    	}{
    		{
    			f:   func() { Debug("Hello") },
    			pat: timePattern + "\tdebug\tHello",
    		},
    		{
    			f:   func() { Debugf("Hello") },
    			pat: timePattern + "\tdebug\tHello",
    		},
    		{
    			f:   func() { Debugf("%s", "Hello") },
    			pat: timePattern + "\tdebug\tHello",
    		},
    
    		{
    			f:   func() { Info("Hello") },
    			pat: timePattern + "\tinfo\tHello",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. cmd/metacache-bucket.go

    	return &bucketMetacache{
    		bucket:     bucket,
    		caches:     make(map[string]metacache, 10),
    		cachesRoot: make(map[string][]string, 10),
    	}
    }
    
    func (b *bucketMetacache) debugf(format string, data ...interface{}) {
    	if serverDebugLog {
    		console.Debugf(format+"\n", data...)
    	}
    }
    
    // findCache will attempt to find a matching cache for the provided options.
    // If a cache with the same ID exists already it will be returned.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/xdsgen.go

    	switch {
    	case !req.Full:
    		if log.DebugEnabled() {
    			log.Debugf("%s: %s%s for node:%s resources:%d size:%s%s",
    				v3.GetShortType(w.TypeUrl), ptype, req.PushReason(), con.proxy.ID, len(res), util.ByteCount(configSize), info)
    		}
    	default:
    		debug := ""
    		if log.DebugEnabled() {
    			// Add additional information to logs when debug mode enabled.
    			debug = " nonce:" + resp.Nonce + " version:" + resp.VersionInfo
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. operator/pkg/validate/validate.go

    		}
    		msg += fmt.Sprintf("validate %s: OK (empty value)", pstr)
    		scope.Debug(msg)
    		return nil
    	}
    
    	vf, ok := getValidationFuncForPath(validations, path)
    	if !ok {
    		msg += fmt.Sprintf("validate %s: OK (no validation)", pstr)
    		scope.Debug(msg)
    		// No validation defined.
    		return nil
    	}
    	scope.Debug(msg)
    	return vf(path, val)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 12 16:04:15 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top