Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for testflag (0.56 sec)

  1. src/cmd/go/internal/test/testflag.go

    	}
    	return f.abs
    }
    
    // vetFlag implements the special parsing logic for the -vet flag:
    // a comma-separated list, with distinguished values "all" and
    // "off", plus a boolean tracking whether it was set explicitly.
    //
    // "all" is encoded as vetFlag{true, false, nil}, since it will
    // pass no flags to the vet binary, and by default, it runs all
    // analyzers.
    type vetFlag struct {
    	explicit bool
    	off      bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CallInterceptingMetaClassTest.groovy

            "directly"        | "string"  | "setTestString(String)"                       | "testString"          | { testString = "!" }
            "directly"        | "boolean" | "setTestFlag(boolean)"                        | "testFlag"            | { testFlag = true }
            "directly"        | "string"  | "setNonExistentProperty(String)-non-existent" | "nonExistentProperty" | { nonExistentProperty = "!" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessor.java

                if (spec.isDryRun()) {
                    TestPlan testPlan = launcher.discover(discoveryRequest);
                    executeDryRun(testPlan, executionListener);
                } else {
                    launcher.execute(discoveryRequest, executionListener);
                }
            }
        }
    
        private void executeDryRun(TestPlan testPlan, TestExecutionListener listener) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. pkg/kubelet/pleg/generic_test.go

    	assert.Equal(t, &kubecontainer.PodStatus{ID: pods[0].ID}, actualStatus)
    	assert.Equal(t, nil, actualErr)
    }
    
    func TestHealthy(t *testing.T) {
    	testPleg := newTestGenericPLEG()
    
    	// pleg should initially be unhealthy
    	pleg, _, clock := testPleg.pleg, testPleg.runtime, testPleg.clock
    	ok, _ := pleg.Healthy()
    	assert.False(t, ok, "pleg should be unhealthy")
    
    	// Advance the clock without any relisting.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

        private TestPlan currentTestPlan;
    
        public JUnitPlatformTestExecutionListener(TestResultProcessor resultProcessor, Clock clock, IdGenerator<?> idGenerator) {
            this.resultProcessor = resultProcessor;
            this.clock = clock;
            this.idGenerator = idGenerator;
        }
    
        @Override
        public void testPlanExecutionStarted(TestPlan testPlan) {
            this.currentTestPlan = testPlan;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/cmd/link/link_test.go

    `
    
    const testStrictDupAsmSrc1 = `
    #include "textflag.h"
    TEXT	·f(SB), NOSPLIT|DUPOK, $0-0
    	RET
    `
    
    const testStrictDupAsmSrc2 = `
    #include "textflag.h"
    TEXT	·f(SB), NOSPLIT|DUPOK, $0-0
    	JMP	0(PC)
    `
    
    const testStrictDupAsmSrc3 = `
    #include "textflag.h"
    GLOBL ·rcon(SB), RODATA|DUPOK, $64
    `
    
    const testStrictDupAsmSrc4 = `
    #include "textflag.h"
    GLOBL ·rcon(SB), RODATA|DUPOK, $32
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse_test.go

    	{strings.Repeat("(?:", 999) + strings.Repeat(")*", 999), ``},
    	{"(" + strings.Repeat("|", 12345) + ")", ``}, // not nested at all
    }
    
    const testFlags = MatchNL | PerlX | UnicodeGroups
    
    func TestParseSimple(t *testing.T) {
    	testParseDump(t, parseTests, testFlags)
    }
    
    var foldcaseTests = []parseTest{
    	{`AbCdE`, `strfold{ABCDE}`},
    	{`[Aa]`, `litfold{A}`},
    	{`a`, `litfold{A}`},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ntlmssp/Type2Message.java

            this(
                tc,
                getDefaultFlags(tc, type1),
                challenge,
                ( type1 != null && target == null && type1.getFlag(NTLMSSP_REQUEST_TARGET) ) ? tc.getConfig().getDefaultDomain() : target);
        }
    
    
        /**
         * Creates a Type-2 message with the specified parameters.
         * 
         * @param tc
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ntlmssp/Type3Message.java

                passwordHash = NtlmUtil.getNTHash(password);
            }
    
            switch ( tc.getConfig().getLanManCompatibility() ) {
            case 0:
            case 1:
                if ( !getFlag(NTLMSSP_NEGOTIATE_EXTENDED_SESSIONSECURITY) ) {
                    setLMResponse(getLMResponse(tc, type2, password));
                    setNTResponse(getNTResponse(tc, type2, passwordHash));
                }
                else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 30.6K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

            def clazz = xmlReport.testClass("SomeTest")
            clazz.testCount == 6
            (clazz as JUnitTestClassExecutionResult).testCasesCount == 2
            clazz.assertTestPassed("testFlaky[]")
            clazz.assertTestFailed("testFailing[]", CoreMatchers.anything())
        }
    
        // TODO: remove in Gradle 9.0
        def "using deprecated testReport elements emits deprecation warnings"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
Back to top