Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 446 for b1 (0.03 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

            iprHasModules "buildA.iml",
                "../buildB/buildB.iml",
                "../buildB/b1/buildB-b1.iml",
                "../buildB/b2/b2.iml",
                "../buildC/buildC.iml",
                "../buildC/b1/buildC-b1.iml",
                "../b1/buildA-b1.iml"
    
            imlHasDependencies "buildB-b1", "buildC-b1", "buildA-b1"
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc.go

    	b0.Event("ProcStart", trace.ProcID(1), testgen.Seq(1))
    	b0.Event("GoSyscallEndBlocked")
    
    	// A running goroutine steals proc 0.
    	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("ProcSteal", trace.ProcID(0), testgen.Seq(2), 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)
  3. pkg/config/analysis/diag/messages_test.go

    	firstMsg := NewMessage(
    		NewMessageType(Error, "B1", "Template: %q"),
    		MockResource("B"),
    		"B",
    	)
    	secondMsg := NewMessage(
    		NewMessageType(Warning, "A1", "Template: %q"),
    		MockResource("B"),
    		"B",
    	)
    	thirdMsg := NewMessage(
    		NewMessageType(Warning, "B1", "Template: %q"),
    		MockResource("A"),
    		"B",
    	)
    	fourthMsg := NewMessage(
    		NewMessageType(Warning, "B1", "Template: %q"),
    		MockResource("B"),
    		"A",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/crypto/aes/gcm_arm64.s

    	// Karatsuba pre-computation
    	VEXT	$8, B0.B16, B0.B16, B1.B16
    	VEOR	B0.B16, B1.B16, B1.B16
    
    	ADD	$14*16, pTbl
    	VST1	[B0.B16, B1.B16], (pTbl)
    	SUB	$2*16, pTbl
    
    	VMOV	B0.B16, B2.B16
    	VMOV	B1.B16, B3.B16
    
    	MOVD	$7, I
    
    initLoop:
    	// Compute powers of H
    	SUBS	$1, I
    
    	VPMULL	B0.D1, B2.D1, T1.Q1
    	VPMULL2	B0.D2, B2.D2, T0.Q1
    	VPMULL	B1.D1, B3.D1, T2.Q1
    	VEOR	T0.B16, T2.B16, T2.B16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top