Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for withJava (0.31 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDEModelPerformanceTest.groovy

                    }
                    javaSourceSettings?.jdk?.javaHome
                    withJava(javaSourceSettings?.jdk?.javaVersion)
                    withJava(javaSourceSettings?.sourceLanguageLevel)
                    withJava(javaSourceSettings?.targetBytecodeVersion)
                    projectNatures.each {
                        it.id
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinMultiplatformPluginSmokeTest.groovy

                plugins {
                    id 'org.jetbrains.kotlin.multiplatform'
                }
    
                ${mavenCentralRepository()}
    
                kotlin {
                    jvm {
                        withJava()
                    }
                }
            """
    
            when:
            def kotlinVersionNumber = VersionNumber.parse(kotlinVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            parse 'with-bundles'
    
            then:
            hasDependency('groovy') {
                withGAV("org.codehaus.groovy:groovy:2.5.6")
            }
            hasDependency('groovy-json') {
                withGAV("org.codehaus.groovy:groovy-json:2.5.6")
            }
            hasDependency('groovy-templates') {
                withGAV("org.codehaus.groovy:groovy-templates:2.5.6")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ifreq_linux.go

    	data unsafe.Pointer
    	// Pad to the same size as ifreq.
    	_ [len(ifreq{}.Ifru) - SizeofPtr]byte
    }
    
    // withData produces an ifreqData with the pointer p set for ioctls which require
    // arbitrary pointer data.
    func (ifr Ifreq) withData(p unsafe.Pointer) ifreqData {
    	return ifreqData{
    		name: ifr.raw.Ifrn,
    		data: p,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. cmd/config.go

    	minioConfigHistoryPrefix = minioConfigPrefix + "/history"
    
    	// MinIO configuration file.
    	minioConfigFile = "config.json"
    )
    
    func listServerConfigHistory(ctx context.Context, objAPI ObjectLayer, withData bool, count int) (
    	[]madmin.ConfigHistoryEntry, error,
    ) {
    	var configHistory []madmin.ConfigHistoryEntry
    
    	// List all kvs
    	marker := ""
    	for {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 23 10:07:06 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ioctl_linux.go

    func IoctlGetEthtoolDrvinfo(fd int, ifname string) (*EthtoolDrvinfo, error) {
    	ifr, err := NewIfreq(ifname)
    	if err != nil {
    		return nil, err
    	}
    
    	value := EthtoolDrvinfo{Cmd: ETHTOOL_GDRVINFO}
    	ifrd := ifr.withData(unsafe.Pointer(&value))
    
    	err = ioctlIfreqData(fd, SIOCETHTOOL, &ifrd)
    	return &value, err
    }
    
    // IoctlGetWatchdogInfo fetches information about a watchdog device from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-67806`](https://youtrack.jetbrains.com/issue/KT-67806) KMP import fails if android target has flavors
    - [`KT-67636`](https://youtrack.jetbrains.com/issue/KT-67636) Gradle configuration error when use withJava()
    - [`KT-63536`](https://youtrack.jetbrains.com/issue/KT-63536) KMP: MetadataDependencyTransformationTask is not Thread Safe
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top