Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for mid2 (0.05 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/VirtualComponentHelper.java

         */
        public static VirtualComponentIdentifier makeVirtual(final ComponentIdentifier id) {
            ModuleComponentIdentifier mid = assertModuleComponentIdentifier(id);
            return new DefaultVirtualModuleComponentIdentifier(mid.getModuleIdentifier(), mid.getVersion());
        }
    
        private static ModuleComponentIdentifier assertModuleComponentIdentifier(ComponentIdentifier id) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/runtime/defs_dragonfly_amd64.go

    )
    
    type rtprio struct {
    	_type uint16
    	prio  uint16
    }
    
    type lwpparams struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack      uintptr
    	tid1       unsafe.Pointer // *int32
    	tid2       unsafe.Pointer // *int32
    }
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    type stackt struct {
    	ss_sp     uintptr
    	ss_size   uintptr
    	ss_flags  int32
    	pad_cgo_0 [4]byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/runtime/vlrt.go

    		// In fact, the bottom bit of mid won't
    		// make it into the mantissa either.
    		// We only need to make sure that if top+mid
    		// is about to round down in a round-to-even
    		// scenario, and bot is not zero, we make it
    		// round up instead.
    		mid |= 1
    	}
    	return float32(top)*(1<<46) + float32(mid)*(1<<23)
    }
    
    func _d2v(y *uint64, d float64) {
    	x := *(*uint64)(unsafe.Pointer(&d))
    
    	xhi := uint32(x>>32)&0xfffff | 0x100000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/info.go

    //    Rule: Never break between consecutive runes of this category.
    //
    // 2) Mid:
    //    MidLetter, MidNumLet, Single_Quote.
    //    (Cf. case-ignorable: MidLetter, MidNumLet, Single_Quote or cat is Mn,
    //    Me, Cf, Lm or Sk).
    //    Rule: Don't break between Letter and Mid, but break between two Mids.
    //
    // 3) Break:
    //    Any other category: NewLine, MidNum, CR, LF, Double_Quote, Katakana, and
    //    Other.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_list.txt

    # go clean -modcache can delete read-only dependencies
    go clean -modcache
    ! exists $GOPATH/pkg/mod/rsc.io/quote@v1.5.2
    
    # list {{.Dir}} shows replaced directories
    cp go.mod2 go.mod
    go list -mod=mod -f {{.Dir}} rsc.io/quote
    go list -m -f '{{.Path}} {{.Version}} {{.Dir}}{{with .Replace}} {{.GoMod}} => {{.Version}} {{.Dir}} {{.GoMod}}{{end}}' all
    stdout 'mod[\\/]rsc.io[\\/]quote@v1.5.1'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildControllers.java

            return (id1, id2) -> {
                // Root is always last
                if (id1.equals(DefaultBuildIdentifier.ROOT)) {
                    if (id2.equals(DefaultBuildIdentifier.ROOT)) {
                        return 0;
                    } else {
                        return 1;
                    }
                }
                if (id2.equals(DefaultBuildIdentifier.ROOT)) {
                    return -1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 23 10:37:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/DependencyResultSerializerTest.groovy

            out.selectedVariant == 123L
        }
    
        def "serializes failed dependency result"() {
            def mid = DefaultModuleIdentifier.newId("x", "y")
            def requested = DefaultModuleComponentSelector.newSelector(mid, new DefaultMutableVersionConstraint("1.0"))
            def failure = new ModuleVersionResolveException(newSelector(mid, "1.2"), new RuntimeException("Boo!"))
    
            def failed = Mock(DependencyGraphEdge) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilderTest.groovy

                Mock(LocalConfigurationGraphResolveMetadata)
            }
        }
    
        def configurationsProvider = Stub(ConfigurationsProvider)
        ProjectStateRegistry projectStateRegistry = Mock()
    
        def mid = DefaultModuleIdentifier.newId('foo', 'bar')
    
        def builderFactory = new DefaultRootComponentMetadataBuilder.Factory(
            metaDataProvider,
            componentIdentifierFactory,
            moduleIdentifierFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/math/BigIntegerMathBenchmark.java

        /*
         * We want each multiplication to have both sides with approximately the same number of digits.
         * Currently, we just divide the range in half.
         */
        int mid = (n1 + n2) >>> 1;
        return oldSlowFactorial(n1, mid).multiply(oldSlowFactorial(mid, n2));
      }
    
      @Benchmark
      int slowFactorial(int reps) {
        int tmp = 0;
        for (int i = 0; i < reps; i++) {
          int j = i & ARRAY_MASK;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerSpec.groovy

            UserCodeApplicationId id2 = null
            List<UserCodeApplicationId> ids = []
            userCodeApplicationContext.apply(Stub(UserCodeSource)) {
                id1 = it
                container.register("a") {
                    ids << userCodeApplicationContext.current()
                }
            }
            userCodeApplicationContext.apply(Stub(UserCodeSource)) {
                id2 = it
                container.named("a").configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top