Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for testflag (0.17 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. 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)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

        }
    
        @Managed
        static interface BooleanGetter1 {
            boolean getFlag()
        }
    
        @Managed
        static interface BooleanGetter2 {
            boolean isFlag()
        }
    
        @Managed
        static interface BooleanGetter3 {
            boolean getFlag()
    
            boolean isFlag()
        }
    
        @Managed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/AbstractPropertyLanguageInterOpIntegrationTest.groovy

                    public void apply(Project project) {
                        project.getTasks().withType(SomeTask.class).configureEach(t -> {
                            t.getFlag().set(false);
                            t.getMessage().set("some other value");
                            t.getNumber().set(1.23);
                            t.getList().set(Arrays.asList(1, 2));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top