Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for bt (0.02 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. .github/CODEOWNERS

    platforms/core-runtime/build-operations/                    @gradle/bt-core-runtime-maintainers @gradle/bt-execution @gradle/bt-dv-build-cache
    platforms/core-runtime/functional/                          @gradle/bt-core-runtime-maintainers @gradle/bt-execution @bamboo
    platforms/core-runtime/files/                               @gradle/bt-core-runtime-maintainers @gradle/bt-execution @gradle/bt-dv-build-cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. 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)
  4. cmd/kubeadm/app/apis/bootstraptoken/v1/defaults.go

    // SetDefaults_BootstrapToken sets the defaults for an individual Bootstrap Token
    func SetDefaults_BootstrapToken(bt *BootstrapToken) {
    	if bt.TTL == nil {
    		bt.TTL = &metav1.Duration{
    			Duration: DefaultTokenDuration,
    		}
    	}
    	if len(bt.Usages) == 0 {
    		bt.Usages = DefaultTokenUsages
    	}
    
    	if len(bt.Groups) == 0 {
    		bt.Groups = DefaultTokenGroups
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/VariantAwareResolutionWithConfigurationAttributesIntegrationTest.groovy

                                        task.archiveBaseName = "resources-${p.name}-${f}${bt}"
                                        task.from mergedResourcesConf
                                    }
                                    def aarTask = p.tasks.create("${f}${bt.capitalize()}Aar", Jar) { task ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. src/internal/coverage/slicereader/slr_test.go

    	"encoding/binary"
    	"io"
    	"testing"
    )
    
    func TestSliceReader(t *testing.T) {
    	b := []byte{}
    
    	bt := make([]byte, 4)
    	e32 := uint32(1030507)
    	binary.LittleEndian.PutUint32(bt, e32)
    	b = append(b, bt...)
    
    	bt = make([]byte, 8)
    	e64 := uint64(907050301)
    	binary.LittleEndian.PutUint64(bt, e64)
    	b = append(b, bt...)
    
    	b = appendUleb128(b, uint(e32))
    	b = appendUleb128(b, uint(e64))
    	b = appendUleb128(b, 6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

                .mutate(BuildTypeContainer) { it.add named(BuildType, "bt") }
                .mutate(FlavorContainer) { it.add named(Flavor, "flavor1") }
    
            then:
            single(toolChains).name == 'tc'
            platforms.size() == 1
            single(buildTypes).name == 'bt'
            single(flavors).name == 'flavor1'
        }
    
        def "creates binaries for executable"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. 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)
  9. cmd/kubeadm/app/apis/bootstraptoken/v1/utils_test.go

    	for _, rt := range tests {
    		t.Run(rt.bt.Token.ID, func(t *testing.T) {
    			actual, err := BootstrapTokenFromSecret(BootstrapTokenToSecret(rt.bt))
    			if err != nil {
    				t.Errorf("failed BootstrapToken to Secret roundtrip with error: %v", err)
    			}
    			if !reflect.DeepEqual(actual, rt.bt) {
    				t.Errorf(
    					"failed BootstrapToken to Secret roundtrip:\n\texpected: %v\n\t  actual: %v",
    					rt.bt,
    					actual,
    				)
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  10. src/runtime/runtime-gdb_test.go

    		"-ex", "echo BEGIN goroutine 1 bt\n",
    		"-ex", "goroutine 1 bt",
    		"-ex", "echo END\n",
    		"-ex", "echo BEGIN goroutine all bt\n",
    		"-ex", "goroutine all bt",
    		"-ex", "echo END\n",
    		"-ex", "clear main.go:15", // clear the previous break point
    		"-ex", fmt.Sprintf("br main.go:%d", nLines), // new break point at the end of main
    		"-ex", "c",
    		"-ex", "echo BEGIN goroutine 1 bt at the end\n",
    		"-ex", "goroutine 1 bt",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top