Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 295 for sdk2 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. docs/bucket/retention/README.md

    - [Use `mc` with MinIO Server](https://min.io/docs/minio/linux/reference/minio-mc.html#quickstart)
    - [Use `aws-cli` with MinIO Server](https://min.io/docs/minio/linux/integrations/aws-cli-with-minio.html)
    - [Use `minio-go` SDK with MinIO Server](https://min.io/docs/minio/linux/developers/go/minio-go.html)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    link:http://sdkman.io[SDKMAN!] is a tool for managing parallel versions of multiple Software Development Kits on most Unix-like systems (macOS, Linux, Cygwin, Solaris and FreeBSD).
    Gradle is deployed and maintained by SDKMAN!:
    
    ----
    ❯ sdk install gradle
    ----
    
    Other package managers are available, but the version of Gradle distributed by them is not controlled by Gradle, Inc.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPlugin.java

                    File frameworkDir = new File(platformSdkPath, "Developer/Library/Frameworks");
                    // Since Xcode 11/12, the XCTest framework is being replaced by a different library that's available in the sdk root
                    File extraInclude = new File(platformSdkPath, "Developer/usr/lib");
                    return Arrays.asList("-parse-as-library", "-F" + frameworkDir.getAbsolutePath(), "-I", extraInclude.getAbsolutePath(), "-v");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. docs/bucket/versioning/README.md

    - Users with explicit permissions or the root credential can configure the versioning state of any bucket.
    
    ## Examples of enabling bucket versioning using MinIO Java SDK
    
    ### EnableVersioning() API
    
    ```
    import io.minio.EnableVersioningArgs;
    import io.minio.MinioClient;
    import io.minio.errors.MinioException;
    import java.io.IOException;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/tracing.go

    */
    
    package options
    
    import (
    	"context"
    	"fmt"
    	"io/ioutil"
    	"net"
    
    	"github.com/spf13/pflag"
    	"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc"
    	"go.opentelemetry.io/otel/sdk/resource"
    	"go.opentelemetry.io/otel/semconv/v1.12.0"
    	"google.golang.org/grpc"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/apiserver/pkg/apis/apiserver"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 21:39:39 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

        }
    
        /**
         * The JDK to use for this module.
         * If {@code null}, the value of the existing or default ipr XML (inherited) is used.
         * If it is set to <code>inherited</code>, the project SDK is used.
         * Otherwise the SDK for the corresponding value of java version is used for this module.
         * <p>
         * For example see docs for {@link IdeaModule}
         */
        public String getJdkName() {
            return jdkName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top