Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for sdk2 (0.18 sec)

  1. src/make.bash

    #
    # GOROOT_BOOTSTRAP: A working Go tree >= Go 1.20.6 for bootstrap.
    # If $GOROOT_BOOTSTRAP/bin/go is missing, $(go env GOROOT) is
    # tried for all "go" in $PATH. By default, one of $HOME/go1.20.6,
    # $HOME/sdk/go1.20.6, or $HOME/go1.4, whichever exists, in that order.
    # We still check $HOME/go1.4 to allow for build scripts that still hard-code
    # that name even though they put newer Go toolchains there.
    
    bootgo=1.20.6
    
    set -e
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

            val session = buildStandaloneAnalysisAPISession(disposable) {
                buildKtModuleProvider {
                    platform = JvmPlatforms.defaultJvmPlatform
                    val sdk = addModule(
                        buildKtSdkModule {
                            addBinaryRootsFromJdkHome(Paths.get(System.getProperty("java.home")), isJre = true)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. docs/extensions/s3zip/README.md

    ## Code Examples
    
    [Using minio-go library](https://github.com/minio/minio/blob/master/docs/extensions/s3zip/examples/minio-go/main.go)
    [Using AWS JS SDK v2](https://github.com/minio/minio/blob/master/docs/extensions/s3zip/examples/aws-js/main.js)
    [Using boto3](https://github.com/minio/minio/blob/master/docs/extensions/s3zip/examples/boto3/main.py)
    
    ## Requirements and limits
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 10 16:28:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/make.rc

    }
    
    bootgo = 1.20.6
    GOROOT = `{cd .. && pwd}
    goroot_bootstrap_set = 'true'
    if(! ~ $#GOROOT_BOOTSTRAP 1){
    	goroot_bootstrap_set = 'false'
    	GOROOT_BOOTSTRAP = $home/go1.4
    	for(d in sdk/go$bootgo go$bootgo)
    		if(test -d $home/$d)
    			GOROOT_BOOTSTRAP = $home/$d
    }
    for(p in $path){
    	if(! test -x $GOROOT_BOOTSTRAP/bin/go){
    		if(go_exe = `{path=$p whatis go}){
    			goroot_bootstrap = $GOROOT_BOOTSTRAP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. internal/config/etcd/etcd.go

    	if err != nil {
    		return cfg, err
    	}
    
    	cfg.Enabled = true
    	cfg.DialTimeout = defaultDialTimeout
    	cfg.DialKeepAliveTime = defaultDialKeepAlive
    	// Disable etcd client SDK logging, etcd client
    	// incorrectly starts logging in unexpected data
    	// format.
    	cfg.LogConfig = &zap.Config{
    		Level:    zap.NewAtomicLevelAt(zap.FatalLevel),
    		Encoding: "console",
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     * modification.
     *
     * Global modification events are published when it's not feasible or desired to publish events for a single module, or a limited set of
     * modules. For example, a change in the environment such as removing an SDK might affect all modules, so a global event is more
     * appropriate.
     *
     * #### Timing Guarantees
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

     * bus connection.
     *
     * You *must not* implement [KaResolveExtension]s as module-level services, due to the following reasons:
     *
     * 1. The IntelliJ platform SDK [discourages](https://plugins.jetbrains.com/docs/intellij/plugin-services.html#types) the use of
     *    module-level services due to memory consumption. In particular, resolve extensions implemented as module-level services live longer
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. CONTRIBUTING.md

    If you did not have a Java 11 SDK installed before importing the project into IntelliJ and after adding a Java 11 SDK your IntelliJ still uses the wrong SDK version, you might need to invalidate IntelliJ's caches before reloading the project.
    
    ## Making your change
    
    ### Code change guidelines
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. go.mod

    	go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.27.0
    	go.opentelemetry.io/otel/exporters/prometheus v0.49.0
    	go.opentelemetry.io/otel/metric v1.27.0
    	go.opentelemetry.io/otel/sdk v1.27.0
    	go.opentelemetry.io/otel/sdk/metric v1.27.0
    	go.opentelemetry.io/otel/trace v1.27.0
    	go.opentelemetry.io/proto/otlp v1.2.0
    	go.uber.org/atomic v1.11.0
    	go.uber.org/zap v1.27.0
    	golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

    import org.gradle.testkit.runner.TaskOutcome
    import org.gradle.testkit.runner.internal.ToolingApiGradleExecutor
    import org.junit.Rule
    
    /**
     * For these tests to run you need to set ANDROID_SDK_ROOT to your Android SDK directory
     *
     * https://developer.android.com/studio/releases/build-tools.html
     * https://developer.android.com/studio/releases/gradle-plugin.html
     * https://androidstudio.googleblog.com/
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top