Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for logb (0.06 sec)

  1. src/math/all_test.go

    	for i := 0; i < len(vf); i++ {
    		if f := Logb(vf[i]); logb[i] != f {
    			t.Errorf("Logb(%g) = %g, want %g", vf[i], f, logb[i])
    		}
    	}
    	for i := 0; i < len(vflogbSC); i++ {
    		if f := Logb(vflogbSC[i]); !alike(logbSC[i], f) {
    			t.Errorf("Logb(%g) = %g, want %g", vflogbSC[i], f, logbSC[i])
    		}
    	}
    	for i := 0; i < len(vffrexpBC); i++ {
    		if f := Logb(vffrexpBC[i]); !alike(logbBC[i], f) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  2. index.yaml

        description: High Performance Object Storage
        digest: 8ef4212d7d51be6c8192b3e91138a9ca918ca56142c42500028cfd3b80e0b2dd
        home: https://min.io
        icon: https://min.io/resources/img/logo/MINIO_wordmark.png
        keywords:
        - minio
        - storage
        - object-storage
        - s3
        - cluster
        maintainers:
        - email: ******@****.***
          name: MinIO, Inc
        name: minio
        sources:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager_test.go

    	t.Logf("syncBatch should not sync any pods because nothing is changed.")
    	m.testSyncBatch()
    	verifyActions(t, m, []core.Action{})
    
    	t.Logf("Change mirror pod identity.")
    	m.podManager.(mutablePodManager).RemovePod(mirrorPod)
    	mirrorPod.UID = "new-mirror-pod"
    	mirrorPod.Status = v1.PodStatus{}
    	m.podManager.(mutablePodManager).AddPod(mirrorPod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  4. src/testing/testing.go

    	c.log(fmt.Sprintf(format, args...))
    }
    
    // Error is equivalent to Log followed by Fail.
    func (c *common) Error(args ...any) {
    	c.checkFuzzFn("Error")
    	c.log(fmt.Sprintln(args...))
    	c.Fail()
    }
    
    // Errorf is equivalent to Logf followed by Fail.
    func (c *common) Errorf(format string, args ...any) {
    	c.checkFuzzFn("Errorf")
    	c.log(fmt.Sprintf(format, args...))
    	c.Fail()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/net/http/client_test.go

    	}
    }
    
    // RecordingJar keeps a log of calls made to it, without
    // tracking any cookies.
    type RecordingJar struct {
    	mu  sync.Mutex
    	log bytes.Buffer
    }
    
    func (j *RecordingJar) SetCookies(u *url.URL, cookies []*Cookie) {
    	j.logf("SetCookie(%q, %v)\n", u, cookies)
    }
    
    func (j *RecordingJar) Cookies(u *url.URL) []*Cookie {
    	j.logf("Cookies(%q)\n", u)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    		argv = append(argv, peimporteddlls()...)
    	}
    
    	argv = ctxt.passLongArgsInResponseFile(argv, altLinker)
    
    	if ctxt.Debugvlog != 0 {
    		ctxt.Logf("host link:")
    		for _, v := range argv {
    			ctxt.Logf(" %q", v)
    		}
    		ctxt.Logf("\n")
    	}
    
    	cmd := exec.Command(argv[0], argv[1:]...)
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    			bad := avoidSamples[i]
    			if bad != 0 {
    				t.Logf("found %d samples in avoid-function %s\n", bad, name)
    				ok = false
    			}
    		}
    
    		if len(need) == 0 {
    			return
    		}
    
    		var total uintptr
    		for i, name := range need {
    			total += have[i]
    			t.Logf("found %d samples in expected function %s\n", have[i], name)
    		}
    		if total == 0 {
    			t.Logf("no samples in expected functions")
    			ok = false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	if goodSliceOfRequests(qsd.QueuelessExecutingRequests) {
    		t.Logf("Found user %s among queueless requests", username)
    		return
    	}
    	goodQueueDump := func(qd debug.QueueDump) bool {
    		return goodSliceOfRequests(qd.Requests) || goodSliceOfRequests(qd.RequestsExecuting)
    	}
    	if SliceMapReduce(goodQueueDump, or)(qsd.Queues) {
    		t.Logf("Found user %s among queued requests", username)
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    		tg.setenv("GOROOT", testGOROOT)
    	}
    
    	tg.t.Logf("running testgo %v", args)
    	cmd := testenv.Command(tg.t, prog, args...)
    	tg.stdout.Reset()
    	tg.stderr.Reset()
    	cmd.Dir = tg.execDir
    	cmd.Stdout = &tg.stdout
    	cmd.Stderr = &tg.stderr
    	cmd.Env = tg.env
    	status := cmd.Run()
    	if tg.stdout.Len() > 0 {
    		tg.t.Log("standard output:")
    		tg.t.Log(tg.stdout.String())
    	}
    	if tg.stderr.Len() > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    				if actualCallCount == expectedAttachCallCount {
    					return true, nil
    				}
    				t.Logf(
    					"Warning: Wrong attacher[%v].GetAttachCallCount(). Expected: <%v> Actual: <%v>. Will try next attacher.",
    					i,
    					expectedAttachCallCount,
    					actualCallCount)
    			}
    
    			t.Logf(
    				"Warning: No attachers have expected AttachCallCount. Expected: <%v>. Will retry.",
    				expectedAttachCallCount)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
Back to top