Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for testmovk (0.2 sec)

  1. src/cmd/internal/obj/arm64/asm_arm64_test.s

    	MOVD    R1, r2+8(FP)
    	RET
    
    // testvmovq() (r1, r2 uint64)
    TEXT ·testvmovq(SB), NOSPLIT, $0-16
    	VMOVQ   $0x7040201008040201, $0x3040201008040201, V1
    	VMOV    V1.D[0], R0
    	VMOV    V1.D[1], R1
    	MOVD    R0, r1+0(FP)
    	MOVD    R1, r2+8(FP)
    	RET
    
    // testmovk() uint64
    TEXT ·testmovk(SB), NOSPLIT, $0-8
    	MOVD	$0, R0
    	MOVK	$(40000<<48), R0
    	MOVD	R0, ret+0(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 892 bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm_arm64_test.go

    		}
    	}
    }
    
    func testvmovs() (r1, r2 uint64)
    func testvmovd() (r1, r2 uint64)
    func testvmovq() (r1, r2 uint64)
    
    func TestVMOV(t *testing.T) {
    	tests := []struct {
    		op           string
    		vmovFunc     func() (uint64, uint64)
    		wantA, wantB uint64
    	}{
    		{"VMOVS", testvmovs, 0x80402010, 0},
    		{"VMOVD", testvmovd, 0x7040201008040201, 0},
    		{"VMOVQ", testvmovq, 0x7040201008040201, 0x3040201008040201},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/WorkItemProgressEventCrossVersionSpec.groovy

                    .run()
            }
        }
    
        def prepareTaskTypeUsingWorker() {
            def gradle3Submit = 'workerExecutor.submit(TestWork) { c -> c.displayName = "org.gradle.test.TestWork" }'
            def submit = 'workerExecutor.noIsolation().submit(TestWork) { }'
            buildFile << """
                import javax.inject.Inject
                import org.gradle.workers.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-compiler-plugin/0.1/maven-compiler-plugin-0.1.jar

    org.apache.maven.plugin.coreit; public synchronized class ItMojo extends org.apache.maven.plugin.AbstractMojo { public void ItMojo(); public void execute(); } org/apache/maven/plugin/coreit/TestMojo.class package org.apache.maven.plugin.coreit; public synchronized class TestMojo extends org.apache.maven.plugin.AbstractMojo { public void TestMojo(); public void execute(); } pom.xml 4.0.0 org.apache.maven.plugins maven-compiler-plugin 0.1 maven-plugin Maven Integration Test Plugin A test plugin to assist testing of Maven...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-plugin-plugin/0.1/maven-plugin-plugin-0.1.jar

    org.apache.maven.plugin.coreit; public synchronized class ItMojo extends org.apache.maven.plugin.AbstractMojo { public void ItMojo(); public void execute(); } org/apache/maven/plugin/coreit/TestMojo.class package org.apache.maven.plugin.coreit; public synchronized class TestMojo extends org.apache.maven.plugin.AbstractMojo { public void TestMojo(); public void execute(); } pom.xml 4.0.0 org.apache.maven.plugins maven-plugin-plugin 0.1 maven-plugin Maven Integration Test Plugin A test plugin to assist testing of Maven...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-resources-plugin/0.1/maven-resources-plugin-0.1.jar

    org.apache.maven.plugin.coreit; public synchronized class ItMojo extends org.apache.maven.plugin.AbstractMojo { public void ItMojo(); public void execute(); } org/apache/maven/plugin/coreit/TestMojo.class package org.apache.maven.plugin.coreit; public synchronized class TestMojo extends org.apache.maven.plugin.AbstractMojo { public void TestMojo(); public void execute(); } pom.xml 4.0.0 org.apache.maven.plugins maven-resources-plugin 0.1 maven-plugin Maven Integration Test Plugin A test plugin to assist testing of...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    // Two subsequent requests and verify their response is the same.
    // The response from the server is our own IP:port
    func TestTransportKeepAlives(t *testing.T) { run(t, testTransportKeepAlives, []testMode{http1Mode}) }
    func testTransportKeepAlives(t *testing.T, mode testMode) {
    	ts := newClientServerTest(t, mode, hostPortHandler).ts
    
    	c := ts.Client()
    	for _, disableKeepAlive := range []bool{false, true} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. src/net/http/clientserver_test.go

    	"net/url"
    	"os"
    	"reflect"
    	"runtime"
    	"slices"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    )
    
    type testMode string
    
    const (
    	http1Mode  = testMode("h1")     // HTTP/1.1
    	https1Mode = testMode("https1") // HTTPS/1.1
    	http2Mode  = testMode("h2")     // HTTP/2
    )
    
    type testNotParallelOpt struct{}
    
    var (
    	testNotParallel = testNotParallelOpt{}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    	// Only testing HTTP/1, and our http2 server doesn't support hijacking.
    	run(t, func(t *testing.T, mode testMode) {
    		testHandlerPanic(t, true, mode, nil, "intentional death for testing")
    	}, []testMode{http1Mode})
    }
    
    func testHandlerPanic(t *testing.T, withHijack bool, mode testMode, wrapper func(Handler) Handler, panicValue any) {
    	// Direct log output to a pipe.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. src/net/http/responsecontroller_test.go

    	"fmt"
    	"io"
    	. "net/http"
    	"os"
    	"sync"
    	"testing"
    	"time"
    )
    
    func TestResponseControllerFlush(t *testing.T) { run(t, testResponseControllerFlush) }
    func testResponseControllerFlush(t *testing.T, mode testMode) {
    	continuec := make(chan struct{})
    	cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		ctl := NewResponseController(w)
    		w.Write([]byte("one"))
    		if err := ctl.Flush(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:20:31 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top