Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for Seguin (0.29 sec)

  1. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

        }
      }
    
      /**
       * Removes a number of occurrences of the specified element from this multiset. If the multiset
       * contains fewer than this number of occurrences to begin with, all occurrences will be removed.
       *
       * @param element the element whose occurrences should be removed
       * @param occurrences the number of occurrences of the element to remove
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/networking/v1/generated.proto

    message HTTPIngressPath {
      // path is matched against the path of an incoming request. Currently it can
      // contain characters disallowed from the conventional "path" part of a URL
      // as defined by RFC 3986. Paths must begin with a '/' and must be present
      // when using PathType with value "Exact" or "Prefix".
      // +optional
      optional string path = 1;
    
      // pathType determines the interpretation of the path matching. PathType can
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // which run an apiserver which might need to make calls to this
      // webhook. Such installs are likely to be non-portable, i.e., not easy
      // to turn up in a new cluster.
      //
      // The scheme must be "https"; the URL must begin with "https://".
      //
      // A path is optional, and if present may be any string permissible in
      // a URL. You may use the path to pass an arbitrary string to the
      // webhook, for example, a cluster identifier.
      //
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // which run an apiserver which might need to make calls to this
      // webhook. Such installs are likely to be non-portable, i.e., not easy
      // to turn up in a new cluster.
      //
      // The scheme must be "https"; the URL must begin with "https://".
      //
      // A path is optional, and if present may be any string permissible in
      // a URL. You may use the path to pass an arbitrary string to the
      // webhook, for example, a cluster identifier.
      //
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InternetDomainName.java

          return false;
        }
    
        /*
         * Note that we allow (in contravention of a strict interpretation of the relevant RFCs) domain
         * parts other than the last may begin with a digit (for example, "3com.com"). It's important to
         * disallow an initial digit in the last part; it's the only thing that stops an IPv4 numeric
         * address like 127.0.0.1 from looking like a valid domain name.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

            // has now been moved after index.
            return new MoveDesc<>(actualLastElement, changes.replaced);
          }
        }
        // Trickled element was after index to begin with, no adjustment needed.
        return changes;
      }
    
      @CheckForNull
      private MoveDesc<E> fillHole(int index, E toTrickle) {
        Heap heap = heapForIndex(index);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 34K bytes
    - Viewed (0)
  7. tensorflow/c/eager/gradients.cc

      TapeVSpace vspace(ctx);
      std::vector<int64_t> target_tensor_ids = MakeTensorIDList(targets);
      std::vector<int64_t> source_tensor_ids = MakeTensorIDList(sources);
      tensorflow::gtl::FlatSet<int64_t> sources_set(source_tensor_ids.begin(),
                                                    source_tensor_ids.end());
      std::unordered_map<int64_t, TapeTensor> sources_that_are_targets;
      for (int i = 0; i < target_tensor_ids.size(); ++i) {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 09:49:45 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Predicates.java

      @GwtIncompatible(value = "java.util.regex.Pattern")
      public static Predicate<CharSequence> contains(Pattern pattern) {
        return new ContainsPatternPredicate(new JdkPattern(pattern));
      }
    
      // End public API, begin private implementation classes.
    
      // Package private for GWT serialization.
      enum ObjectPredicate implements Predicate<@Nullable Object> {
        /** @see Predicates#alwaysTrue() */
        ALWAYS_TRUE {
          @Override
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

    message HTTPIngressPath {
      // Path is matched against the path of an incoming request. Currently it can
      // contain characters disallowed from the conventional "path" part of a URL
      // as defined by RFC 3986. Paths must begin with a '/'. When unspecified,
      // all paths from incoming requests are matched.
      // +optional
      optional string path = 1;
    
      // PathType determines the interpretation of the Path matching. PathType can
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  10. cmd/erasure-multipart.go

    	return result, nil
    }
    
    // ListObjectParts - lists all previously uploaded parts for a given
    // object and uploadID.  Takes additional input of part-number-marker
    // to indicate where the listing should begin from.
    //
    // Implements S3 compatible ListObjectParts API. The resulting
    // ListPartsInfo structure is marshaled directly into XML and
    // replied back to the client.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 43K bytes
    - Viewed (0)
Back to top