Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 321 for Alignment (0.15 sec)

  1. pkg/kubelet/cm/devicemanager/topology_hints_test.go

    		}
    
    		alignment := make(map[int]int)
    		if m.deviceHasTopologyAlignment(tc.resource) {
    			for d := range allocated {
    				if m.allDevices[tc.resource][d].Topology != nil {
    					alignment[int(m.allDevices[tc.resource][d].Topology.Nodes[0].ID)]++
    				}
    			}
    		}
    
    		if !reflect.DeepEqual(alignment, tc.expectedAlignment) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  2. src/cmd/gofmt/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Gofmt formats Go programs.
    It uses tabs for indentation and blanks for alignment.
    Alignment assumes that an editor is using a fixed-width font.
    
    Without an explicit path, it processes the standard input.  Given a file,
    it operates on that file; given a directory, it operates on all .go files in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. src/go/printer/testdata/declarations.golden

    	"bar"
    	"foo"	// a comment
    	"bar"	// a comment
    )
    
    // comments + renames
    import (
    	"unrenamed"	// a comment
    	renamed "renameMe"
    	. "io"		/* a comment */
    	_ "io/ioutil"	// a comment
    	"io"		// testing alignment
    	. "os"
    	// a comment
    )
    
    // a case that caused problems in the past (comment placement)
    import (
    	. "fmt"
    	"io"
    	"malloc"	// for the malloc count test only
    	"math"
    	"strings"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

        }
    
        String readString( byte[] src, int srcIndex, int len ) {
            String str = null;
            try {
                if( useUnicode ) {
                    // should Unicode alignment be corrected for here?
                    str = new String( src, srcIndex, len, UNI_ENCODING );
                } else {
        
                    /* On NT without Unicode the fileNameLength
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm_test.go

    // 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")
    
    	var testCases = []struct {
    		name string
    		code string
    		out  string
    	}{
    		{
    			name: "8-byte alignment",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/basedir-aligned-interpolation/pom.xml

        <siteOut>${project.reporting.outputDirectory}</siteOut>
      </properties>
    
      <build>
        <!--
        NOTE: Deliberately set all build directories to relative paths to ensure they really need basedir alignment.
        -->
        <sourceDirectory>src/main/java</sourceDirectory>
        <testSourceDirectory>src/test/java</testSourceDirectory>
        <scriptSourceDirectory>src/main/scripts</scriptSourceDirectory>
        <directory>target</directory>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	// cond: s > 24 && logLargeCopy(v, s) || t.Alignment()%8 != 0
    	// result: (LoweredMove [t.Alignment()] dst src (ADDVconst <src.Type> src [s-moveSize(t.Alignment(), config)]) mem)
    	for {
    		s := auxIntToInt64(v.AuxInt)
    		t := auxToType(v.Aux)
    		dst := v_0
    		src := v_1
    		mem := v_2
    		if !(s > 24 && logLargeCopy(v, s) || t.Alignment()%8 != 0) {
    			break
    		}
    		v.reset(OpLOONG64LoweredMove)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/tests/dependenciesWithEnforcedVirtualPlatform.out

    ------------------------------------------------------------
    Root project 'dependency-alignment'
    ------------------------------------------------------------
    
    compileClasspath - Compile classpath for source set 'main'.
    +--- com.fasterxml.jackson.core:jackson-databind:2.8.9
    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.8.0 -> 2.8.9
    |    \--- com.fasterxml.jackson.core:jackson-core:2.8.9
    \--- io.vertx:vertx-core:3.5.3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. doc/next/5-toolchain.md

    a cost of an additional 0.1% text and binary size.  This is currently only implemented
    on 386 and amd64 because it has not shown an improvement on other platforms.
    Hot block alignment can be disabled with `-gcflags=[<packages>=]-d=alignhot=0`
    
    ## Assembler {#assembler}
    
    ## Linker {#linker}
    
    <!-- go.dev/issue/67401, CL 585556, CL 587220, and many more -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/runtime/sizeclasses.go

    //    65      27264       81920        3         128     10.00%        128
    //    66      28672       57344        2           0      4.91%       4096
    //    67      32768       32768        1           0     12.50%       8192
    
    // alignment  bits  min obj size
    //         8     3             8
    //        16     4            32
    //        32     5           256
    //        64     6           512
    //       128     7           768
    //      4096    12         28672
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top