Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,471 for isSafe (0.11 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/Receive.java

     * limitations under the License.
     */
    package org.gradle.internal.dispatch;
    
    import javax.annotation.Nullable;
    
    /**
     * A source for messages. Implementations do not have to be thread-safe.
     */
    public interface Receive<T> {
        /**
         * Blocks until the next message is available. Returns null when the end of the message stream has been reached.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/TopKSelector.java

          bufferSize = 1;
        } else if (bufferSize < k) {
          buffer[bufferSize++] = elem;
          // uncheckedCastNullableTToT is safe because bufferSize > 0.
          if (comparator.compare(elem, uncheckedCastNullableTToT(threshold)) > 0) {
            threshold = elem;
          }
          // uncheckedCastNullableTToT is safe because bufferSize > 0.
        } else if (comparator.compare(elem, uncheckedCastNullableTToT(threshold)) < 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/FeatureHandler.java

     * limitations under the License.
     */
    
    package org.gradle.internal.featurelifecycle;
    
    /**
     * Notified when a deprecated feature is used.
     *
     * <p>Implementations need not be thread-safe.
     */
    public interface FeatureHandler<T extends FeatureUsage> {
        void featureUsed(T usage);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 860 bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/Service.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.service;
    
    /**
     * Wraps a single service instance. Implementations must be thread safe.
     */
    interface Service {
        String getDisplayName();
    
        /**
         * Returns the instance of the underlying service.
         */
        Object get();
    
        void requiredBy(ServiceProvider serviceProvider);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:08:22 UTC 2023
    - 932 bytes
    - Viewed (0)
  5. src/net/cgo_unix_cgo_res.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // res_search, for cgo systems where that is thread-safe.
    
    //go:build cgo && !netgo && (linux || openbsd)
    
    package net
    
    /*
    #include <sys/types.h>
    #include <sys/socket.h>
    #include <netinet/in.h>
    #include <netdb.h>
    #include <unistd.h>
    #include <string.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 892 bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/xml/XmlEscapers.java

       * href="http://www.w3.org/TR/2008/REC-xml-20081126/#syntax">2.4</a> of the XML specification.
       *
       * <p><b>Note:</b> Double and single quotes are not escaped, so it is <b>not safe</b> to use this
       * escaper to escape attribute values. Use {@link #xmlContentEscaper} if the output can appear in
       * element content or {@link #xmlAttributeEscaper} in attribute values.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSortedMap.java

       * ordering of the keys.
       *
       * <p>Despite the method name, this method attempts to avoid actually copying the data when it is
       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
       * <p>This method is not type-safe, as it may be called on a map with keys that are not mutually
       * comparable.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/ValidityAwareCachedValue.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import kotlin.properties.ReadOnlyProperty
    import kotlin.reflect.KProperty
    
    /**
     * Lazy value that guaranties safe publication and checks validity on every access
     */
    @JvmInline
    internal value class ValidityAwareCachedValue<T>(
        private val lazyValue: Lazy<T>,
    ) : ReadOnlyProperty<KaLifetimeOwner, T> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/id/IdGenerator.java

     * limitations under the License.
     */
    
    package org.gradle.internal.id;
    
    /**
     * Generates a sequence of unique ids of type T. Implementations must be thread-safe.
     */
    public interface IdGenerator<T> {
        /**
         * Generates a new id. Values must be serializable.
         *
         * @return The id. Must not return null. Must not return a given value more than once.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 970 bytes
    - Viewed (0)
  10. src/net/http/jar.go

    // license that can be found in the LICENSE file.
    
    package http
    
    import (
    	"net/url"
    )
    
    // A CookieJar manages storage and use of cookies in HTTP requests.
    //
    // Implementations of CookieJar must be safe for concurrent use by multiple
    // goroutines.
    //
    // The net/http/cookiejar package provides a CookieJar implementation.
    type CookieJar interface {
    	// SetCookies handles the receipt of the cookies in a reply for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 900 bytes
    - Viewed (0)
Back to top