Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 338 for Lists (0.22 sec)

  1. src/go/ast/filter.go

    			j++
    		}
    	}
    	return list[0:j]
    }
    
    // FilterDecl trims the AST for a Go declaration in place by removing
    // all names (including struct field and interface method names, but
    // not from parameter lists) that don't pass through the filter f.
    //
    // FilterDecl reports whether there are any declared names left after
    // filtering.
    func FilterDecl(decl Decl, f Filter) bool {
    	return filterDecl(decl, f, false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    import (
    	"fmt"
    	"strconv"
    	"strings"
    )
    
    // A Tile is a description of a transparency log tile.
    // A tile of height H at level L offset N lists W consecutive hashes
    // at level H*L of the tree starting at offset N*(2**H).
    // A complete tile lists 2**H hashes; a partial tile lists fewer.
    // Note that a tile represents the entire subtree of height H
    // with those hashes as the leaves. The levels above H*L
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

          }
          if (ib.hasNext()) {
            add(ib.next())
          }
        }
      }
    }
    
    // TODO check read only options for creating lists
    public fun <T> List<T>.readOnly() = this.toList()
    
    // TODO check read only options for creating lists
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.model;
    
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Lists;
    import org.gradle.api.artifacts.ModuleIdentifier;
    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    import org.gradle.api.capabilities.Capability;
    import org.gradle.api.internal.artifacts.transform.ArtifactVariantSelector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. src/sync/pool.go

    //
    // Pool's purpose is to cache allocated but unused items for later reuse,
    // relieving pressure on the garbage collector. That is, it makes it easy to
    // build efficient, thread-safe free lists. However, it is not suitable for all
    // free lists.
    //
    // An appropriate use of a Pool is to manage a group of temporary items
    // silently shared among and potentially reused by concurrent independent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    ----
    rootProject.name = "root"
    ----
    
    [[sec:standard_settings_properties]]
    === Standard `Settings` properties
    
    The `Settings` object exposes a standard set of properties in your settings script.
    
    The following table lists a few commonly used properties:
    
    [%autowidth.stretch]
    |===
    | Name | Description
    
    | `buildCache`
    | The build cache configuration.
    
    | `plugins`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

    namespace generator {
    namespace cpp {
    
    string AttrView::VariableName() const { return attr_.name(); }
    
    string AttrView::VariableType() const {
      // Completely special cases (e.g. strings are different when lists)
      if (attr_.full_type() == "string") {
        return "const char*";
      }
      if (attr_.full_type() == "list(string)") {
        return "absl::Span<string const>";
      }
    
      // Normal path: translate base type to C++ ...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

    import java.util.Collections;
    import java.util.Iterator;
    import java.util.Objects;
    import java.util.function.Consumer;
    
    /**
     * A simple persistent List implementation.
     * <p>
     * The main use-case is to create new lists with added elements creating the minimal amount of garbage.
     * Uses Cons/Nil as building blocks.
     */
    public abstract class PersistentList<T> implements Iterable<T> {
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typeset.go

    		// Due to language restrictions, only embedded interfaces can add methods, they are handled
    		// separately. Here we only need to intersect the term lists and comparable bits.
    		allTerms, allComparable = intersectTermLists(allTerms, allComparable, terms, comparable)
    	}
    
    	ityp.tset.comparable = allComparable
    	if len(allMethods) != 0 {
    		sortMethods(allMethods)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Iterators.java

       * iterator containing two inner lists of three elements each, all in the original order.
       *
       * <p>The returned lists implement {@link java.util.RandomAccess}.
       *
       * @param iterator the iterator to return a partitioned view of
       * @param size the desired size of each partition
       * @return an iterator of immutable lists containing the elements of {@code iterator} divided into
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top