Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for bt (0.24 sec)

  1. src/runtime/vdso_freebsd.go

    var timekeepSharedPage *vdsoTimekeep
    
    //go:nosplit
    func (bt *bintime) Add(bt2 *bintime) {
    	u := bt.frac
    	bt.frac += bt2.frac
    	if u > bt.frac {
    		bt.sec++
    	}
    	bt.sec += bt2.sec
    }
    
    //go:nosplit
    func (bt *bintime) AddX(x uint64) {
    	u := bt.frac
    	bt.frac += x
    	if u > bt.frac {
    		bt.sec++
    	}
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/internal/weak/pointer_test.go

    	a int
    }
    
    func TestPointer(t *testing.T) {
    	bt := new(T)
    	wt := weak.Make(bt)
    	if st := wt.Strong(); st != bt {
    		t.Fatalf("weak pointer is not the same as strong pointer: %p vs. %p", st, bt)
    	}
    	// bt is still referenced.
    	runtime.GC()
    
    	if st := wt.Strong(); st != bt {
    		t.Fatalf("weak pointer is not the same as strong pointer after GC: %p vs. %p", st, bt)
    	}
    	// bt is no longer referenced.
    	runtime.GC()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/runtime/ehooks_test.go

    				},
    			},
    			{
    				mode:     "exit2",
    				expected: "",
    			},
    		}
    
    		exe, err := buildTestProg(t, "testexithooks", bmode)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		bt := ""
    		if bmode != "" {
    			bt = " bmode: " + bmode
    		}
    		for _, s := range scenarios {
    			cmd := exec.Command(exe, []string{"-mode", s.mode}...)
    			out, _ := cmd.CombinedOutput()
    			outs := strings.ReplaceAll(string(out), "\n", " ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. .github/workflows/stale-pr.yml

                **BUG!** This issue should not be marked stale by the "stale" workflow.
                Please report it to @gradle/bt-support team
              days-before-issue-close: -1
              close-issue-message: >
                **BUG!** This issue should not be closed by the "stale" workflow.
                Please report it to @gradle/bt-support team
              close-issue-reason: not_planned
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users-race_test.go

    		// Init and run test on ErasureSet backend.
    		{serverType: "ErasureSet", signer: signerV4},
    	}
    	testCases := []*TestSuiteIAM{}
    	for _, bt := range baseTestCases {
    		testCases = append(testCases,
    			newTestSuiteIAM(bt, false),
    			newTestSuiteIAM(bt, true),
    		)
    	}
    	for i, testCase := range testCases {
    		etcdStr := ""
    		if testCase.withEtcdBackend {
    			etcdStr = " (with etcd backend)"
    		}
    		t.Run(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/java-test-configurations.dot

    digraph javaTestConfigurations {
    
        rankdir = BT;
        node [fontname="Sans", shape=box, style=filled, fillcolor=chartreuse];
        edge [fontname="Sans"];
    
        /* tasks */
        compileTestJava [fillcolor=darkslategray1, fontname="Courier New"]
        test [fillcolor=darkslategray1, fontname="Courier New"]
    
        testCompileClasspath [fillcolor=lightblue]
        testRuntimeClasspath [fillcolor=lightblue]
    
        /* configurations */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 782 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/java-main-configurations.dot

    digraph javaMainConfigurations {
    
        rankdir = BT;
        node [fontname="Sans", shape=box, style=filled, fillcolor=chartreuse];
        edge [fontname="Sans"];
    
        /* tasks */
        compileJava [fillcolor=darkslategray1, fontname="Courier New"]
    
        /* consumed confs */
        compileClasspath [fillcolor=lightblue]
        runtimeClasspath [fillcolor=lightblue]
    
        /* configurations */
        compileClasspath -> {compileOnly implementation}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 566 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-main.dot

    digraph configurations {
        rankdir = BT;
       graph [ dpi = 100, fontname="Sans"];
       node [fontname = "Sans"];
       edge [fontname = "Sans"];
    
       "apiElements" [shape="box", label=<<B>apiElements</B>(C)>, color="pink", bgcolor="pink", style="filled"]
       "apiElements" -> "api"
       "apiElements" -> "compileOnlyApi"
    
       "api" [shape="box", label=<<B>api</B>>, color="chartreuse3", bgcolor="chartreuse3", style="filled"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-test.dot

    digraph configurations {
        rankdir = BT;
       graph [ dpi = 100, fontname="Sans"];
       node [fontname = "Sans"];
       edge [fontname = "Sans"];
    
       "api" [shape="box", label=<<B>api</B>>, color="chartreuse3", bgcolor="chartreuse3", style="filled"]
    
       "compileOnlyApi" [shape="box", label=<<B>compileOnlyApi</B>>, color="chartreuse3", bgcolor="chartreuse3", style="filled"]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. test/codegen/bits.go

    	}
    	// amd64:"BTL\t[$]7"
    	if (a[6]>>5)&4 == 0 {
    		return 1
    	}
    	return 0
    }
    
    func bitcheck64_var(a, b uint64) (n int) {
    	// amd64:"BTQ"
    	if a&(1<<(b&63)) != 0 {
    		return 1
    	}
    	// amd64:"BTQ",-"BT.\t[$]0"
    	if (b>>(a&63))&1 != 0 {
    		return 1
    	}
    	return 0
    }
    
    func bitcheck64_mask(a uint64) (n int) {
    	// amd64:"BTQ\t[$]63"
    	if a&0x8000000000000000 != 0 {
    		return 1
    	}
    	// amd64:"BTQ\t[$]59"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top