Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 398 for aligned (0.18 sec)

  1. src/math/big/rat.go

    	}
    	blen := b.bitLen()
    	if blen == 0 {
    		panic("division by zero")
    	}
    
    	// 1. Left-shift A or B such that quotient A/B is in [1<<Msize1, 1<<(Msize2+1)
    	// (Msize2 bits if A < B when they are left-aligned, Msize2+1 bits if A >= B).
    	// This is 2 or 3 more than the float32 mantissa field width of Msize:
    	// - the optional extra bit is shifted away in step 3 below.
    	// - the high-order 1 is omitted in "normal" representation;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm_test.go

    				t.Errorf("regIndex(%s):\nhave: %d\nwant: %d",
    					regName, have, want)
    			}
    		}
    	}
    }
    
    // TestPCALIGN verifies the correctness of the PCALIGN by checking if the
    // code can be aligned to the alignment value.
    func TestPCALIGN(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	dir := t.TempDir()
    	tmpfile := filepath.Join(dir, "test.s")
    	tmpout := filepath.Join(dir, "test.o")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. cmd/data-scanner-metric.go

    )
    
    //go:generate stringer -type=scannerMetric -trimprefix=scannerMetric $GOFILE
    
    type scannerMetric uint8
    
    type scannerMetrics struct {
    	// All fields must be accessed atomically and aligned.
    	operations [scannerMetricLast]uint64
    	latency    [scannerMetricLastRealtime]lockedLastMinuteLatency
    
    	// actions records actions performed.
    	actions        [lifecycle.ActionCount]uint64
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 25 05:15:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
        @Issue("nebula-plugins/gradle-nebula-integration#51")
        def "force to higher patch version should bring the rest of aligned group up (notation=#forceNotation)"() {
            given:
            "repository simulating Jackson situation" {
                path 'com.amazonaws:aws-java-sdk-core:1.11.438 -> org:cbor:2.6.7'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/util.go

    	}
    	return 0
    }
    
    // requireAlignment ensures that the function is aligned enough to support
    // the required code alignment
    func requireAlignment(a int64, ctxt *Link, cursym *LSym) {
    	// TODO remove explicit knowledge about AIX.
    	if ctxt.Headtype != objabi.Haix && cursym.Func().Align < int32(a) {
    		cursym.Func().Align = int32(a)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    By conflict resolution, we select the `1.1` platform, which has a constraint on `core:1.1`.
    Then we conflict resolve between `core:1.0` and `core:1.1`, which means that `core` and `lib` are now aligned properly.
    
    NOTE: This behavior is enforced for published components only if you use Gradle Module Metadata.
    
    [[sec:align-versions-unpublished]]
    == Aligning versions of modules not published with Gradle
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

     * b0b1s7 is the section prefix. If a section is omitted, that means its ranges data exactly matches
     * that of the preceding section.
     *
     * b2b3s2 is the offset into the ranges data. It is shifted by 2 because ranges are 4-byte aligned.
     *
     * Mappings Data (4,719 bytes)
     * ===========================
     *
     * This is UTF-8 character data. It is indexed into by b2b3 in the ranges dataset.
     *
     * Mappings may overlap.
     *
     * ASCII-Only
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:39:58 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/topology_hints_test.go

    			},
    			expectedPreferredAllocation: []string{"Dev0", "Dev19", "Dev83", "Dev42", "Dev77"},
    			expectedAlignment:           map[int]int{0: 5},
    		},
    		{
    			description: "Request for 5, socket 0, preferred aligned accepted, unaligned ignored",
    			resource:    "resource",
    			request:     5,
    			devices: func() []pluginapi.Device {
    				devices := []pluginapi.Device{}
    				for i := 0; i < 100; i++ {
    					id := fmt.Sprintf("Dev%d", i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    If, for some reason, the versions of the two graphs cannot be "aligned", then resolution will fail with a call to action.
    
    [[sec:java_consistency]]
    === Declaring consistent resolution in the Java ecosystem
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. src/runtime/arena.go

    		}
    	}
    
    	// Double-check it's aligned to the physical page size. Based on the current
    	// implementation this is trivially true, but it need not be in the future.
    	// However, if it's not aligned to the physical page size then we can't properly
    	// set it to fault later.
    	if uintptr(x)%physPageSize != 0 {
    		throw("user arena chunk is not aligned to the physical page size")
    	}
    
    	return x, span
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
Back to top