Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for pollable (0.19 sec)

  1. guava-tests/test/com/google/common/collect/SetsTest.java

    import java.util.stream.Collector;
    import java.util.stream.Stream;
    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Unit test for {@code Sets}.
     *
     * @author Kevin Bourrillion
     * @author Jared Levy
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public class SetsTest extends TestCase {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  2. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    synchronized class ExclusiveFileAccessM { public static final String LOCK_FILE_SUFFIX = .lck; private final int timeoutMs; private final int pollIntervalMs; public void ExclusiveFileAccessM(int, int); public Object access(java.io.File, java.util.concurrent.Callable) throws Exception; private long getTimeMillis(); private static void maybeCloseQuietly(java.io.Closeable); } org/gradle/wrapper/GradleUserHomeLookup.class package org.gradle.wrapper; public synchronized class GradleUserHomeLookup { public static...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/TypeToken.java

       * @param typeArg the actual type to substitute
       */
      /*
       * TODO(cpovirk): Is there any way for us to support TypeParameter instances for type parameters
       * that have nullable bounds? Unfortunately, if we change the parameter to TypeParameter<? extends
       * @Nullable X>, then users might pass a TypeParameter<Y>, where Y is a subtype of X, while still
       * passing a TypeToken<X>. This would be invalid. Maybe we could accept a TypeParameter<@PolyNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  4. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"image/x-jp2-codestream",
    				"image/x-jp2-container",
    				"image/x-niff",
    				"image/x-pcx",
    				"image/x-pict",
    				"image/x-portable-anymap",
    				"image/x-portable-bitmap",
    				"image/x-portable-graymap",
    				"image/x-portable-pixmap",
    				"image/x-raw-adobe",
    				"image/x-raw-hasselblad",
    				"image/x-raw-fuji",
    				"image/x-raw-canon",
    				"image/x-raw-kodak",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/reflect/TypeToken.java

       * @param typeArg the actual type to substitute
       */
      /*
       * TODO(cpovirk): Is there any way for us to support TypeParameter instances for type parameters
       * that have nullable bounds? Unfortunately, if we change the parameter to TypeParameter<? extends
       * @Nullable X>, then users might pass a TypeParameter<Y>, where Y is a subtype of X, while still
       * passing a TypeToken<X>. This would be invalid. Maybe we could accept a TypeParameter<@PolyNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    		*out = new(apiextensions.JSON)
    		if err := Convert_v1_JSON_To_apiextensions_JSON(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.Example = nil
    	}
    	out.Nullable = in.Nullable
    	out.XPreserveUnknownFields = (*bool)(unsafe.Pointer(in.XPreserveUnknownFields))
    	out.XEmbeddedResource = in.XEmbeddedResource
    	out.XIntOrString = in.XIntOrString
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    		*out = new(apiextensions.JSON)
    		if err := Convert_v1beta1_JSON_To_apiextensions_JSON(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.Example = nil
    	}
    	out.Nullable = in.Nullable
    	out.XPreserveUnknownFields = (*bool)(unsafe.Pointer(in.XPreserveUnknownFields))
    	out.XEmbeddedResource = in.XEmbeddedResource
    	out.XIntOrString = in.XIntOrString
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_3x.md

     *  Fix: Release the connection if `Authenticator` throws an exception.
     *  Fix: Change the declaration of `OkHttpClient.cache()` to return a `@Nullable Cache`. The return
        value has always been nullable but it wasn't declared properly.
     *  Fix: Reverse suppression of connect exceptions. When both a call and its retry fail, we now
        throw the initial exception which is most likely to be actionable.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Preconditions.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static convenience methods that help a method or constructor check whether it was invoked
     * correctly (that is, whether its <i>preconditions</i> were met).
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The Kotlin DSL now respects JSR-305 package annotations.
    +
    This will lead to some types annotated according to JSR-305 being treated as nullable where they were treated as non-nullable before.
    This may lead to compilation errors in the build script. See https://github.com/gradle/kotlin-dsl/releases/tag/v0.17.4[the relevant Kotlin DSL release notes] for details.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top