Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 229 for scav (0.29 sec)

  1. test/linknameasm.dir/x.go

    package main
    
    import (
    	"runtime"
    	_ "unsafe"
    )
    
    //go:linkname asm
    func asm(*int)
    
    func main() {
    	x := new(int)
    	asm(x)
    }
    
    // called from asm
    func callback() {
    	runtime.GC() // scan stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 451 bytes
    - Viewed (0)
  2. .github/workflows/codeql-analysis.yml

            # Prefix the list here with "+" to use these queries and those in the config file.
            # queries: ./path/to/local/query, your-org/your-repo/queries@main
    
        - name: Compile with Gradle with Build Scan
          if: ${{ matrix.language == 'java' && github.repository_owner == 'gradle' }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/environment/GradleBuildEnvironment.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.environment;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    @UsedByScanPlugin
    @ServiceScope(Scope.Global.class)
    public interface GradleBuildEnvironment {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 947 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java-library/module-disabled/tests/buildJavaModule.out

    * What went wrong:
    Execution failed for task ':compileJava'.
    > Compilation failed; see the compiler error output for details.
    
    * Try:
    > Run with --info option to get more log output.
    > Run with --scan to get full insights.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 09:29:37 UTC 2024
    - 735 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    |Nofootnote:2[]
    |===
    
    If you suspect issues with your plugin code, try creating a link:https://scans.gradle.com/[Build Scan] to identify bottlenecks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/MultiCauseException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.internal.exceptions;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import java.util.List;
    
    @UsedByScanPlugin
    public interface MultiCauseException extends ResolutionProvider {
        List<? extends Throwable> getCauses();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 861 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	f, err := fsys.Open(filename)
    	if err != nil {
    		return nil, err
    	}
    	defer f.Close()
    	var features []APIFeature
    	scan := bufio.NewScanner(f)
    	for scan.Scan() {
    		line := strings.TrimSpace(scan.Text())
    		if line == "" || line[0] == '#' {
    			continue
    		}
    		matches := apiFileLineRegexp.FindStringSubmatch(line)
    		if len(matches) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

    import static org.gradle.integtests.fixtures.SuggestionsMessages.GET_HELP
    import static org.gradle.integtests.fixtures.SuggestionsMessages.INFO_DEBUG
    import static org.gradle.integtests.fixtures.SuggestionsMessages.SCAN
    import static org.gradle.integtests.fixtures.SuggestionsMessages.STACKTRACE_MESSAGE
    
    /**
     * These test cases document the current behavior when dependency constraints are combined
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestSuiteDescriptor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    @UsedByScanPlugin("test-distribution")
    public class DefaultTestSuiteDescriptor extends AbstractTestDescriptor {
    
        @UsedByScanPlugin("test-distribution")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top