Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 424 for setDescription (0.26 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         *
         * @return the description. May be null.
         */
        @Nullable
        String getDescription();
    
        /**
         * Sets the description for this configuration.
         *
         * @param description the description. May be null
         * @return this configuration
         */
        Configuration setDescription(@Nullable String description);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
        @Nullable
        public String getDescription() {
            return description;
        }
    
        @Override
        public void setDescription(@Nullable String description) {
            this.description = description;
        }
    
        @Override
        public Object getGroup() {
            if (group != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         */
        @Internal
        @Nullable
        String getDescription();
    
        /**
         * Sets a description for this task. This should describe what the task does to the user of the build. The
         * description will be displayed when <code>gradle tasks</code> is called.
         *
         * @param description The description of the task. Might be null.
         */
        void setDescription(@Nullable String description);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    setAttributeValue(result, fessConfig.getLdapAttrRoomNumber(), o -> user.setRoomNumber(o.toString()));
                    setAttributeValue(result, fessConfig.getLdapAttrDescription(), o -> user.setDescription(o.toString()));
                    setAttributeValue(result, fessConfig.getLdapAttrTitle(), o -> user.setTitle(o.toString()));
                    setAttributeValue(result, fessConfig.getLdapAttrPager(), o -> user.setPager(o.toString()));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            taskFactory.create(_ as TaskIdentity) >> task
    
            when:
            Task added = container.create([name: 'task', description: "some task"])
    
            then:
            added == task
            1 * task.setDescription("some task")
        }
    
        void 'can create task with group'() {
            def task = task("task")
            taskFactory.create(_ as TaskIdentity) >> task
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        }
    
        def "set description, visibility and transitivity"() {
            given:
            def configuration = conf()
    
            when:
            configuration.setDescription("description")
            configuration.setVisible(false)
            configuration.setTransitive(false)
    
            then:
            configuration.description == "description"
            !configuration.visible
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            this.transitive = transitive;
            return this;
        }
    
        @Override
        @Nullable
        public String getDescription() {
            return description;
        }
    
        @Override
        public Configuration setDescription(@Nullable String description) {
            this.description = description;
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DriverDate    Filetime
    	DriverVersion uint64
    }
    
    func (data *DrvInfoData) Description() string {
    	return UTF16ToString(data.description[:])
    }
    
    func (data *DrvInfoData) SetDescription(description string) error {
    	str, err := UTF16FromString(description)
    	if err != nil {
    		return err
    	}
    	copy(data.description[:], str)
    	return nil
    }
    
    func (data *DrvInfoData) MfgName() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @return the description. May return null.
         */
        @Nullable
        String getDescription();
    
        /**
         * Sets a description for this project.
         *
         * @param description The description of the project. Might be null.
         */
        void setDescription(@Nullable String description);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top