Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for SetFlag (0.11 sec)

  1. 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)
  2. 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)
  3. src/cmd/go/internal/test/test.go

    	testShuffle      shuffleFlag                       // -shuffle flag
    	testTimeout      time.Duration                     // -timeout flag
    	testV            testVFlag                         // -v flag
    	testVet          = vetFlag{flags: defaultVetFlags} // -vet flag
    )
    
    type testVFlag struct {
    	on   bool // -v is set in some form
    	json bool // -v=test2json is set, to make output better for test2json
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top