Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,008 for locations (0.53 sec)

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

    	for _, f := range wi.Results {
    		writeByte(byte(f.Type))
    		writeInt64(f.Offset)
    	}
    
    	return &sym
    }
    
    type WasmField struct {
    	Type WasmFieldType
    	// Offset holds the frame-pointer-relative locations for Go's stack-based
    	// ABI. This is used by the src/cmd/internal/wasm package to map WASM
    	// import parameters to the Go stack in a wrapper function.
    	Offset int64
    }
    
    type WasmFieldType byte
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    include::sample[dir="snippets/organizingGradleProjects/configureProjectUsingScript/groovy", files="build.gradle[]"]
    ====
    
    Filesystem locations are relative to the project directory, while remote script locations are specified with an HTTP URL.
    Multiple script plugins (of either form) can be applied to a given target.
    
    [[sec:plugin_management]]
    == Plugin Management
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/pgen.go

    				fn.LSym.R[i])
    		}
    		// set the R_WEAK bit, leave rest of reloc type intact
    		fn.LSym.R[i].Type |= objabi.R_WEAK
    	}
    }
    
    // StackOffset returns the stack location of a LocalSlot relative to the
    // stack pointer, suitable for use in a DWARF location entry. This has nothing
    // to do with its offset in the user variable.
    func StackOffset(slot ssa.LocalSlot) int32 {
    	n := slot.N
    	var off int64
    	switch n.Class {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	// trimming is concerned.
    	trim := cfg.Trim
    
    	switch cmd {
    	case "disasm":
    		trim = false
    		cfg.Granularity = "addresses"
    		// Force the 'noinlines' mode so that source locations for a given address
    		// collapse and there is only one for the given address. Without this
    		// cumulative metrics would be double-counted when annotating the assembly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/LoggingIntegrationTest.groovy

            outs.each {String expectedOut ->
                def filters = outs.findAll { other -> other != expectedOut && other.startsWith(expectedOut) }
    
                // Find all locations of the expected string in the output
                List<Integer> matches = []
                int pos = 0;
                while (pos < result.length()) {
                    int match = result.indexOf(expectedOut, pos)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            Matcher matcher = Pattern.compile("gradle-(.+)").matcher(moduleName);
            matcher.matches();
            return matcher.group(1);
        }
    
        /**
         * Provides the locations where the classes and resources of a Gradle module can be found
         * when running in embedded mode from the IDE.
         *
         * <ul>
         * <li>In Eclipse, they are in the bin/ folder.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/runtime/mgcstack.go

    // etc.
    //
    // Instead, we will track pointers to stack variables dynamically.
    // All pointers to stack-allocated variables will themselves be on the
    // stack somewhere (or in associated locations, like defer records), so
    // we can find them all efficiently.
    //
    // Stack tracing is organized as a mini garbage collection tracing
    // pass. The objects in this garbage collection are all the variables
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

        /**
         * <p>Returns this settings object.</p>
         *
         * @return This settings object. Never returns null.
         */
        Settings getSettings();
    
        /**
         * Provides access to important locations for a Gradle build.
         *
         * @since 8.5
         */
        @Incubating
        BuildLayout getLayout();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         *
         * @return {@code true} if location tracking is enabled, {@code false} otherwise.
         */
        boolean isLocationTracking();
    
        /**
         * Enables/disables the tracking of line/column numbers for the model source being parsed. By default, input
         * locations are not tracked.
         *
         * @param locationTracking {@code true} to enable location tracking, {@code false} to disable it.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            installation("build/install/main/debug").exec().out == app.expectedOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "build logic can change task output locations"() {
            settingsFile << "rootProject.name = 'app'"
            def app = new CppApp()
    
            given:
            app.writeToProject(testDirectory)
    
            and:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top