Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 293 for vlogf (0.05 sec)

  1. src/crypto/tls/boring_test.go

    		serverConfig.BuildNameToCertificate()
    
    		clientErr, _ := boringHandshake(t, clientConfig, serverConfig)
    
    		if (clientErr == nil) == ok {
    			if ok {
    				t.Logf("%s: accept", desc)
    			} else {
    				t.Logf("%s: reject", desc)
    			}
    		} else {
    			if ok {
    				t.Errorf("%s: BAD reject (%v)", desc, clientErr)
    			} else {
    				t.Errorf("%s: BAD accept", desc)
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    					t.Fatal("invalid test case: no difference between the example encoding and the expected re-encoding")
    				}
    				t.Logf("expecting the following differences from the example encoding on re-encode:\n%s", diff)
    				t.Logf("reasons for encoding differences:")
    				for _, reason := range tc.reasons {
    					t.Logf("- %s", reason)
    				}
    
    			}
    
    			if diff := cmp.Diff(expected, actual); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. security/pkg/k8s/chiron/utils_test.go

    	handler := http.HandlerFunc(func(resp http.ResponseWriter, req *http.Request) {
    		t.Logf("request: %+v", *req)
    		switch req.URL.Path {
    		default:
    			t.Logf("The request contains path: %v", req.URL)
    			resp.WriteHeader(http.StatusOK)
    		}
    	})
    
    	server.httpServer = httptest.NewTLSServer(handler)
    
    	t.Logf("Serving TLS at: %v", server.httpServer.URL)
    
    	return server
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/scheduler/rate_limited_queue_test.go

    	delay := 0
    	// the current time is incremented by 1ms every time now is invoked
    	now = func() time.Time {
    		if delay > 0 {
    			delay--
    		} else {
    			current = current.Add(time.Millisecond)
    		}
    		t.Logf("time %d", current.UnixNano())
    		return current
    	}
    	evictor := NewRateLimitedTimedQueue(flowcontrol.NewFakeAlwaysRateLimiter())
    	evictor.Add("first", "11111")
    	evictor.Add("second", "22222")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 17:40:33 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/cmd/internal/dwarf/dwarf.go

    			}
    		}
    		if len(flattened) > 0 {
    			sort.Sort(byChildIndex(flattened))
    
    			if logDwarf {
    				ctxt.Logf("putAbstractScope(%v): vars:", s.Info)
    				for i, v := range flattened {
    					ctxt.Logf(" %d:%s", i, v.Name)
    				}
    				ctxt.Logf("\n")
    			}
    
    			// This slice will hold the offset in bytes for each child
    			// variable DIE with respect to the start of the parent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  6. src/runtime/malloc_test.go

    	var mismatches [128]BitsMismatch
    	if n, ok := CheckScavengedBitsCleared(mismatches[:]); !ok {
    		t.Errorf("uncleared scavenged bits")
    		for _, m := range mismatches[:n] {
    			t.Logf("\t@ address 0x%x", m.Base)
    			t.Logf("\t|  got: %064b", m.Got)
    			t.Logf("\t| want: %064b", m.Want)
    		}
    		t.FailNow()
    	}
    }
    
    type acLink struct {
    	x [1 << 20]byte
    }
    
    var arenaCollisionSink []*acLink
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. src/runtime/metrics_test.go

    	}
    
    	// We couldn't observe the expected idle time even once.
    	for i, dt := range failureIdleTimes {
    		t.Logf("try %2d: idle time = %.5fs\n", i+1, dt)
    	}
    	t.Logf("try %d breakdown:\n", len(failureIdleTimes))
    	for i := range names {
    		if m1[i].Value.Kind() == metrics.KindBad {
    			continue
    		}
    		t.Logf("\t%s %0.3f\n", names[i], m2[i].Value.Float64()-m1[i].Value.Float64())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. src/os/pipe_test.go

    		// with no reader.
    		limit = 131073
    		if b, err := os.ReadFile("/proc/sys/fs/pipe-max-size"); err == nil {
    			if i, err := strconv.Atoi(strings.TrimSpace(string(b))); err == nil {
    				limit = i + 1
    			}
    		}
    		t.Logf("using pipe write limit of %d", limit)
    	}
    
    	r, w, err := os.Pipe()
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer r.Close()
    	defer w.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/deadcode.go

    				m := d.decodeIfaceMethod(d.ldr, d.ctxt.Arch, rs, r.Add())
    				if d.ctxt.Debugvlog > 1 {
    					d.ctxt.Logf("reached iface method: %v\n", m)
    				}
    				d.ifaceMethod[m] = true
    				continue
    			case objabi.R_USENAMEDMETHOD:
    				name := d.decodeGenericIfaceMethod(d.ldr, r.Sym())
    				if d.ctxt.Debugvlog > 1 {
    					d.ctxt.Logf("reached generic iface method: %s\n", name)
    				}
    				d.genericIfaceMethod[name] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_client_test.go

    		},
    		{
    			name:     "grpc error",
    			mustFail: true,
    			err:      errors.New("grpc error"),
    		},
    	}
    
    	for _, tc := range testCases {
    		t.Logf("test case: %s", tc.name)
    
    		fakeCloser := fake.NewCloser(t)
    		client := &csiDriverClient{
    			driverName: "Fake Driver Name",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top