Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 147 for mid2 (0.04 sec)

  1. src/cmd/compile/internal/test/testdata/gen/copyGen.go

    	fmt.Fprintf(w, "package main\n")
    	fmt.Fprintf(w, "import \"testing\"\n")
    
    	for _, s := range sizes {
    		// type for test
    		fmt.Fprintf(w, "type T%d struct {\n", s)
    		fmt.Fprintf(w, "  pre [8]byte\n")
    		fmt.Fprintf(w, "  mid [%d]byte\n", s)
    		fmt.Fprintf(w, "  post [8]byte\n")
    		fmt.Fprintf(w, "}\n")
    
    		// function being tested
    		fmt.Fprintf(w, "//go:noinline\n")
    		fmt.Fprintf(w, "func t%dcopy_ssa(y, x *[%d]byte) {\n", s, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. src/net/http/sniff_test.go

    	{"PNG image", []byte("\x89PNG\x0D\x0A\x1A\x0A"), "image/png"},
    	{"JPEG image", []byte("\xFF\xD8\xFF"), "image/jpeg"},
    
    	// Audio types.
    	{"MIDI audio", []byte("MThd\x00\x00\x00\x06\x00\x01"), "audio/midi"},
    	{"MP3 audio/MPEG audio", []byte("ID3\x03\x00\x00\x00\x00\x0f"), "audio/mpeg"},
    	{"WAV audio #1", []byte("RIFFb\xb8\x00\x00WAVEfmt \x12\x00\x00\x00\x06"), "audio/wave"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 16:53:14 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager_test.go

    	cID1 := kubecontainer.ContainerID{Type: "test", ID: "1"}
    	cID2 := kubecontainer.ContainerID{Type: "test", ID: "2"}
    	containerStatuses := []v1.ContainerStatus{
    		{
    			Name:        "c1",
    			ContainerID: cID1.String(),
    			Ready:       false,
    		}, {
    			Name:        "c2",
    			ContainerID: cID2.String(),
    			Ready:       false,
    		},
    	}
    	status := v1.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  4. src/os/wait6_freebsd_arm.go

    package os
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    const _P_PID = 0
    
    func wait6(idtype, id, options int) (status int, errno syscall.Errno) {
    	// freebsd32_wait6_args{ idtype, pad, id1, id2, status, options, wrusage, info }
    	_, _, errno = syscall.Syscall9(syscall.SYS_WAIT6, uintptr(idtype), 0, uintptr(id), 0, uintptr(unsafe.Pointer(&status)), uintptr(options), 0, 0, 0)
    	return status, errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 549 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

        CALIBRATION_METHOD_HISTOGRAM_PERCENTILE = 3;
        // Use the histogram mid values that minimize MSE error.
        // This is very slow algorithm because it computes all errors for all
        // histogram mid value pairs. Therefore the value of num_bins is recommended
        // to be 256 or less.
        CALIBRATION_METHOD_HISTOGRAM_MSE_BRUTEFORCE = 4;
        // Use the histogram mid values that minimize MSE error.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

                assert operation.id == id2
                assert context.failure == null
            }
        }
    
        def "multiple threads can run child operations concurrently"() {
            setup:
            BuildOperationRef parent
            def id1
            def id2
    
            when:
            operationRunner.run(runnableBuildOperation("<main>") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/transport/Response.java

    
        /**
         * @return status code
         */
        int getErrorCode ();
    
    
        /**
         * @param k
         */
        void setMid ( long k );
    
    
        /**
         * @return mid
         */
        long getMid ();
    
    
        /**
         * 
         * @param buffer
         * @param i
         * @param size
         * @return whether signature verification is successful
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/internal/test2json/test2json.go

    		for i < len(l.b) {
    			j, w := indexEOL(l.b[i:])
    			if j < 0 {
    				if !l.mid {
    					if j := bytes.IndexByte(l.b[i:], '\t'); j >= 0 {
    						if isBenchmarkName(bytes.TrimRight(l.b[i:i+j], " ")) {
    							l.part(l.b[i : i+j+1])
    							l.mid = true
    							i += j + 1
    						}
    					}
    				}
    				break
    			}
    			e := i + j + w
    			if l.mid {
    				// Found the end of a partial line.
    				l.part(l.b[i:e])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_list_issue61423.txt

    [short] skip 'generates a vcstest git repo'
    [!git] skip
    
    mkdir $WORK/mod1
    mkdir $WORK/mod2
    env GONOSUMDB=vcs-test.golang.org
    
    env GOPROXY=direct
    env GOMODCACHE=$WORK/mod1
    
    
    # If we query a module version from a git repo, we expect its
    # Origin data to be reusable.
    
    go list -m -json vcs-test.golang.org/git/issue61415.git@latest
    cp stdout git-latest.json
    stdout '"Version": "v0.0.0-20231114180001-f213069baa68"'
    stdout '"Origin":'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/JvmLibraryArtifactResolveTestFixture.groovy

    }
    """
            }
        }
    
        void prepareComponentNotFound() {
            def resolveAndCheck = """
            def mid = org.gradle.api.internal.artifacts.DefaultModuleIdentifier.newId("${id.group}", "${id.module}")
            def componentId = new org.gradle.internal.component.external.model.DefaultModuleComponentIdentifier(mid, "${id.version}")
    
            def result = dependencies.createArtifactResolutionQuery()
                .forComponents(componentId)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top