Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 247 for logf (3.38 sec)

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

    	case 7: /* mov r, soreg ==> stw o(r) */
    		r := int(p.To.Reg)
    		v := c.regoff(&p.To)
    		if int32(int16(v)) != v {
    			log.Fatalf("mishandled instruction %v", p)
    		}
    		// Offsets in DS form stores must be a multiple of 4
    		inst := c.opstore(p.As)
    		if c.opform(inst) == DS_FORM && v&0x3 != 0 {
    			log.Fatalf("invalid offset for DS form load/store %v", p)
    		}
    		o1 = AOP_IRR(inst, uint32(p.From.Reg), uint32(r), uint32(v))
    
    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. pkg/volume/util/operationexecutor/operation_executor.go

    // nestedpendingoperations so that more than one operation is never triggered
    // on the same volume for the same pod.
    package operationexecutor
    
    import (
    	"errors"
    	"fmt"
    	"time"
    
    	"github.com/go-logr/logr"
    
    	"k8s.io/klog/v2"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/util"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. cmd/logging.go

    	logger.LogOnceIf(ctx, "kms", err, id, errKind...)
    }
    
    // LogIf is the implementation of LogIf, accessible using the Logger interface
    func (l KMSLogger) LogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "kms", err, errKind...)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    		if gotObj != wantObj {
    			// Print the scope tree of mainScope in case of error.
    			var printScopeTree func(indent string, s *Scope)
    			printScopeTree = func(indent string, s *Scope) {
    				t.Logf("%sscope %s %v-%v = %v",
    					indent,
    					ScopeComment(s),
    					s.Pos(),
    					s.End(),
    					s.Names())
    				for i := range s.NumChildren() {
    					printScopeTree(indent+"  ", s.Child(i))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/log/nflog.go

    var iptablesTrace = log.RegisterScope("iptables", "trace logs for iptables")
    
    // ReadNFLOGSocket reads from the nflog socket, sending output to logs.
    // This is intended for debugging only.
    func ReadNFLOGSocket(ctx context.Context) {
    	if !TraceLoggingEnabled {
    		return
    	}
    	iptablesTrace.Infof("starting nftable log")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    				// can optimize any TLS IE relocation to LE.
    				if thearch.TLSIEtoLE == nil {
    					log.Fatalf("internal linking of TLS IE not supported on %v", target.Arch.Family)
    				}
    				thearch.TLSIEtoLE(P, int(off), int(siz))
    				o = int64(syms.Tlsoffset)
    			} else {
    				log.Fatalf("cannot handle R_TLS_IE (sym %s) when linking internally", ldr.SymName(s))
    			}
    		case objabi.R_ADDR, objabi.R_PEIMAGEOFF:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  7. internal/logger/logger.go

    	if err == nil {
    		return
    	}
    	logIf(ctx, subsystem, err, errKind...)
    }
    
    // LogIf prints a detailed error message during
    // the execution of the server, if it is not an
    // ignored error.
    func LogIf(ctx context.Context, subsystem string, err error, errKind ...interface{}) {
    	if logIgnoreError(err) {
    		return
    	}
    	logIf(ctx, subsystem, err, errKind...)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_logs.go

    	// Convert v1.PodLogOptions into internal log options.
    	opts := logs.NewLogOptions(apiOpts, time.Now())
    	logger := klog.Background()
    	return logs.ReadLogs(ctx, &logger, path, containerID, opts, m.runtimeService, stdout, stderr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

        }
      }
    
      // Relies on the correctness of log2(BigInteger, {HALF_UP,HALF_DOWN}).
      public void testLog2HalfEven() {
        for (BigInteger x : POSITIVE_BIGINTEGER_CANDIDATES) {
          int halfEven = BigIntegerMath.log2(x, HALF_EVEN);
          // Now figure out what rounding mode we should behave like (it depends if FLOOR was
          // odd/even).
          boolean floorWasEven = (BigIntegerMath.log2(x, FLOOR) & 1) == 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    						tocopy, i, a[i], i, b[i], i, c[i])
    				} else {
    					t.Errorf("(iii) tocopy=%d b[%d]=%d, c[%d]=%d",
    						tocopy, i, b[i], i, c[i])
    				}
    			} else {
    				t.Logf("tocopy=%d elem %d is okay\n", tocopy, i)
    			}
    		}
    	}
    }
    
    func TestCopyString(t *testing.T) {
    	t.Run("Slice", func(t *testing.T) {
    		s := bytes.Repeat([]byte{'_'}, 8)
    		val := ValueOf(s)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top