Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for sysGrow (0.11 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

    import org.junit.Rule
    
    /**
     * Tests maven POM customization
     */
    class MavenPublishPomCustomizationIntegTest extends AbstractMavenPublishIntegTest {
        @Rule
        SetSystemProperties sysProp = new SetSystemProperties()
    
        def "can customize pom xml"() {
            given:
            settingsFile << "rootProject.name = 'customizePom'"
            buildFile << """
                apply plugin: 'maven-publish'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    `https.protocols`:: Specify the supported TLS versions in a comma-separated format. e.g., `TLSv1.2,TLSv1.3`.
    
    Additional Java system properties are listed link:https://docs.oracle.com/javase/tutorial/essential/environment/sysprop.html[here].
    
    In a multi-project build, `systemProp` properties set in any project except the root will be *ignored*.
    Only the root project's `gradle.properties` file will be checked for properties that begin with `systemProp`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_LOG10                           = 0x1C  // 28
    	SYS_FREXP                           = 0x1D  // 29
    	SYS_LDEXP                           = 0x1E  // 30
    	SYS_CEIL                            = 0x1F  // 31
    	SYS_POW                             = 0x20  // 32
    	SYS_SQRT                            = 0x21  // 33
    	SYS_FLOOR                           = 0x22  // 34
    	SYS_J1                              = 0x23  // 35
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    		batch = make([]extSymPayload, 1000)
    	}
    	p := &batch[0]
    	l.payloadBatch = batch[1:]
    	return p
    }
    
    func (ms *extSymPayload) Grow(siz int64) {
    	if int64(int(siz)) != siz {
    		log.Fatalf("symgrow size %d too long", siz)
    	}
    	if int64(len(ms.data)) >= siz {
    		return
    	}
    	if cap(ms.data) < int(siz) {
    		cl := len(ms.data)
    		ms.data = append(ms.data, make([]byte, int(siz)+1-cl)...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top