Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 248 for EXPRESSION (0.04 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RegexRule.java

        }
    
        /**
         * Adds a regular expression rule for the specified field.
         * @param key the field name to match against
         * @param regex the regular expression pattern
         */
        public void addRule(final String key, final String regex) {
            regexMap.put(key, Pattern.compile(regex));
        }
    
        /**
         * Adds a compiled regular expression rule for the specified field.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. callbacks/query.go

    										Alias: utils.NestedRelationName(tableAliasName, s),
    									})
    								}
    							}
    
    							if join.Expression != nil {
    								return clause.Join{
    									Type:       join.JoinType,
    									Expression: join.Expression,
    								}
    							}
    
    							exprs := make([]clause.Expression, len(relation.References))
    							for idx, ref := range relation.References {
    								if ref.OwnPrimaryKey {
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Sun May 25 07:40:40 UTC 2025
    - 10.4K bytes
    - Viewed (3)
  3. impl/maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml

                  <outputFile>target/extension.properties</outputFile>
                  <expressions>
                    <expression>project/build/extensions</expression>
                  </expressions>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockResponse.kt

        message = "moved to var",
        replaceWith = ReplaceWith(expression = "headers"),
        level = DeprecationLevel.ERROR,
      )
      fun getHeaders(): Headers = headers
    
      fun setHeaders(headers: Headers) = apply { this.headers = headers }
    
      @JvmName("-deprecated_getTrailers")
      @Deprecated(
        message = "moved to var",
        replaceWith = ReplaceWith(expression = "trailers"),
        level = DeprecationLevel.ERROR,
      )
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 7.1K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/core/misc/AssertionUtil.java

         *
         * @param expression
         *            The precondition.
         * @param description
         *            The description of why the state is invalid.
         * @throws ClIllegalStateException
         *             If {@code expression} is false.
         */
        public static void assertState(final boolean expression, final String description) {
            if (!expression) {
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CacheControl.kt

      @JvmName("-deprecated_noCache")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "noCache"),
        level = DeprecationLevel.ERROR,
      )
      fun noCache(): Boolean = noCache
    
      @JvmName("-deprecated_noStore")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "noStore"),
        level = DeprecationLevel.ERROR,
      )
      fun noStore(): Boolean = noStore
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. clause/insert.go

    	}
    }
    
    // MergeClause merge insert clause
    func (insert Insert) MergeClause(clause *Clause) {
    	if v, ok := clause.Expression.(Insert); ok {
    		if insert.Modifier == "" {
    			insert.Modifier = v.Modifier
    		}
    		if insert.Table.Name == "" {
    			insert.Table = v.Table
    		}
    	}
    	clause.Expression = insert
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Mon Mar 09 09:07:00 UTC 2020
    - 767 bytes
    - Viewed (0)
  8. clause/returning.go

    // MergeClause merge order by clauses
    func (returning Returning) MergeClause(clause *Clause) {
    	if v, ok := clause.Expression.(Returning); ok && len(returning.Columns) > 0 {
    		if v.Columns != nil {
    			returning.Columns = append(v.Columns, returning.Columns...)
    		} else {
    			returning.Columns = nil
    		}
    	}
    	clause.Expression = returning
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Sun Jan 12 10:18:04 UTC 2025
    - 777 bytes
    - Viewed (0)
  9. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/AbstractStringBasedModelInterpolator.java

                        new AbstractValueSource(false) {
                            @Override
                            public Object getValue(String expression) {
                                if ("basedir".equals(expression)) {
                                    return projectDir.getAbsolutePath();
                                }
                                return null;
                            }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterException.java

                }
            }
    
            if (expression == null || expression.isEmpty()) {
                messageBuffer.append('.');
            } else {
                if (param.isEditable()) {
                    messageBuffer.append(LS).append(LS).append("-OR-").append(LS).append(LS);
                }
    
                // addParameterUsageInfo( expression, messageBuffer );
            }
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 6.8K bytes
    - Viewed (0)
Back to top