Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for alignUp (1.32 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    			}
    			// Update the current text symbol alignment value.
    			if int32(alignedValue) > cursym.Func().Align {
    				cursym.Func().Align = int32(alignedValue)
    			}
    		}
    	}
    
    	// Validate all instructions - this provides nice error messages.
    	for p := cursym.Func().Text; p != nil; p = p.Link {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    //
    //go:linkname writeBarrier
    var writeBarrier struct {
    	enabled bool    // compiler emits a check of this before calling write barrier
    	pad     [3]byte // compiler uses 32-bit load for "enabled" field
    	alignme uint64  // guarantee alignment so that compiler can use a 32 or 64-bit load
    }
    
    // gcBlackenEnabled is 1 if mutator assists and background mark
    // workers are allowed to blacken objects. This must only be set when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/sidecar_simulation_test.go

    				if !reflect.DeepEqual(tt.telemetry[cname], gotTelemetry) {
    					t.Errorf("%v: expected telemetry services %v, got %v", cname, tt.telemetry[cname], gotTelemetry)
    				}
    
    				// simulate an actual call, this ensures we are aligned with the inbound listener configuration
    				_, _, hostname, port := model.ParseSubsetKey(cname)
    				if tt.proxy.Metadata.IstioVersion != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            }
        }
    
        @Test
        void testInterpolationWithBasedirAlignedDirectories() throws Exception {
            PomTestWrapper pom = buildPom("basedir-aligned-interpolation");
            assertEquals(
                    new File(pom.getBasedir(), "src/main/java"),
                    new File(pom.getValue("properties/buildMainSrc").toString()));
            assertEquals(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    // The main difference is that this approach means that the root project can also benefit from the `plugins {}` block and it is more aligned with Gradle best practices.
    //
    // [PL] We should also aim to avoid temporary information in the user manual that could
    //      be out of date at any time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm64.s

    	MOVD R3, 257(R17)                          // 3b060491630300f9
    	MOVD R3, 391(R17)                          // 3b1e0691630300f9
    	MOVD R3, 4095(R17)                         // 3bfe3f91630300f9
    
    // large aligned offset, use two instructions(add+ldr/str).
    	MOVB	R1, 0x1001(R2) 		// MOVB		R1, 4097(R2)		// 5b04409161070039
    	MOVB	R1, 0xffffff(R2)	// MOVB		R1, 16777215(R2)	// 5bfc7f9161ff3f39
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    	if err = checkPathLength(filePath); err != nil {
    		return err
    	}
    
    	var w *os.File
    	// Create file if not found. Not doing O_DIRECT here to avoid the code that does buffer aligned writes.
    	// AppendFile() is only used by healing code to heal objects written in old format.
    	w, err = s.openFileSync(filePath, os.O_CREATE|os.O_APPEND|os.O_WRONLY, volumeDir)
    	if err != nil {
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Merge address calculations into loads and stores.
    // Offsets from SB must not be merged into unaligned memory accesses because
    // loads/stores using PC-relative addressing directly must be aligned to the
    // size of the target.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	sect := ldr.NewSection()
    	sect.Rwx = uint8(rwx)
    	sect.Name = name
    	sect.Seg = seg
    	sect.Align = int32(arch.PtrSize) // everything is at least pointer-aligned
    	seg.Sections = append(seg.Sections, sect)
    	return sect
    }
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: link [options] main.o\n")
    	objabi.Flagprint(os.Stderr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top