Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 147 for mid2 (0.03 sec)

  1. src/syscall/security_windows.go

    }
    
    // Copy creates a duplicate of security identifier sid.
    func (sid *SID) Copy() (*SID, error) {
    	b := make([]byte, sid.Len())
    	sid2 := (*SID)(unsafe.Pointer(&b[0]))
    	e := CopySid(uint32(len(b)), sid2, sid)
    	if e != nil {
    		return nil, e
    	}
    	return sid2, nil
    }
    
    // LookupAccount retrieves the name of the account for this sid
    // and the name of the first domain on which this sid is found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/copy_test.go

    package main
    
    import "testing"
    
    type T1 struct {
    	pre  [8]byte
    	mid  [1]byte
    	post [8]byte
    }
    
    //go:noinline
    func t1copy_ssa(y, x *[1]byte) {
    	*y = *x
    }
    func testCopy1(t *testing.T) {
    	a := T1{[8]byte{201, 202, 203, 204, 205, 206, 207, 208}, [1]byte{0}, [8]byte{211, 212, 213, 214, 215, 216, 217, 218}}
    	x := [1]byte{100}
    	t1copy_ssa(&a.mid, &x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 150.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentBuildsCachingIntegrationTest.groovy

            mod1.pom.expectGet()
            mod1.artifact.expectGet()
    
            // Build 2 should download module 2 and reuse cached module 1 state
            mod2.pom.expectGet()
            mod2.artifact.expectGet()
    
            // Start build 1 then wait until it has run task 'a'.
            executer.withTasks("a", "block1", "b")
            executer.withArgument("--info")
            def build1 = executer.start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/id/CompositeIdGeneratorTest.groovy

            def id = generator.generateId()
            def id2 = other.generateId()
    
            then:
            id != id2
    
            and:
            2 * target.generateId() >> 12
        }
    
        def compositeIdsAreEqualWhenOriginalIdsAreEqual() {
            when:
            def id = generator.generateId()
            def id2 = generator.generateId()
    
            then:
            id == id2
    
            and:
            2 * target.generateId() >> 12
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/sort/gen_sort_variants.go

    		if a > 0 && !{{Less "data" "a-1" "pivot"}} {
    			mid := partitionEqual{{.FuncSuffix}}(data, a, b, pivot {{.ExtraArg}})
    			a = mid
    			continue
    		}
    
    		mid, alreadyPartitioned := partition{{.FuncSuffix}}(data, a, b, pivot {{.ExtraArg}})
    		wasPartitioned = alreadyPartitioned
    
    		leftLen, rightLen := mid-a, b-mid
    		balanceThreshold := length / 8
    		if leftLen < rightLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. src/internal/cpu/cpu_arm64_hwcap.go

    	// Without the CPUID bit the kernel will not trap the instruction and the
    	// process will be terminated with SIGILL.
    	if ARM64.HasCPUID {
    		midr := getMIDR()
    		part_num := uint16((midr >> 4) & 0xfff)
    		implementer := byte((midr >> 24) & 0xff)
    
    		// d0c - NeoverseN1
    		// d40 - NeoverseV1
    		// d49 - NeoverseN2
    		// d4f - NeoverseV2
    		if implementer == 'A' && (part_num == 0xd0c || part_num == 0xd40 ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. test/ken/divmod.go

    	var in2 int = -5
    	var id1 int = +3
    	var id2 int = -3
    
    	if in1/id1 != q1 || in1%id1 != r1 {
    		println("int-1", in1, id1, in1/id1, in1%id1)
    		panic("fail")
    	}
    	if in2/id1 != q2 || in2%id1 != r2 {
    		println("int-2", in2, id1, in2/id1, in2%id1)
    		panic("fail")
    	}
    	if in1/id2 != q3 || in1%id2 != r3 {
    		println("int-3", in1, id2, in1/id2, in1%id2)
    		panic("fail")
    	}
    	if in2/id2 != q4 || in2%id2 != r4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 5.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCacheTest.groovy

            cache.get(id1, classPath("c2"), root, null)
            cache.get(id2, classPath("c2"), root, null)
    
            then:
            cache.size() == 1 // both are the same
    
            when:
            cache.remove(id1)
    
            then:
            cache.size() == 1 // still used by id2
    
            when:
            cache.remove(id2)
    
            then:
            cache.size() == 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 19:34:48 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

      - file:/somewhere""")
        }
    
        def "can add incoming paths to exception"() {
            def a = DefaultModuleComponentIdentifier.newId(mid("org", "a"), "1.2")
            def b = DefaultModuleComponentIdentifier.newId(mid("org", "b"), "5")
            def c = DefaultModuleComponentIdentifier.newId(mid("org", "c"), "1.0")
    
            def exception = new ModuleVersionNotFoundException(newId("a", "b", "c"), ["http://somewhere"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. src/sort/zsortfunc.go

    		// elements equal to and elements greater than the pivot.
    		if a > 0 && !data.Less(a-1, pivot) {
    			mid := partitionEqual_func(data, a, b, pivot)
    			a = mid
    			continue
    		}
    
    		mid, alreadyPartitioned := partition_func(data, a, b, pivot)
    		wasPartitioned = alreadyPartitioned
    
    		leftLen, rightLen := mid-a, b-mid
    		balanceThreshold := length / 8
    		if leftLen < rightLen {
    			wasBalanced = leftLen >= balanceThreshold
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
Back to top