Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,006 for until (0.82 sec)

  1. src/cmd/go/testdata/script/work_regression_hang.txt

    # where the module loader hung forever because all main module dependencies
    # kept workspace pruning instead of adopting the pruning in their go.mod
    # files, and the loader kept adding dependencies on the queue until they
    # were either pruned or unpruned, never breaking a module dependency cycle.
    #
    # This is the module graph in the test:
    #
    #                               /-------------------------\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 08 17:48:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/str/str.go

    			goto Slow
    		}
    	}
    	return s
    
    Slow:
    	var b strings.Builder
    	for _, r := range s {
    		// SimpleFold(x) cycles to the next equivalent rune > x
    		// or wraps around to smaller values. Iterate until it wraps,
    		// and we've found the minimum value.
    		for {
    			r0 := r
    			r = unicode.SimpleFold(r0)
    			if r <= r0 {
    				break
    			}
    		}
    		// Exception to allow fast path above: A-Z => a-z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 20:08:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/Cache.java

    import com.google.common.util.concurrent.ExecutionError;
    import com.google.common.util.concurrent.UncheckedExecutionException;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import com.google.errorprone.annotations.CompatibleWith;
    import com.google.errorprone.annotations.DoNotMock;
    import java.util.Map;
    import java.util.concurrent.Callable;
    import java.util.concurrent.ConcurrentMap;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

    import static org.junit.Assert.fail;
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.ThreadUtil;
    
    import io.restassured.path.json.JsonPath;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSource2.java

     * repositories.
     * <p>
     * ModelSource2 instances are cached in {@link ModelBuildingRequest#getModelCache()}. Implementations must guarantee
     * that the connection to the backing store remains active until request's {@link ModelCache} is discarded or flushed.
     */
    public interface ModelSource2 extends ModelSource {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValue.java

         */
        boolean isFinalized();
    
        /**
         * Calculates the value, if not already calculated. Collects any exception and does not rethrow them.
         * Blocks until the value is finalized, either by this thread or some other thread.
         */
        void finalizeIfNotAlready();
    
        /**
         * Returns the resource that will be required to calculate this value.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractorTest.kt

                        return "bar"
                    }
                """,
                { assertThat(it.instantiateAndCall("foo"), equalTo("bar")) }
            ).assertSameApi()
        }
    
        // test throws until we can detect lambdas in inline functions and treat them as ABI
        @Test(expected = CompileAvoidanceException::class)
        fun `changes to inline method bodies change generated API class`() {
            givenChangingClass(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/qualifiers/UsualClassTypeQualifierBuilder.kt

                    val end = typeParametersLeft
                    check(begin >= 0)
                    typeParametersLeft -= typeParametersCount
                    coneType.typeArguments.slice(begin until end).map { builder.typeBuilder.buildTypeProjection(it) }
                } else emptyList()
                result += KaClassTypeQualifier.KaResolvedClassTypeQualifier(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/ByteStreams.java

    import java.io.OutputStream;
    import java.nio.ByteBuffer;
    import java.nio.channels.FileChannel;
    import java.nio.channels.ReadableByteChannel;
    import java.nio.channels.WritableByteChannel;
    import java.util.ArrayDeque;
    import java.util.Arrays;
    import java.util.Queue;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Provides utility methods for working with byte arrays and I/O streams.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. maven-embedder/src/test/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListenerTest.java

     * under the License.
     */
    package org.apache.maven.cli.transfer;
    
    import java.io.File;
    import java.io.PrintStream;
    import java.util.Map;
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.CountDownLatch;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    
    import org.apache.maven.jline.JLineMessageBuilderFactory;
    import org.eclipse.aether.DefaultRepositorySystemSession;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top