Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 161 for unreadable (0.26 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

         *
         * @param name the name of the problem. As a convention kebab-case-formatting should be used.
         * @param displayName a human-readable representation of the problem, free of any contextual information.
         * @return this
         * @since 8.8
         */
        ProblemSpec id(String name, String displayName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/admin/dict/StopwordsTests.java

            final String keyProp = NAME_PREFIX + id;
            requestBody.put(KEY_PROPERTY, keyProp);
            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            fail(); // Unreachable
            return null;
        }
    
        @Test
        void crudTest() {
            testCreate();
            testRead();
            testDelete();
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemGroup.java

    @Incubating
    public interface ProblemGroup {
    
        /**
         * The name of the problem group.
         *
         * @return the label
         * @since 8.9
         */
        String getName();
    
        /**
         * Returns a human-readable label describing the group.
         *
         * @return the display name
         * @since 8.9
         */
        String getDisplayName();
    
        /**
         * Returns the parent group or {@code null} for root groups.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 10:17:39 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/ResolutionFailure.java

     * @implSpec Extending types should be immutable data classes with no nullable fields, they
     * must also be serializable by the configuration cache.
     */
    public interface ResolutionFailure {
        /**
         * Returns a human-readable name of the requested component or configuration, for use
         * primarily in error messages.
         *
         * @return the name of the requested component or configuration
         */
        String getRequestedName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemGroup.java

     */
    @Incubating
    @Immutable
    public interface ProblemGroup {
    
        /**
         * The name of the problem group.
         *
         * @since 8.8
         */
        String getName();
    
        /**
         * Returns a human-readable label describing the group.
         *
         * @since 8.8
         */
        String getDisplayName();
    
        /**
         * Returns the parent group or {@code null} for root groups.
         *
         * @since 8.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

            return (version != null ? version : "<version unknown>");
        }
    
        /**
         * Create a human-readable string containing the Maven version, buildnumber, and time of build
         *
         * @param buildProperties The build properties
         * @return Readable build info
         */
        static String createMavenVersionString(Properties buildProperties) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/net/addrselect.go

    	attrSourceDB := &s.srcAttr[j]
    
    	const preferDA = true
    	const preferDB = false
    
    	// Rule 1: Avoid unusable destinations.
    	// If DB is known to be unreachable or if Source(DB) is undefined, then
    	// prefer DA.  Similarly, if DA is known to be unreachable or if
    	// Source(DA) is undefined, then prefer DB.
    	if !SourceDA.IsValid() && !SourceDB.IsValid() {
    		return false // "equal"
    	}
    	if !SourceDB.IsValid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. testing/soak/src/integTest/groovy/org/gradle/connectivity/MavenGoogleDependencyResolveIntegrationTest.groovy

                        content {
                            includeGroup 'org.sample'
                        }
                    }
                }
            """
        }
    
        def "can query for human-readable repository name"() {
            given:
            buildFile << """
                task checkRepoName {
                    doLast {
                        assert repositories*.name == ['Google', 'otherGoogle']
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentVariantNodeIdentifier.java

    /**
     * A node identifier that uniquely identifies a variant within a component by the variant's name.
     *
     * Note: Generally, variants should be identified by their attributes and capabilities, as the name
     * is more of a human-readable identifier.
     */
    public class ComponentVariantNodeIdentifier implements NodeIdentifier {
        private final ComponentIdentifier componentId;
        private final String variantName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/crypto/sha1/sha1.go

    	d.Reset()
    	return d
    }
    
    func (d *digest) Size() int { return Size }
    
    func (d *digest) BlockSize() int { return BlockSize }
    
    func (d *digest) Write(p []byte) (nn int, err error) {
    	boring.Unreachable()
    	nn = len(p)
    	d.len += uint64(nn)
    	if d.nx > 0 {
    		n := copy(d.x[d.nx:], p)
    		d.nx += n
    		if d.nx == chunk {
    			block(d, d.x[:])
    			d.nx = 0
    		}
    		p = p[n:]
    	}
    	if len(p) >= chunk {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top