Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 114 for toolChain (0.15 sec)

  1. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

    import org.gradle.api.tasks.TaskProvider
    import org.gradle.api.tasks.bundling.Zip
    import org.gradle.api.tasks.testing.Test
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.jvm.toolchain.internal.LocationListInstallationSupplier.JAVA_INSTALLATIONS_PATHS_PROPERTY
    import org.gradle.kotlin.dsl.*
    import org.gradle.plugins.ide.eclipse.EclipsePlugin
    import org.gradle.plugins.ide.eclipse.model.EclipseModel
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/fetch.go

    	"golang.org/x/mod/sumdb/dirhash"
    	modzip "golang.org/x/mod/zip"
    )
    
    var downloadCache par.ErrCache[module.Version, string] // version → directory
    
    var ErrToolchain = errors.New("internal error: invalid operation on toolchain module")
    
    // Download downloads the specific module version to the
    // local download cache and returns the name of the directory
    // corresponding to the root of the module's file tree.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testsanitizers/cc_test.go

    	compiler, err := compilerVersion()
    	if err != nil {
    		return false
    	}
    	switch compiler.name {
    	case "gcc":
    		return compiler.major >= 10
    	case "clang":
    		// TODO(65606): The clang toolchain on the LUCI builders is not built against
    		// zlib, the ASAN runtime can't actually symbolize its own stack trace. Once
    		// this is resolved, one way or another, switch this back to 'true'. We still
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    fmt.Printf format strings.
    
    A "modular" analysis is one that inspects one package at a time but can
    save information from a lower-level package and use it when inspecting a
    higher-level package, analogous to separate compilation in a toolchain.
    The printf checker is modular: when it discovers that a function such as
    log.Fatalf delegates to fmt.Printf, it records this fact, and checks
    calls to that function too, including calls made from another package.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/main.go

    	flag.Var(&flagW, "w", "disable DWARF generation")
    }
    
    // Flags used by the linker. The exported flags are used by the architecture-specific packages.
    var (
    	flagBuildid = flag.String("buildid", "", "record `id` as Go toolchain build id")
    	flagBindNow = flag.Bool("bindnow", false, "mark a dynamically linked ELF object for immediate function binding")
    
    	flagOutfile    = flag.String("o", "", "write output to `file`")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

     */
    
    package org.gradle.internal.jvm.inspection
    
    import org.gradle.api.JavaVersion
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.jvm.toolchain.internal.InstallationLocation
    import org.gradle.process.ExecResult
    import org.gradle.process.internal.ExecHandle
    import org.gradle.process.internal.ExecHandleBuilder
    import org.gradle.process.internal.ExecHandleFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/generate/generate.go

    	$GOPACKAGE
    		The name of the package of the file containing the directive.
    	$GOROOT
    		The GOROOT directory for the 'go' command that invoked the
    		generator, containing the Go toolchain and standard library.
    	$DOLLAR
    		A dollar sign.
    	$PATH
    		The $PATH of the parent process, with $GOROOT/bin
    		placed at the beginning. This causes generators
    		that execute 'go' commands to use the same 'go'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

    import org.gradle.buildinit.plugins.internal.modifiers.Language;
    import org.gradle.buildinit.plugins.internal.modifiers.ModularizationOption;
    import org.gradle.internal.logging.text.TreeFormatter;
    import org.gradle.jvm.toolchain.JavaLanguageVersion;
    import org.gradle.util.GradleVersion;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.annotation.Nullable;
    import javax.inject.Inject;
    import javax.lang.model.SourceVersion;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. src/reflect/abi.go

    // structure that is at least large enough to hold the
    // registers the system supports.
    //
    // Currently they're set to zero because using the actual
    // constants will break every part of the toolchain that
    // uses reflect to call functions (e.g. go test, or anything
    // that uses text/template). The values that are currently
    // commented out there should be the actual values once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    == Convention plugins
    
    A *convention plugin* is typically a precompiled script plugin that configures existing core and community plugins with your own conventions (i.e. default values) such as setting the Java version by using `java.toolchain.languageVersion = JavaLanguageVersion.of(17)`.
    Convention plugins are also used to enforce project standards and help streamline the build process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top