Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 273 for b1 (0.02 sec)

  1. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s

    	VAF    a2, a3, a3  \
    	VAF    b2, b3, b3  \
    	VAF    c2, c3, c3  \
    	VAF    d2, d3, d3  \
    	VX     a3, a1, a1  \
    	VX     b3, b1, b1  \
    	VX     c3, c1, c1  \
    	VX     d3, d1, d1  \
    	VERLLF $12, a1, a1 \
    	VERLLF $12, b1, b1 \
    	VERLLF $12, c1, c1 \
    	VERLLF $12, d1, d1 \
    	VAF    a1, a0, a0  \
    	VAF    b1, b0, b0  \
    	VAF    c1, c0, c0  \
    	VAF    d1, d0, d0  \
    	VX     a0, a2, a2  \
    	VX     b0, b2, b2  \
    	VX     c0, c2, c2  \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

                it.path == 'b1'
            }
        }
    
        def "EclipseProject model honours custom project name"() {
            when:
            buildB.buildFile << """
                subprojects {
                    apply plugin: 'eclipse'
                    eclipse {
                        project.name = project.name + "-renamed"
                    }
                }
                project(":b1") {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. test/fixedbugs/bug102.go

    package main
    
    func main() {
    	var b [0]byte
    	s := string(b[0:]) // out of bounds trap
    	if s != "" {
    		panic("bad convert")
    	}
    	var b1 = [5]byte{'h', 'e', 'l', 'l', 'o'}
    	if string(b1[0:]) != "hello" {
    		panic("bad convert 1")
    	}
    	var b2 = make([]byte, 5)
    	for i := 0; i < 5; i++ {
    		b2[i] = b1[i]
    	}
    	if string(b2) != "hello" {
    		panic("bad convert 2")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 525 bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/LittleEndianDataInputStream.java

        return (int) in.skip(n);
      }
    
      @CanIgnoreReturnValue // to skip a byte
      @Override
      public int readUnsignedByte() throws IOException {
        int b1 = in.read();
        if (0 > b1) {
          throw new EOFException();
        }
    
        return b1;
      }
    
      /**
       * Reads an unsigned {@code short} as specified by {@link DataInputStream#readUnsignedShort()},
       * except using little-endian byte order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. test/typeparam/issue48538.go

    package p
    
    type C interface {
    	~struct{ b1, b2 string }
    }
    
    func f[T C]() T {
    	return T{
    		b1: "a",
    		b2: "b",
    	}
    }
    
    func f2[T ~struct{ b1, b2 string }]() T {
    	return T{
    		b1: "a",
    		b2: "b",
    	}
    }
    
    type D interface {
    	map[string]string | S
    }
    
    type S map[string]string
    
    func g[T D]() T {
    	b1 := "foo"
    	b2 := "bar"
    	return T{
    		b1: "a",
    		b2: "b",
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 790 bytes
    - Viewed (0)
  6. src/image/color/ycbcr_test.go

    				r0, g0, b0 := uint8(r), uint8(g), uint8(b)
    				y, cb, cr := RGBToYCbCr(r0, g0, b0)
    				r1, g1, b1 := YCbCrToRGB(y, cb, cr)
    				if delta(r0, r1) > 2 || delta(g0, g1) > 2 || delta(b0, b1) > 2 {
    					t.Fatalf("\nr0, g0, b0 = %d, %d, %d\ny,  cb, cr = %d, %d, %d\nr1, g1, b1 = %d, %d, %d",
    						r0, g0, b0, y, cb, cr, r1, g1, b1)
    				}
    			}
    		}
    	}
    }
    
    // TestYCbCrToRGBConsistency tests that calling the RGBA method (16 bit color)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 07:51:17 UTC 2016
    - 7.3K bytes
    - Viewed (0)
  7. istioctl/pkg/util/formatting/formatter_test.go

    	g.Expect(output).To(Equal(
    		"Error [B1] (SoapBubble) Explosion accident: the bubble is too big\n" +
    			"Warning [C1] (GrandCastle) Collapse danger: the castle is too old",
    	))
    }
    
    func TestFormatter_PrintLogWithColor(t *testing.T) {
    	g := NewWithT(t)
    
    	firstMsg := diag.NewMessage(
    		diag.NewMessageType(diag.Error, "B1", "Explosion accident: %v"),
    		diag.MockResource("SoapBubble"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue15585.go

    	var cc, ll, pp, rr [27]int
    	for q0 := 0; q0 < n-2; q0++ {
    		for q1 := q0 + 2; q1 < n; q1++ {
    			var c, d, l, p, r int
    			b0 := 1 << uint(q0)
    			b1 := 1 << uint(q1)
    			l = ((b0 << 1) | b1) << 1
    			c = b0 | b1 | (-1 << uint(n))
    			r = ((b0 >> 1) | b1) >> 1
    		E:
    			if c != -1 {
    				p = ^(l | c | r)
    			} else {
    				rc++
    				goto R
    			}
    		L:
    			if p != 0 {
    				lsb := p & -p
    				p &^= lsb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 09 18:35:44 UTC 2016
    - 829 bytes
    - Viewed (0)
  9. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary-reacquire-new-proc.go

    	b0.Event("GoSyscallEndBlocked")
    
    	// A running goroutine stole P0 at the generation boundary.
    	b1 := g.Batch(trace.ThreadID(1), 0)
    	b1.Event("ProcStatus", trace.ProcID(2), go122.ProcRunning)
    	b1.Event("GoStatus", trace.GoID(2), trace.ThreadID(1), go122.GoRunning)
    	b1.Event("ProcStatus", trace.ProcID(0), go122.ProcSyscallAbandoned)
    	b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(1), trace.ThreadID(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildLookupIntegrationTest.groovy

                """
            }
            includeBuildAs(buildB, "b1")
            def buildC = singleProjectBuild("buildC") {
                settingsFile << """
                    rootProject.name = 'c'
                """
            }
            includeBuildAs(buildC, 'c1')
            buildA.buildFile << """
                assert gradle.includedBuild("b1").name == "b1"
                assert gradle.includedBuild("b1").projectDir == file('${buildB.toURI()}')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top