Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,050 for other_2 (0.2 sec)

  1. src/main/java/org/codelibs/fess/helper/UserAgentHelper.java

                    if (uaType == null) {
                        uaType = UserAgentType.OTHER;
                    }
                    request.setAttribute(USER_AGENT_TYPE, uaType);
                }
                return uaType;
            }).orElse(UserAgentType.OTHER);
        }
    
        public enum UserAgentType {
            IE, FIREFOX, CHROME, SAFARI, OPERA, OTHER;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/syslist_test.go

    	{"file_" + thisArch + ".go", true},
    	{"file_" + otherArch + ".go", false},
    	{"file_" + thisOS + ".go", true},
    	{"file_" + otherOS + ".go", false},
    	{"file_" + thisOS + "_" + thisArch + ".go", true},
    	{"file_" + otherOS + "_" + thisArch + ".go", false},
    	{"file_" + thisOS + "_" + otherArch + ".go", false},
    	{"file_" + otherOS + "_" + otherArch + ".go", false},
    	{"file_foo_" + thisArch + ".go", true},
    	{"file_foo_" + otherArch + ".go", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 20:19:10 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. docs/contribute/code_of_conduct.md

       capacity and competence.
    
     * **Be considerate**: People use our work, and we depend on the work of others. Consider users and
       colleagues before taking action. For example, changes to code, infrastructure, policy, and
       documentation may negatively impact others.
    
     * **Be respectful**: We expect people to work together to resolve conflict, assume good intentions,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

            if (this == obj) {
                return true;
            }
            if ((obj == null) || (getClass() != obj.getClass())) {
                return false;
            }
            final ProtwordsItem other = (ProtwordsItem) obj;
            if (!input.equals(other.input)) {
                return false;
            }
            return true;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/misc/Pair.java

            }
            @SuppressWarnings("unchecked")
            final Pair<T1, T2> other = (Pair<T1, T2>) obj;
            if (first == null) {
                if (other.first != null) {
                    return false;
                }
            } else if (!first.equals(other.first)) {
                return false;
            }
            if (second == null) {
                if (other.second != null) {
                    return false;
                }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

                return false;
            }
            final KuromojiItem other = (KuromojiItem) obj;
            if (!Objects.equals(pos, other.pos) || !Objects.equals(reading, other.reading) || !Objects.equals(segmentation, other.segmentation)
                    || !Objects.equals(token, other.token)) {
                return false;
            }
            return true;
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

            }
            if ((obj == null) || (getClass() != obj.getClass())) {
                return false;
            }
            final SynonymItem other = (SynonymItem) obj;
            if (!ArrayUtil.equalsIgnoreSequence(inputs, other.inputs) || !ArrayUtil.equalsIgnoreSequence(outputs, other.outputs)) {
                return false;
            }
            return true;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java

            if (this == obj) {
                return true;
            }
            if ((obj == null) || (getClass() != obj.getClass())) {
                return false;
            }
            final StopwordsItem other = (StopwordsItem) obj;
            if (!input.equals(other.input)) {
                return false;
            }
            return true;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. .github/DISCUSSION_TEMPLATE/questions.yml

            That's a lot of work they are doing, but if more FastAPI users came to help others like them just a little bit more, it would be much less effort for them (and you and me 😅).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    	externalGVK := externalGV.WithKind("Simple")
    	otherGV := schema.GroupVersion{Group: "group", Version: "other"}
    
    	scheme := runtime.NewScheme()
    	scheme.AddUnversionedTypes(externalGV, &runtimetesting.InternalSimple{})
    	scheme.AddKnownTypeWithName(internalGVK, &runtimetesting.InternalSimple{})
    	scheme.AddKnownTypeWithName(externalGVK, &runtimetesting.ExternalSimple{})
    	scheme.AddKnownTypeWithName(otherGV.WithKind("Simple"), &runtimetesting.ExternalSimple{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
Back to top