Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 231 for checkDep (0.14 sec)

  1. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

        // Ensure that all state is represented in the toString, so it's more useful for debugging
        // In the future StartParameter should be replaced with a `record` so this doesn't need to be checked
        void "all state is represented in toString"() {
            given:
            def parameter = new StartParameter()
            def fieldNames = StartParameter.class.getDeclaredFields()
                .findAll { !it.synthetic }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/CompactHashMap.java

    import java.util.Spliterators;
    import java.util.function.BiConsumer;
    import java.util.function.BiFunction;
    import java.util.function.Consumer;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * CompactHashMap is an implementation of a Map. All optional operations (put and remove) are
     * supported. Null keys and values are supported.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Comparators.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.Comparator;
    import java.util.Iterator;
    import java.util.List;
    import java.util.stream.Collector;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Provides static methods for working with {@link Comparator} instances. For many other helpful
     * comparator utilities, see either {@code Comparator} itself (for Java 8+), or {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

          value > Int.MAX_VALUE -> Int.MAX_VALUE
          value < 0 -> 0
          else -> value.toInt()
        }
      } catch (_: NumberFormatException) {
        return defaultValue
      }
    }
    
    /** Closes this, ignoring any checked exceptions. */
    fun Closeable.closeQuietly() {
      try {
        close()
      } catch (rethrown: RuntimeException) {
        throw rethrown
      } catch (_: Exception) {
      }
    }
    
    /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/crypto/x509/verify.go

    // Otherwise it returns an error describing the mismatch.
    //
    // IP addresses can be optionally enclosed in square brackets and are checked
    // against the IPAddresses field. Other names are checked case insensitively
    // against the DNSNames field. If the names are valid hostnames, the certificate
    // fields can have a wildcard as the complete left-most label (e.g. *.example.com).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    The initialization scripts come bundled with the distribution and are applied every time the build is run.
    Developers only need to point their checked-in <<gradle_wrapper.adoc#gradle_wrapper_reference,Wrapper>> files to the URL of the custom Gradle distribution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map.Entry;
    import java.util.Set;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A series of tests that support asserting that collections cannot be modified, either through
     * direct or indirect means.
     *
     * @author Robert Konigsberg
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableList.java

    import java.util.Comparator;
    import java.util.Iterator;
    import java.util.List;
    import java.util.RandomAccess;
    import java.util.stream.Collector;
    import jsinterop.annotations.JsMethod;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * GWT emulated version of {@link com.google.common.collect.ImmutableList}. TODO(cpovirk): more doc
     *
     * @author Hayward Chan
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    					// The points at which we want to artificially
    					// invalidate the interval and test its behaviour
    					// should be multiples of bufferSize. This is because
    					// invalidation only needs to be checked when we are
    					// copying over events from the underlying watch cache,
    					// i.e. freshly filling in the interval buffer.
    					if i%bufferSize == 0 && i != c.eventsAddedToWatchcache {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/runtime/symtab.go

    		return stk
    	}
    
    	u, uf := newInlineUnwinder(f, tracepc)
    	if !u.isInlined(uf) {
    		// Nothing inline at tracepc.
    		return stk
    	}
    
    	// Treat the previous func as normal. We haven't actually checked, but
    	// since this pc was included in the stack, we know it shouldn't be
    	// elided.
    	calleeID := abi.FuncIDNormal
    
    	// Remove pc from stk; we'll re-add it below.
    	stk = stk[:len(stk)-1]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top