Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 265 for getNodes (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomContributor.java

        /**
         * The organization's URL of this contributor.
         */
        Property<String> getOrganizationUrl();
    
        /**
         * The roles of this contributor.
         */
        SetProperty<String> getRoles();
    
        /**
         * The timezone of this contributor.
         */
        Property<String> getTimezone();
    
        /**
         * The properties of this contributor.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/exentity/User.java

            return asDocMeta().id();
        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        @Override
        public String[] getRoleNames() {
            return stream(getRoles()).get(stream -> stream.map(this::decode).toArray(n -> new String[n]));
        }
    
        @Override
        public String[] getGroupNames() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/FetchIncludedBuildInvocations.java

            GradleBuild build = controller.getBuildModel();
            for (GradleBuild includedBuild : build.getIncludedBuilds()) {
                invocations.add(controller.getModel(includedBuild, BuildInvocations.class));
            }
            return invocations;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/FetchIncludedGradleProjects.java

            List<GradleProject> projects = new ArrayList<GradleProject>();
            GradleBuild build = controller.getBuildModel();
            for (GradleBuild includedBuild : build.getIncludedBuilds()) {
                projects.add(controller.getModel(includedBuild, GradleProject.class));
            }
            return projects;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ToolingApiPolymorphismCrossVersionTest.groovy

            buildFile << """
                plugins {
                    id("my.plugin")
                }
            """
    
            when:
            def model = toolingApi.withConnection() { connection -> connection.getModel(BaseModel) }
    
            then:
            assertModelIsPolymorphic(model)
        }
    
        def "supports nested model polymorphism"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:03:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/connection/ProviderBuildResult.java

    public class ProviderBuildResult<T> implements BuildResult<T> {
        private final T result;
    
        public ProviderBuildResult(T result) {
            this.result = result;
        }
    
        @Override
        public T getModel() {
            return result;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 977 bytes
    - Viewed (0)
Back to top