Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 261 for b1 (0.03 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketWriter.kt

        sinkBuffer.writeByte(b0)
    
        var b1 = 0
        if (isClient) {
          b1 = b1 or B1_FLAG_MASK
        }
        when {
          dataSize <= PAYLOAD_BYTE_MAX -> {
            b1 = b1 or dataSize.toInt()
            sinkBuffer.writeByte(b1)
          }
          dataSize <= PAYLOAD_SHORT_MAX -> {
            b1 = b1 or PAYLOAD_SHORT
            sinkBuffer.writeByte(b1)
            sinkBuffer.writeShort(dataSize.toInt())
          }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      {
        GraphDefBuilder b1(GraphDefBuilder::kFailImmediately);
        Node* a = Input(b1.opts().WithName("A"));
        Node* b = Input(b1.opts().WithName("B"));
        Node* c = Unary(a, b1.opts().WithName("C").WithAttr("_encapsulate", "F1"));
        Node* d =
            Binary(b, c, b1.opts().WithName("D").WithAttr("_encapsulate", "F1"));
        Node* e = Binary(c, d,
                         b1.opts()
                             .WithName("E")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskGroovyJavaJointIncrementalCompilationIntegrationTest.groovy

                    private static final Class<B1> bClass = B1.class;
                    private static final B1 b1 = new B1();
                    private static final B1 b2;
                    static {
                        b2 = new B1();
                    }
                    private static B1 b3 = new B1();
                    private B1 b4 = new B1();
                    private B1 m1(B1 b) { return new B1(); };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. src/crypto/des/block.go

    	// but in reverse order.
    	b1 := block & 0xaaaaaaaa55555555
    	block ^= b1 ^ b1>>33 ^ b1<<33
    
    	b1 = block & 0x3300330033003300
    	b2 := block & 0x00cc00cc00cc00cc
    	block ^= b1 ^ b2 ^ b1>>6 ^ b2<<6
    
    	b1 = block & 0x0f0f00000f0f0000
    	b2 = block & 0x0000f0f00000f0f0
    	block ^= b1 ^ b2 ^ b1>>12 ^ b2<<12
    
    	b1 = block >> 32 & 0xff00ff
    	b2 = (block & 0xff00ff00)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/cmd/internal/src/xpos_test.go

    	}
    }
    
    func TestConversion(t *testing.T) {
    	b1 := NewFileBase("b1", "b1")
    	b2 := NewFileBase("b2", "b2")
    	b3 := NewLinePragmaBase(MakePos(b1, 10, 0), "b3", "b3", 123, 0)
    
    	var tab PosTable
    	for _, want := range []Pos{
    		NoPos,
    		MakePos(nil, 0, 0), // same table entry as NoPos
    		MakePos(b1, 0, 0),
    		MakePos(nil, 10, 20), // same table entry as NoPos
    		MakePos(b2, 10, 20),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top