Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,120 for setOp (0.05 sec)

  1. samples/sleep/README.md

    to experiment with Istio networking.
    
    To use it:
    
    1. Install Istio by following the [istio install instructions](https://istio.io/docs/setup/).
    
    1. Start the sleep service:
    
        If you have [automatic sidecar injection](https://istio.io/docs/setup/additional-setup/sidecar-injection/#automatic-sidecar-injection) enabled:
    
        ```bash
        kubectl apply -f sleep.yaml
        ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 03 03:51:51 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/operationexecutor/operation_executor_test.go

    	if err != nil {
    		panic(fmt.Sprintf("Could not create a temp directory: %s", d))
    	}
    	socketDir = d
    }
    
    func TestOperationExecutor_RegisterPlugin_ConcurrentRegisterPlugin(t *testing.T) {
    	ch, quit, oe := setup()
    	for i := 0; i < numPluginsToRegister; i++ {
    		socketPath := fmt.Sprintf("%s/plugin-%d.sock", socketDir, i)
    		oe.RegisterPlugin(socketPath, time.Now(), nil /* plugin handlers */, nil /* actual state of the world updator */)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

    class ToolingApiShutdownCrossVersionSpec extends CancellationSpec {
    
        def waitFor
    
        def setup() {
            waitFor = new PollingConditions(timeout: 60, initialDelay: 0, factor: 1.25)
            toolingApi.requireIsolatedDaemons()
        }
    
        @TargetGradleVersion(">=6.5")
        def "disconnect during build stops daemon"() {
            setup:
            buildFile.text = """
                task hang {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/GradlePropertiesGeneratorTest.groovy

        def setup() {
            Directory target = Mock()
            RegularFile propertiesRegularFile = Mock()
            settings.target >> target
            target.file('gradle.properties') >> propertiesRegularFile
            propertiesRegularFile.asFile >> propertiesFile
        }
    
        def "generates gradle.properties file if incubating"() {
            setup:
            def generator = new GradlePropertiesGenerator()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. pkg/istio-agent/agent_test.go

    		// configmap to each namespace.
    		Setup(t).Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    	})
    	t.Run("RSA", func(t *testing.T) {
    		// All of the other tests use ECC for speed. Here we make sure RSA still works
    		Setup(t, func(a AgentTest) AgentTest {
    			a.Security.ECCSigAlg = ""
    			a.Security.WorkloadRSAKeySize = 2048
    			return a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. releasenotes/notes/fix-custom-injection-openshift.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    docs:
    - 'https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#customizing-injection'
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 19:52:06 UTC 2023
    - 345 bytes
    - Viewed (0)
  7. guava-testlib/test/com/google/common/collect/testing/MapTestSuiteBuilderTests.java

        Runnable setUp =
            new Runnable() {
              @Override
              public void run() {
                assertFalse("previous tearDown should have run before setUp", setUpRan.getAndSet(true));
              }
            };
        Runnable tearDown =
            new Runnable() {
              @Override
              public void run() {
                assertTrue("setUp should have run", setUpRan.getAndSet(false));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    Using the link:https://github.com/gradle/actions/tree/main/setup-gradle[setup-gradle] GitHub Action makes it simple to integrate any Gradle project into a GitHub Actions workflow.
    
    == What you'll need
    
    * A text editor
    * A command prompt
    * The Java Development Kit (JDK), version 1.8 or higher
    * A local Gradle installation, to initialize a new Gradle project
    * A GitHub account
    
    == Setup a Gradle project on GitHub
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            1 * processor.completed(1, { it.resultType == null })
            0 * processor._
        }
    
        def "executes a test class which cannot be loaded"() {
            setup:
            String testClassName = 'org.gradle.api.internal.tasks.testing.junit.ATestClassWhichCannotBeLoaded'
    
            when:
            process([testClassName])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  10. pkg/volume/downwardapi/downwardapi_test.go

    	if err != nil {
    		test.t.Errorf("labels file should be a link... %s\n", err.Error())
    	}
    
    	// now re-run Setup
    	if err = test.mounter.SetUp(volume.MounterArgs{}); err != nil {
    		test.t.Errorf("Failed to re-setup volume: %v", err)
    	}
    
    	// get the link of the link
    	currentTarget2, err := os.Readlink(filepath.Join(test.volumePath, downwardAPIDir))
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 04:48:49 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top