Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for then (0.14 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            expect:
            notStopped
    
            when: "stopped first time"
            coordinator.stop()
    
            then: "stops"
            stopped
    
            when: "requested again"
            coordinator.stop()
    
            then:
            stopped
            0 * _._
        }
    
        def "await idle timeout does nothing when already stopped"() {
            given:
            coordinator.stop()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/BuildStatusRendererTest.groovy

    /*
     * Copyright 2017 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskCustomTypesInputPropertyIntegrationTest.groovy

            // Change the build script
            when:
            buildFile << """
    task someOtherTask
    """
            and:
            run "someTask"
    
            then:
            executedAndNotSkipped(":someTask")
    
            when:
            run "someTask"
    
            then:
            skipped(":someTask")
    
            // Change the value of the property
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 22 16:04:50 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    // First, they are sorted by number of free CPUs in the sockets that contain them. Then, for each
    // socket they are sorted by number of free CPUs that they contain. The order is always ascending.
    // In other words, the relative order of two NUMA nodes is determined as follows:
    //  1. If the two NUMA nodes belong to different sockets, the NUMA node in the socket with the
    //     smaller amount of free CPUs appears first.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. hack/ginkgo-e2e.sh

      ginkgo_args+=("--silence-skips")
    fi
    
    if [[ "${GINKGO_FORCE_NEWLINES}" == "y" ]]; then
      ginkgo_args+=("--force-newlines")
    fi
    
    if [[ "${GINKGO_NO_COLOR}" == "y" ]]; then
      ginkgo_args+=("--no-color")
    fi
    
    # The --host setting is used only when providing --auth_config
    # If --kubeconfig is used, the host to use is retrieved from the .kubeconfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-kubeapiserver.sh

        params_ref+=" --storage-media-type=${STORAGE_MEDIA_TYPE}"
      fi
    
      if [[ -n "${ETCD_COMPACTION_INTERVAL_SEC:-}" ]]; then
        params_ref+=" --etcd-compaction-interval=${ETCD_COMPACTION_INTERVAL_SEC}s"
      fi
    }
    
    # Starts kubernetes apiserver.
    # It prepares the log file, loads the docker image, calculates variables, sets them
    # in the manifest file, and then copies the manifest file to /etc/kubernetes/manifests.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            assertTaskOutputNotCached(dirTask)
    
            when:
            cleanBuildDir()
            withBuildCache().run(dirTask, fileTask)
            then:
            // Outcome should look the same as if the build was run in the opposite order (fileTask then dirTask)
            fileTaskOutput.assertExists()
            dirTaskOutput.assertExists()
            // fileTask can be from the cache, but the dirTask cannot due to a cache miss
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerTest.groovy

            then:
            provider.present
    
            when:
            container.remove(provider)
    
            then:
            container.names.toList() == []
    
            and:
            !provider.present
            provider.orNull == null
    
            when:
            provider.get()
    
            then:
            def ex = thrown(IllegalStateException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

            !manager.hasListeners(TestFooListener)
    
            when:
            manager.getBroadcaster(TestFooListener)
    
            then:
            !manager.hasListeners(TestFooListener)
    
            when:
            manager.addListener(fooListener1)
    
            then:
            manager.hasListeners(TestFooListener)
            !manager.hasListeners(TestBarListener)
    
            when:
            manager.removeListener(fooListener1)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            skipped taskPath
            outputFile.text == "input text"
    
            when:
            unrelatedInputFile.text = "changed input"
            succeeds taskPath
    
            then:
            executedAndNotSkipped taskPath
            outputFile.text == "input text"
    
            when:
            outputFile.text = "that should not be the output"
            succeeds taskPath
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top