Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,418 for buildID (0.33 sec)

  1. src/cmd/link/internal/wasm/asm.go

    	}
    
    	ctxt.Out.Write([]byte{0x00, 0x61, 0x73, 0x6d}) // magic
    	ctxt.Out.Write([]byte{0x01, 0x00, 0x00, 0x00}) // version
    
    	// Add any buildid early in the binary:
    	if len(buildid) != 0 {
    		writeBuildID(ctxt, buildid)
    	}
    
    	writeTypeSec(ctxt, types)
    	writeImportSec(ctxt, hostImports)
    	writeFunctionSec(ctxt, fns)
    	writeTableSec(ctxt, fns)
    	writeMemorySec(ctxt, ldr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

            }
        }
    
        @EqualsAndHashCode
        static class CreatedBy {
            final String gradleVersion
            final String buildId
    
            CreatedBy(String gradleVersion, String buildId) {
                this.gradleVersion = gradleVersion
                this.buildId = buildId
            }
        }
    
        @EqualsAndHashCode
        static class Coords {
            final String group
            final String module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/common/repo/org/gradle/demo/producer/1.0/producer-1.0.module

        "module": "producer",
        "version": "1.0",
        "attributes": {
          "org.gradle.status": "release"
        }
      },
      "createdBy": {
        "gradle": {
          "version": "5.3-20190124175634+0000",
          "buildId": "l63zt5h46neu3ahqbi73jsdqaa"
        }
      },
      "variants": [
        {
          "name": "runtime",
          "attributes": {
            "org.gradle.usage": "java-runtime"
          },
          "files": [
            {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildPathAssignmentIntegrationTest.groovy

                                def buildId = b.buildIdentifier
                                println "Build path=" + buildId.buildPath + " name=" + buildId.name
                            }
                        }
                    }
                """
                it.buildFile << """
                    subprojects {
                        // The Java plugin forces the configuration of the included builds
                        apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 09:41:26 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentSelectorParsersTest.groovy

        }
    
        def "understands project input"() {
            when:
            def buildId = new DefaultBuildIdentifier(Path.path(":build"))
            def projectState = Mock(ProjectState) {
                getComponentIdentifier() >> new DefaultProjectComponentIdentifier(buildId, Path.path(":id:bar"), Path.path(":bar"), "name")
            }
            def project = Mock(ProjectInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	Name() string
    
    	// ObjAddr returns the objdump (linker) address corresponding to a runtime
    	// address, and an error.
    	ObjAddr(addr uint64) (uint64, error)
    
    	// BuildID returns the GNU build ID of the file, or an empty string.
    	BuildID() string
    
    	// SourceLine reports the source line information for a given
    	// address in the file. Due to inlining, the source line information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildProjectDependencyConflictResolutionIntegrationTest.groovy

        }
    
        @Override
        void moduleDefinition(String name, String definition) {
            buildTestFixture.populate(name) {
                buildFile << definition
                buildFile << checkHelper(buildId, projectPath)
            }
        }
    
        @Override
        boolean isAutoDependencySubstitution() {
            true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 15:09:14 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                }
                // Compatible daemon was found, try it
                try {
                    Build build = new Build(buildId, connection.getDaemon().getToken(), action, requestContext.getClient(), requestContext.getStartTime(), requestContext.isInteractive(), parameters);
                    return executeBuild(build, connection, requestContext.getCancellationToken(), requestContext.getEventConsumer());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/java-library-with-excludes.module

            "version": "1.9",
            "attributes": {
                "org.gradle.status": "release"
            }
        },
        "createdBy": {
            "gradle": {
                "version": "4.5-20171204230000+0000",
                "buildId": "mmkppe3smvbgbhp5yeotxkaweq"
            }
        },
        "variants": [
            {
                "name": "runtime",
                "attributes": {
                    "org.gradle.usage": "java-runtime"
                },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/flag.go

    	// for releases, but during development we include the full
    	// build ID of the binary, so that if the compiler is changed and
    	// rebuilt, we notice and rebuild all packages.
    	if s == "full" {
    		if strings.HasPrefix(buildcfg.Version, "devel") {
    			p += " buildID=" + buildID
    		}
    	}
    
    	fmt.Printf("%s version %s%s\n", name, buildcfg.Version, p)
    	os.Exit(0)
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top