Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,716 for description (0.23 sec)

  1. security/tools/deb/description

    Tao Li <******@****.***> 1516856822 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 05:07:02 UTC 2018
    - 73 bytes
    - Viewed (0)
  2. src/runtime/metrics/description.go

    	Cumulative bool
    }
    
    // The English language descriptions below must be kept in sync with the
    // descriptions of each metric in doc.go by running 'go generate'.
    var allDesc = []Description{
    	{
    		Name:        "/cgo/go-to-c-calls:calls",
    		Description: "Count of calls made from Go to C by the current process.",
    		Kind:        KindUint64,
    		Cumulative:  true,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/model/Description.java

    public class Description {
        public final static Description JAVA = new Description(
            Language.JAVA,
            JUNIT_JUPITER,
            asList(JUNIT, JUNIT_JUPITER, TESTNG, SPOCK),
            null, null
        );
    
        public final static Description GROOVY = new Description(
            Language.GROOVY,
            SPOCK,
            singletonList(SPOCK),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 07:33:54 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. hack/verify-description.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks API-related files for missing descriptions and outputs a
    # list of structs and fields that are missing descriptions.
    # Usage: `hack/verify-description.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasons.java

            public ComponentSelectionReasonInternal addCause(ComponentSelectionDescriptor description) {
                ComponentSelectionDescriptorInternal descriptor = (ComponentSelectionDescriptorInternal) description;
                if (!descriptions.contains(descriptor)) {
                    descriptions.add(descriptor);
                }
                return this;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestEventAdapter.java

        }
    
        // Use this instead of Description.getClassName(), it is not available in JUnit <= 4.5
        public static String className(Description description) {
            return className(description.toString());
        }
    
        public static String className(String description) {
            Matcher matcher = methodStringMatcher(description);
            return matcher.matches() ? matcher.group(2) : description;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  7. api/maven-api-plugin/src/main/mdo/plugin.mdo

            </field>
            <field>
              <name>description</name>
              <version>1.0.0+</version>
              <description>Description of the plugin.</description>
              <type>String</type>
            </field>
            <field>
              <name>groupId</name>
              <version>1.0.0+</version>
              <description>The group id of the plugin.</description>
              <type>String</type>
              <required>true</required>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultEarSecurityRole.java

        }
    
        public DefaultEarSecurityRole(String roleName, String description) {
            this.roleName = roleName;
            this.description = description;
        }
    
        @Override
        public String getDescription() {
            return description;
        }
    
        @Override
        public void setDescription(String description) {
            this.description = description;
        }
    
        @Override
        public String getRoleName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. api/maven-api-plugin/src/main/mdo/lifecycle.mdo

          <version>1.0.0</version>
          <description>A custom lifecycle mapping definition.</description>
          <fields>
            <field>
              <name>id</name>
              <required>true</required>
              <version>1.0.0</version>
              <type>String</type>
              <description>The ID of this lifecycle, for identification in the mojo descriptor.</description>
            </field>
            <field>
              <name>phases</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. maven-embedder/src/main/mdo/core-extensions.mdo

          <name>CoreExtensions</name>
          <description>Extensions to load.</description>
          <version>1.0.0+</version>
          <fields>
            <field>
              <name>extensions</name>
              <description>A set of build extensions to use from this project.</description>
              <version>1.0.0+</version>
              <association xml.itemsStyle="flat">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top