Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,120 for setOp (0.08 sec)

  1. tests/integration/security/external_ca/main_test.go

    		Label(label.CustomSetup).
    		RequireMinVersion(19).
    		Setup(func(ctx resource.Context) error {
    			var clients []kube.Client
    			for _, c := range ctx.AllClusters() {
    				clients = append(clients, c)
    			}
    			var err error
    			certs, err = csrctrl.RunCSRController("clusterissuers.istio.io/signer1,clusterissuers.istio.io/signer2", stopChan, clients)
    			return err
    		}).
    		Setup(istio.Setup(nil, func(ctx resource.Context, cfg *istio.Config) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. docs/erasure/README.md

    ### 2. Run MinIO Server with Erasure Code
    
    Example: Start MinIO server in a 12 drives setup, using MinIO binary.
    
    ```sh
    minio server /data{1...12}
    ```
    
    Example: Start MinIO server in a 8 drives setup, using MinIO Docker image.
    
    ```sh
    podman run \
      -p 9000:9000 \
      -p 9001:9001 \
      --name minio \
      -v /mnt/data1:/data1 \
      -v /mnt/data2:/data2 \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/TestLauncherDebugTestsCrossVersionTest.groovy

    @TargetGradleVersion(">=5.6")
    @Timeout(60)
    class TestLauncherDebugTestsCrossVersionTest extends ToolingApiSpecification implements WithOldConfigurationsSupport {
        @Rule
        JDWPUtil jdwpClient = new JDWPUtil()
    
        def setup() {
            buildFile << """
                plugins { id 'java-library' }
                ${mavenCentralRepository()}
                dependencies { ${testImplementationConfiguration} 'junit:junit:4.13' }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. samples/httpbin/README.md

    To use it:
    
    1. Install Istio by following the [istio install instructions](https://istio.io/docs/setup/).
    
    1. Start the httpbin service inside the Istio service mesh:
    
        If you have [automatic sidecar injection](https://istio.io/docs/setup/additional-setup/sidecar-injection/#automatic-sidecar-injection) enabled:
    
        ```bash
        kubectl apply -f httpbin.yaml
        ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/istio.go

    	t.Helper()
    	i, err := Ingresses(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return i
    }
    
    // Setup is a setup function that will deploy Istio on Kubernetes environment
    func Setup(i *Instance, cfn SetupConfigFn, ctxFns ...SetupContextFn) resource.SetupFn {
    	return func(ctx resource.Context) error {
    		cfg, err := DefaultConfig(ctx)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    
    == What you'll need
    
    * A command prompt
    * The Java Development Kit (JDK), version 1.8 or higher
    * A TeamCity installation (setup steps explained in this guide)
    
    
    == Setup a typical project
    
    For demonstration purposes, this guide is going to focus on building a Java-based project; however, this setup will work with any Gradle-compatible project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessorTest.groovy

            then:
            result == null
    
            and:
            1 * delegate.withContent(location, false, _) >> null
    
            and:
            0 * action._
        }
    
        def "reads empty content"() {
            setup:
            expectReadBuildOperation(0)
            expectResourceRead(new ByteArrayInputStream())
    
            when:
            def result = accessor.withContent(location, false, action)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

    @TargetGradleVersion(">=5.6")
    class ClosedProjectSubstitutionCrossVersionSpec extends ToolingApiSpecification {
    
        def "will substitute and run build dependencies for closed projects on startup"() {
            setup:
            multiProjectBuildInRootFolder("parent", ["child1", "child2"]) {
                buildFile << """
                subprojects {
                    apply plugin: 'java-library'
                }
                project(":child1") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. .github/workflows/submit-github-dependency-graph.yml

    jobs:
      generate-and-submit:
        permissions:
          contents: write
        runs-on: ubuntu-latest
        steps:
        - uses: actions/checkout@v4
        - uses: actions/setup-java@v4
          with:
            distribution: temurin
            java-version: 11
        - name: Setup Gradle
          uses: gradle/actions/dependency-submission@v3
          with:
            # Action runs a custom dependencies task that fails with config-cache on Gradle 8.7 (works with 8.6)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3ProxiedRepoIntegrationTest.groovy

        final String artifactVersion = "1.85"
        MavenS3Module module
    
        @Override
        def setup() {
            proxyServer.start()
            module = getMavenS3Repo().module("org.gradle", "test", artifactVersion)
        }
    
        def "should proxy requests using HTTP system proxy settings"() {
            setup:
            module.publish()
    
            buildFile << mavenAwsRepoDsl()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top