Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 213 for skipNSs (0.19 sec)

  1. pkg/test/framework/resource/settings.go

    	// OpenShift indicates the tests run in an OpenShift platform rather than in plain Kubernetes.
    	OpenShift bool
    }
    
    // SkipVMs changes the skip settings at runtime
    func (s *Settings) SkipVMs() {
    	s.SkipVM = true
    	s.SkipWorkloadClasses = append(s.SkipWorkloadClasses, "vm")
    }
    
    // Skip checks whether a given class is skipped
    func (s *Settings) Skip(class string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. mockwebserver/src/main/kotlin/mockwebserver3/internal/TriggerSink.kt

     * limitations under the License.
     *
     */
    package mockwebserver3.internal
    
    import okio.Buffer
    import okio.Sink
    
    /**
     * A sink that executes [trigger] after [triggerByteCount] bytes are written, and then skips all
     * subsequent bytes.
     */
    internal class TriggerSink(
      private val delegate: Sink,
      private val triggerByteCount: Long,
      private val trigger: () -> Unit,
    ) : Sink by delegate {
      private var bytesWritten = 0L
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/SkipFirstTextStreamTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.io
    
    import spock.lang.Specification
    
    class SkipFirstTextStreamTest extends Specification {
    
        def "skips the first emission"() {
            given:
            def delegate = Mock(TextStream)
            def skipper = new SkipFirstTextStream(delegate)
    
            when:
            skipper.text("a")
            skipper.text("b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:13 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/SkipUpToDateStepTest.groovy

        def delegateOriginMetadata = Stub(OriginMetadata) {
            getExecutionTime() >> Duration.ofSeconds(1)
        }
    
        def setup() {
            delegateResult.duration >> Duration.ofSeconds(1)
        }
    
        def "skips when outputs are up to date"() {
            when:
            def result = step.execute(work, context)
    
            then:
            result.execution.get().outcome == UP_TO_DATE
            !result.executionReasons.present
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/LexerTest.kt

                            listOf(),
                            listOf(),
                            listOf()
                        )
                    )
                )
            )
        }
    
        @Test
        fun `skips annotation parsing inside blocks`() {
    
            assertThat(
                lex(
                    "plugins.withType<GroovyBasePlugin> {\n" +
                        "   print(\"\${******@****.***}-groovy.xml\")\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/resource/local/UniquePathKeyFileStoreTest.groovy

            when:
            def fileInStore = uniquePathKeyFileStore.add("a/a", action)
    
            then:
            fileInStore.file == file
            1 * action.execute(file) >> { File f -> f.text = 'hi' }
        }
    
        def "add skips action if file already exists"() {
            setup:
            def file = temporaryFolder.createFile("fsbase/a/a");
    
            when:
            def fileInStore = uniquePathKeyFileStore.add("a/a", action)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/SkipOnlyIfTaskExecuter.java

    import org.gradle.api.specs.Spec;
    import org.gradle.internal.Cast;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * A {@link org.gradle.api.internal.tasks.TaskExecuter} which skips tasks whose onlyIf predicate evaluates to false
     */
    public class SkipOnlyIfTaskExecuter implements TaskExecuter {
        private static final Logger LOGGER = LoggerFactory.getLogger(SkipOnlyIfTaskExecuter.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 24 11:36:30 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/SkipTaskWithNoActionsExecuter.java

    import org.gradle.api.internal.tasks.TaskStateInternal;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * A {@link org.gradle.api.internal.tasks.TaskExecuter} which skips tasks that have no actions.
     */
    public class SkipTaskWithNoActionsExecuter implements TaskExecuter {
        private static final Logger LOGGER = LoggerFactory.getLogger(SkipTaskWithNoActionsExecuter.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 09:28:17 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/classpath/ClasspathWalkerTest.groovy

        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(ClasspathWalkerTest.class)
        def walker = new ClasspathWalker(TestFiles.fileSystem())
    
        def "skips missing file"() {
            def visitor = Mock(ClasspathEntryVisitor)
    
            when:
            walker.visit(tmpDir.file("missing"), visitor)
    
            then:
            0 * visitor._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. istioctl/pkg/clioptions/central.go

    	XdsPodPort int
    
    	// CertDir is the local directory containing certificates
    	CertDir string
    
    	// Timeout is how long to wait before giving up on XDS
    	Timeout time.Duration
    
    	// InsecureSkipVerify skips client verification the server's certificate chain and host name.
    	InsecureSkipVerify bool
    
    	// XDSSAN is the expected Subject Alternative Name of the XDS server
    	XDSSAN string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 03:39:27 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top