Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,633 for NULL$ (0.02 sec)

  1. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsUserInfoCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setId_NotEqual(String id) {
            setId_NotTerm(id, null);
        }
    
        public void setId_NotTerm(String id) {
            setId_NotTerm(id, null);
        }
    
        public void setId_NotEqual(String id, ConditionOptionCall<BoolQueryBuilder> opLambda) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

                                        propertyName, valueClass == null ? null : valueClass.getName(),
                                        valueClass == null ? null : valueClass.getClassLoader(), convertedValue,
                                        targetClass == null ? null : targetClass.getName(),
                                        targetClass == null ? null : targetClass.getClassLoader() })
                                .initCause(t);
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

                }
            }
    
            return null;
        }
        // ------------------------------------------------------------------------
        public MetadataGraphVertex addVertex(ArtifactMetadata md) {
            if (md == null) {
                return null;
            }
    
            checkVertices();
    
            MetadataGraphVertex v = findVertex(md);
            if (v != null) {
                return v;
            }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionResult.java

            return treeRoot == null ? null : new MetadataGraph(treeRoot);
        }
        // ----------------------------------------------------------------------------
        public MetadataGraph getGraph(ArtifactScopeEnum scope)
                throws MetadataResolutionException, GraphConflictResolutionException {
            if (treeRoot == null) {
                return null;
            }
    
            if (conflictResolver == null) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblemUtils.java

         * @param artifactId The artifact id, may be {@code null}.
         * @param version The version, may be {@code null}.
         * @return The user-friendly artifact id, never {@code null}.
         */
        static String toId(String groupId, String artifactId, String version) {
            StringBuilder buffer = new StringBuilder(128);
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/TablesTest.java

                    null, null, null))
            .addEqualityGroup(
                Tables.<String, @Nullable Object, @Nullable Object>immutableCell("bar", null, null))
            .addEqualityGroup(
                Tables.<@Nullable Object, Integer, @Nullable Object>immutableCell(null, 2, null))
            .addEqualityGroup(
                Tables.<@Nullable Object, @Nullable Object, Character>immutableCell(null, null, 'b'))
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/StringUtil.java

            return str == null ? EMPTY : str;
        }
    
        /**
         * 引数の文字列を返します。引数の文字列が<code>null</code>だったら<code>defaultStr</code>を返します。
         * <p>
         * 次のように使います.
         * </p>
         *
         * <pre>
         * StringUtil.defaultString(null, "NULL")  = "NULL"
         * StringUtil.defaultString("", "NULL")    = ""
         * StringUtil.defaultString("aaa", "NULL") = "aaa"
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/RelocatedArtifact.java

            this.groupId = (groupId != null && !groupId.isEmpty()) ? groupId : null;
            this.artifactId = (artifactId != null && !artifactId.isEmpty()) ? artifactId : null;
            this.classifier = (classifier != null && !classifier.isEmpty()) ? classifier : null;
            this.extension = (extension != null && !extension.isEmpty()) ? extension : null;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

        protected void assertObjectNotNull(String variableName, Object value) {
            if (variableName == null) {
                String msg = "The value should not be null: variableName=null value=" + value;
                throw new IllegalArgumentException(msg);
            }
            if (value == null) {
                String msg = "The value should not be null: variableName=" + variableName;
                throw new IllegalArgumentException(msg);
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/io/ResourceUtil.java

            assertArgumentNotNull("loader", loader);
    
            if (path == null || loader == null) {
                return null;
            }
            final String p = getResourcePath(path, extension);
            return loader.getResource(p);
        }
    
        /**
         * コンテキストクラスローダからリソースを検索してストリームとして返します。
         *
         * @param path
         *            リソースのパス。{@literal null}や空文字列であってはいけません
         * @return ストリーム
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top