Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for getLevels (0.14 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    	if p.options.defaultDirection == RightToLeft {
    		lvl = 1
    	}
    	para, err := newParagraph(p.types, p.pairTypes, p.pairValues, lvl)
    	if err != nil {
    		return Ordering{}, err
    	}
    
    	levels := para.getLevels([]int{len(p.types)})
    
    	p.o = calculateOrdering(levels, p.runes)
    	return p.o, nil
    }
    
    // Line computes the visual ordering of runs for a single line starting and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/core.go

    }
    
    //
    // Output
    //
    
    // getLevels computes levels array breaking lines at offsets in linebreaks.
    // Rule L1.
    //
    // The linebreaks array must include at least one value. The values must be
    // in strictly increasing order (no duplicates) between 1 and the length of
    // the text, inclusive. The last value must be the length of the text.
    func (p *paragraph) getLevels(linebreaks []int) []level {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/source/JavaUtilLoggingSystemTest.groovy

            when:
            configurer.setLevel(LogLevel.DEBUG)
    
            then:
            Logger.getLogger("").getLevel() == Level.INFO
        }
    
        def "Starting without setting a log level does not crash, but no level is set"() {
            when:
            configurer.startCapture()
    
            then:
            Logger.getLogger("").getLevel() == null
        }
    
        def "Log level can be set before starting"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/TestEventLogger.java

            int level = getLevel(descriptor);
            return ((testLogging.getMinGranularity() == -1 && !descriptor.isComposite())
                    || testLogging.getMinGranularity() > -1 && level >= testLogging.getMinGranularity())
                && (testLogging.getMaxGranularity() == -1 || level <= testLogging.getMaxGranularity());
        }
    
        private int getLevel(TestDescriptor descriptor) {
            int level = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-workers/src/main/java/org/gradle/internal/operations/logging/LogEventBuildOperationProgressDetails.java

     *
     * @since 7.4
     */
    public interface LogEventBuildOperationProgressDetails {
        String getMessage();
    
        Throwable getThrowable();
    
        String getCategory();
    
        LogEventLevel getLevel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 955 bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonStarter.java

            builder.setBaseName("Gradle Worker Daemon");
            builder.setLogLevel(loggingManager.getLevel()); // NOTE: might make sense to respect per-compile-task log level
            builder.sharedPackages("org.gradle", "javax.inject");
            if (forkOptions.getClassLoaderStructure() instanceof FlatClassLoaderStructure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-workers/src/main/java/org/gradle/internal/operations/logging/StyledTextBuildOperationProgressDetails.java

     *
     * @since 7.4
     */
    public interface StyledTextBuildOperationProgressDetails {
    
        List<? extends Span> getSpans();
    
        String getCategory();
    
        LogEventLevel getLevel();
    
        interface Span {
    
            /**
             * Always a value name of {@code org.gradle.internal.logging.text.StyledTextOutput.Style}.
             */
            String getStyleName();
    
            String getText();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaLanguageLevel.java

    /**
     * Language level setting for IDEA.
     *
     * @since 1.0-milestone-5
     */
    public interface IdeaLanguageLevel {
    
        /**
         * Gets the level value
         */
        String getLevel();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 838 bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/operations/LogEventBuildOperationProgressDetails.java

    @Deprecated
    @SuppressWarnings("DeprecatedIsStillUsed")
    public interface LogEventBuildOperationProgressDetails extends org.gradle.internal.operations.logging.LogEventBuildOperationProgressDetails {
        /**
         * Replaced by {@link #getLevel()}.
         */
        LogLevel getLogLevel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-workers/src/main/java/org/gradle/internal/operations/logging/ProgressStartBuildOperationProgressDetails.java

     *
     * @since 7.4
     */
    public interface ProgressStartBuildOperationProgressDetails {
    
        String getDescription();
    
        String getCategory();
    
        LogEventLevel getLevel();
    
        /**
         * While this may be null on the underlying implementation,
         * objects with a null value for this will not be forwarded as build operation progress.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top