Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 273 for b1 (0.2 sec)

  1. src/cmd/internal/obj/x86/evex.go

    func (evex evexBits) P() byte { return (evex.b1 & evexP) >> 0 }
    
    // L returns EVEX.L'L value.
    func (evex evexBits) L() byte { return (evex.b1 & evexL) >> 2 }
    
    // M returns EVEX.mm value.
    func (evex evexBits) M() byte { return (evex.b1 & evexM) >> 4 }
    
    // W returns EVEX.W value.
    func (evex evexBits) W() byte { return (evex.b1 & evexW) >> 7 }
    
    // BroadcastEnabled reports whether BCST suffix is permitted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue50918.go

    package p
    
    type thing1 struct {
    	things []string
    }
    
    type thing2 struct {
    	things []thing1
    }
    
    func _() {
    	var a1, b1 thing1
    	_ = a1 /* ERROR "struct containing []string cannot be compared" */ == b1
    
    	var a2, b2 thing2
    	_ = a2 /* ERROR "struct containing []thing1 cannot be compared" */ == b2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 453 bytes
    - Viewed (0)
  3. test/typeparam/issue51700.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func f[B any](b B) {
    	if b1, ok := any(b).(interface{ m1() }); ok {
    		panic(1)
    		_ = b1.(B)
    	}
    	if b2, ok := any(b).(interface{ m2() }); ok {
    		panic(2)
    		_ = b2.(B)
    	}
    }
    
    type S struct{}
    
    func (S) m3() {}
    
    func main() {
    	f(S{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 12 17:06:19 UTC 2022
    - 413 bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/repository/legacy/WagonB.java

    import javax.inject.Named;
    import javax.inject.Singleton;
    
    /**
     * Wagon for testing, for protocols <code>b1</code> and <code>b2</code>
     *
     */
    @Named("b")
    @Singleton
    public class WagonB extends WagonMock {
        public String[] getSupportedProtocols() {
            return new String[] {"b1", "b2"};
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Server-TLSv13-ResumeDisabled

    000000e0  bb b1 49 07 8a ba 9b d8  1a f4 48 18 f5 c5 90 f1  |..I.......H.....|
    000000f0  a7 24 cd 3b ab 2f 49 28  fa 3c 64 80 50 a6 38 d9  |.$.;./I(.<d.P.8.|
    00000100  38 15 b1 37 ca 8d 38 58  5b 8d c6 7f 01 98 f1 98  |8..7..8X[.......|
    00000110  3b 33 47 44 b5 47 d3 84  d4 96 bd 48 58 3f 62 86  |;3GD.G.....HX?b.|
    00000120  2a 50 18 8d 64 7c 8d 79  70 3d c1 4f 8a 0a 40 09  |*P..d|.yp=.O..@.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 10 01:40:27 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_lazy_test_of_test_dep.txt

    -- a/a_test.go --
    package a
    
    import (
    	"testing"
    
    	_ "example.com/b"
    )
    
    func TestUsingB(t *testing.T) {
    	// …
    }
    -- b1/go.mod --
    module example.com/b
    
    go 1.15
    
    require example.com/c v0.1.0
    -- b1/b.go --
    package b
    -- b1/b_test.go --
    package b
    
    import _ "example.com/c"
    -- b2/go.mod --
    module example.com/b
    
    go 1.15
    
    require example.com/c v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 08 19:32:28 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Server-TLSv12-RSA-AES

    00000040  cb cb de b5 e3 c3 12 d5  7b 6f 08 17 03 03 00 40  |........{o.....@|
    00000050  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    00000060  4f 4f fe dd e5 b1 38 6b  b1 2f 5d 23 8b b2 34 b1  |OO....8k./]#..4.|
    00000070  c6 9f 8d 32 83 5f b5 36  0b df a6 aa 3f 90 30 b7  |...2._.6....?.0.|
    00000080  1d 66 26 89 29 ab 71 dc  00 14 d6 8e 7e 47 bd ee  |.f&.).q.....~G..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. test/codegen/floats.go

    	z := f3 / 0.5
    
    	return x, y, z
    }
    
    func indexLoad(b0 []float32, b1 float32, idx int) float32 {
    	// arm64:`FMOVS\s\(R[0-9]+\)\(R[0-9]+<<2\),\sF[0-9]+`
    	return b0[idx] * b1
    }
    
    func indexStore(b0 []float64, b1 float64, idx int) {
    	// arm64:`FMOVD\sF[0-9]+,\s\(R[0-9]+\)\(R[0-9]+<<3\)`
    	b0[idx] = b1
    }
    
    // ----------- //
    //    Fused    //
    // ----------- //
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. src/compress/zlib/writer_test.go

    	}
    	defer zlibr.Close()
    
    	// Compare the decompressed data.
    	b1, err1 := io.ReadAll(zlibr)
    	if err1 != nil {
    		t.Errorf("%s (level=%d, dict=%q): %v", fn, level, d, err1)
    		return
    	}
    	if len(b0) != len(b1) {
    		t.Errorf("%s (level=%d, dict=%q): length mismatch %d versus %d", fn, level, d, len(b0), len(b1))
    		return
    	}
    	for i := 0; i < len(b0); i++ {
    		if b0[i] != b1[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/IncludedBuildValidationIntegrationTest.groovy

        @Ignore
        def "reports failure when included build directory is not the root directory of build"() {
            when:
            includedBuilds << buildB.file('b1')
    
            then:
            fails(buildA, "help")
    
            and:
            failure.assertHasDescription("Included build 'b1' must have a settings file.")
        }
    
        def "reports failure for duplicate included build name"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top