Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 418 for getModes (0.11 sec)

  1. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

            buildFile << "assert gradle.gradleVersion == '${GradleVersion.current().version}'"
    
            when:
            GradleProject model = toolingApi.withConnection { connection -> connection.getModel(GradleProject.class) }
    
            then:
            model != null
        }
    
        def "tooling api output reports 'CONFIGURE SUCCESSFUL' for model requests"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/GlobalLoggingManipulationIntegrationTest.groovy

            def inInstance = System.in
    
            buildFile << """
                task hey
            """
    
            when:
            GradleProject model = toolingApi.withConnection { ProjectConnection connection -> connection.getModel(GradleProject.class) }
    
            then:
            model.tasks.find { it.name == 'hey' }
            System.out.is(outInstance)
            System.err.is(errInstance)
            System.in.is(inInstance)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/AccessIncludedBuildProjectBuildAction.java

            List<String> model = new ArrayList<String>();
            for (GradleBuild included: controller.getBuildModel().getIncludedBuilds()) {
                EclipseProject project = controller.getModel(included.getRootProject(), EclipseProject.class);
                model.add(project.getName());
            }
            return model;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/destinationrule/ca-certificates.go

    	dr := r.Message.(*v1alpha3.DestinationRule)
    	drNs := r.Metadata.FullName.Namespace
    	drName := r.Metadata.FullName.String()
    	mode := dr.GetTrafficPolicy().GetTls().GetMode()
    	if mode == v1alpha3.ClientTLSSettings_SIMPLE || mode == v1alpha3.ClientTLSSettings_MUTUAL {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/r54/TellGradleToRunAutoBuildTasks.java

    import java.io.Serializable;
    
    public class TellGradleToRunAutoBuildTasks implements BuildAction<Void>, Serializable {
    
        @Override
        public Void execute(BuildController controller) {
                controller.getModel(RunEclipseAutoBuildTasks.class);
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java

            return delegate;
        }
    
        @Override
        public Plugin getPlugin() {
            return new Plugin() {
                @Override
                public org.apache.maven.api.model.Plugin getModel() {
                    return delegate.getPlugin().getDelegate();
                }
    
                @Override
                public PluginDescriptor getDescriptor() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/groovy/url-verifier-plugin/src/main/java/org/myorg/http/HttpResponse.java

    public class HttpResponse {
        private int code;
        private String message;
    
        public HttpResponse(int code, String message) {
            this.code = code;
            this.message = message;
        }
    
        public int getCode() {
            return code;
        }
    
        public String getMessage() {
            return message;
        }
    
        @Override
        public String toString() {
            return "HTTP " + code + ", Reason: " + message;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 449 bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

                String projectId = projectVertex.getLabel();
    
                MavenProject project = projectMap.get(projectId);
    
                for (Dependency dependency : project.getModel().getDelegate().getDependencies()) {
                    addEdge(
                            projectMap,
                            vertexMap,
                            project,
                            projectVertex,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. pkg/volume/util/hostutil/fake_hostutil.go

    // Not implemented for testing
    func (hu *FakeHostUtil) GetSELinuxSupport(pathname string) (bool, error) {
    	return false, nil
    }
    
    // GetMode returns permissions of pathname.
    // Not implemented for testing
    func (hu *FakeHostUtil) GetMode(pathname string) (os.FileMode, error) {
    	return 0, errors.New("not implemented")
    }
    
    // GetSELinuxMountContext returns value of -o context=XYZ mount option on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 13:32:38 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r24/ModelTasksToolingApiCrossVersionTest.groovy

                        }
                    }
                }
            '''
        }
    
        def "tasks added using model rule are visible from tooling api"() {
            when:
            GradleProject project = withConnection { it.getModel(GradleProject.class) }
    
            then:
            project.tasks*.name.contains "fromModel"
        }
    
        def "tasks added using model rule can be executed"() {
            when:
            withConnection { connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top