Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,150 for getNames (0.3 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/PlayApp.groovy

    abstract class PlayApp {
        boolean oldVersion
    
        PlayApp() {
        }
    
        PlayApp(VersionNumber version) {
            this.oldVersion = version < VersionNumber.parse('2.6.0')
        }
    
        String getName() {
            getClass().getSimpleName().toLowerCase()
        }
    
        List<SourceFile> getAllFiles() {
            return appSources + testSources + viewSources + assetSources + confSources + otherSources
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/FessActionDefTest.java

                public void handle(File srcFile, Class<?> clazz) {
                    final String webPackageKeyword = getWebPackageKeyword();
                    if (!clazz.getName().contains(webPackageKeyword) ||
                    // exclude app.web.api.admin packages
                            clazz.getName().contains(".app.web.api.admin.")) {
                        return;
                    }
                    check(srcFile, clazz, webPackageKeyword);
                }
    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. schema/constraint.go

    var regEnLetterAndMidline = regexp.MustCompile(`^[\w-]+$`)
    
    type CheckConstraint struct {
    	Name       string
    	Constraint string // length(phone) >= 10
    	*Field
    }
    
    func (chk *CheckConstraint) GetName() string { return chk.Name }
    
    func (chk *CheckConstraint) Build() (sql string, vars []interface{}) {
    	return "CONSTRAINT ? CHECK (?)", []interface{}{clause.Column{Name: chk.Name}, clause.Expr{SQL: chk.Constraint}}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 07:33:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfigWrapper.java

            this.crawlingConfig = crawlingConfig;
        }
    
        @Override
        public String getId() {
            return crawlingConfig.getId();
        }
    
        @Override
        public String getName() {
            return crawlingConfig.getName();
        }
    
        @Override
        public String[] getPermissions() {
            return crawlingConfig.getPermissions();
        }
    
        @Override
        public String[] getVirtualHosts() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/MethodInvocation.java

            arguments = args == null ? ZERO_ARGS : args;
        }
    
        public Object[] getArguments() {
            return arguments;
        }
    
        public String getMethodName() {
            return method.getName();
        }
    
        public Method getMethod() {
            return method;
        }
    
        @Override
        public boolean equals(Object obj) {
            if (obj == this) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 12:43:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultAttributesSchema.java

                            sorted.add(remaining.remove(preferredAttribute.getName()));
                        }
                    }
                    // Add attribute index to sorted in the order of precedence by the producer
                    for (Attribute<?> preferredAttribute : producerSchema.getAttributeDisambiguationPrecedence()) {
                        if (remaining.containsKey(preferredAttribute.getName()) && requested.contains(preferredAttribute)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:59:54 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestEventSerializer.java

             */
            private void writeThrowableWithType(Encoder encoder, DefaultTestFailure value, Throwable rawFailure) throws Exception {
                encoder.writeString(rawFailure.getClass().getName());
                throwableSerializer.write(encoder, value.getRawFailure());
            }
        }
    
        private static class DefaultTestSuiteDescriptorSerializer implements Serializer<DefaultTestSuiteDescriptor> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemGroup.java

     * <p>
     * Two problem groups  are considered equal if their {@link #getName()} and their parents' are equal.
     *
     * @since 8.8
     * @see ProblemId
     */
    @Incubating
    @Immutable
    public interface ProblemGroup {
    
        /**
         * The name of the problem group.
         *
         * @since 8.8
         */
        String getName();
    
        /**
         * Returns a human-readable label describing the group.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivator.java

            if (active && os.getFamily() != null) {
                active = determineFamilyMatch(os.getFamily(), actualOsName);
            }
            if (active && os.getName() != null) {
                active = determineNameMatch(os.getName(), actualOsName);
            }
            if (active && os.getArch() != null) {
                active = determineArchMatch(os.getArch(), actualOsArch);
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 05 14:16:41 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/OperatingSystemProfileActivator.java

            if (active && os.getFamily() != null) {
                active = determineFamilyMatch(os.getFamily(), actualOsName);
            }
            if (active && os.getName() != null) {
                active = determineNameMatch(os.getName(), actualOsName);
            }
            if (active && os.getArch() != null) {
                active = determineArchMatch(os.getArch(), actualOsArch);
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top