Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 748 for LEVEL (0.1 sec)

  1. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/DirectoryProvider.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.openjdk.jmh.annotations.Level;
    
    import java.nio.file.Path;
    
    public interface DirectoryProvider {
        Path getRoot(Level level);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 802 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java

            for (final String name : loggerNames) {
                if (loggerName.startsWith(name)) {
                    final Level sourceLevel = event.getLevel();
                    if (sourceLevel != Level.ERROR) {
                        return event;
                    }
                    return new Log4jLogEvent.Builder(event).setLevel(Level.WARN).build();
                }
            }
            return event;
        }
    
        @PluginFactory
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.kt

         * Return a sequence of [KaClassifierSymbol] which current scope contain if classifier name matches [nameFilter]. The sequence includes:
         * nested classes, inner classes, nested type aliases for the class scope, and top-level classes and top-level type aliases for file scope.
         *
         * This function needs to retrieve a set of all possible names before processing the scope.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. .idea/vcs.xml

          <inspection_tool class="BodyLimit" enabled="true" level="WARNING" enabled_by_default="true" />
          <inspection_tool class="GrazieCommit" enabled="true" level="TYPO" enabled_by_default="true" />
          <inspection_tool class="SubjectBodySeparation" enabled="true" level="ERROR" enabled_by_default="true" />
          <inspection_tool class="SubjectLimit" enabled="true" level="WARNING" enabled_by_default="true" />
        </profile>
      </component>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Feb 23 14:29:33 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    	for l := level; l > 0; l-- {
    		n = 2*n + 1
    	}
    
    	// Level 0's n'th hash is written at n+n/2+n/4+... (eventually n/2ⁱ hits zero).
    	i := int64(0)
    	for ; n > 0; n >>= 1 {
    		i += n
    	}
    
    	return i + int64(level)
    }
    
    // SplitStoredHashIndex is the inverse of [StoredHashIndex].
    // That is, SplitStoredHashIndex(StoredHashIndex(level, n)) == level, n.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    # Gradle Kotlin DSL C4 Model
    
    Core link:https://c4model.com/#coreDiagrams[C4 Model] diagrams for the Gradle Kotlin DSL.
    
    NOTE: The optional 4th level, UML diagrams, isn't provided, favoring the source code and inspection tools.
    
    ## Level 1: System Context diagram
    
    A developer uses the Gradle Kotlin DSL either via Gradle directly or in an IDE that uses the Kotlin DSL support via Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/compress/gzip/gzip.go

    // of assuming [DefaultCompression].
    //
    // The compression level can be [DefaultCompression], [NoCompression], [HuffmanOnly]
    // or any integer value between [BestSpeed] and [BestCompression] inclusive.
    // The error returned will be nil if the level is valid.
    func NewWriterLevel(w io.Writer, level int) (*Writer, error) {
    	if level < HuffmanOnly || level > BestCompression {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. maven-slf4j-wrapper/src/test/java/org/apache/maven/logwrapper/LogLevelRecorderTest.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.logwrapper;
    
    import org.junit.jupiter.api.Test;
    import org.slf4j.event.Level;
    
    import static org.hamcrest.CoreMatchers.containsString;
    import static org.hamcrest.MatcherAssert.assertThat;
    import static org.junit.jupiter.api.Assertions.assertThrows;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtTypeProjection.kt

    @Deprecated(
        "The API has been moved into `org.jetbrains.kotlin.analysis.api.types` package",
        level = DeprecationLevel.HIDDEN,
    )
    public typealias KaTypeProjection = KaTypeProjection
    public typealias KtTypeProjection = KaTypeProjection
    
    @Deprecated(
        "The API has been moved into `org.jetbrains.kotlin.analysis.api.types` package",
        level = DeprecationLevel.HIDDEN,
    )
    public typealias KaStarTypeProjection = KaStarTypeProjection
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            testCase                                           | convention                         | buildConfiguration    | expectedConfiguration
            "top-level property has convention and is set"     | setId("convention")                | setId("test")         | """id = test\nbar = bar"""
            "top-level property has convention, nested is set" | setId("convention")                | setFooBar("baz")      | """id = convention\nbar = baz"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top