Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 602 for Lists (0.04 sec)

  1. samples/helloworld/src/Dockerfile

    # old image had curl and could be used as a sample client if desired
    RUN apt-get update \
      && apt-get install curl --no-install-recommends -y \
      && rm -rf /var/lib/apt/lists/*
    
    EXPOSE 5000
    
    ARG service_version
    ENV SERVICE_VERSION ${service_version:-v1}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 19:35:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/objfile.go

    	nreloc := uint32(0)
    	lists := [][]*LSym{ctxt.defs, ctxt.hashed64defs, ctxt.hasheddefs, ctxt.nonpkgdefs}
    	for _, list := range lists {
    		for _, s := range list {
    			w.Uint32(nreloc)
    			nreloc += uint32(len(s.R))
    		}
    	}
    	w.Uint32(nreloc)
    
    	// Symbol Info indexes
    	h.Offsets[goobj.BlkAuxIdx] = w.Offset()
    	naux := uint32(0)
    	for _, list := range lists {
    		for _, s := range list {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/SingletonImmutableSet.java

     */
    @ElementTypesAreNonnullByDefault
    final class SingletonImmutableSet<E> extends ImmutableSet<E> {
    
      // This reference is used both by the custom field serializer, and by the
      // GWT compiler to infer the elements of the lists that needs to be
      // serialized.
      //
      // Although this reference is non-final, it doesn't change after set creation.
      E element;
    
      SingletonImmutableSet(E element) {
        this.element = checkNotNull(element);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/internal/pgo/pgo.go

    }
    
    // NamedEdgeMap contains all unique call edges in the profile and their
    // edge weight.
    type NamedEdgeMap struct {
    	Weight map[NamedCallEdge]int64
    
    	// ByWeight lists all keys in Weight, sorted by edge weight from
    	// highest to lowest.
    	ByWeight []NamedCallEdge
    }
    
    func emptyProfile() *Profile {
    	// Initialize empty maps/slices for easier use without a requiring a
    	// nil check.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/DependencyClassPathNotationConverter.java

     * limitations under the License.
     */
    package org.gradle.api.internal.notations;
    
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Lists;
    import org.gradle.api.artifacts.FileCollectionDependency;
    import org.gradle.api.internal.ClassPathRegistry;
    import org.gradle.api.internal.artifacts.dependencies.DefaultFileCollectionDependency;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:30:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ExternalModuleComponentResolverFactoryTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.ivyservice.ivyresolve
    
    import com.google.common.collect.Lists
    import org.gradle.api.artifacts.ComponentMetadataListerDetails
    import org.gradle.api.artifacts.ComponentMetadataSupplierDetails
    import org.gradle.api.internal.DocumentationRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 19:46:40 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder;
    
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.Lists;
    import org.gradle.api.artifacts.ModuleIdentifier;
    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/features/ListFeature.java

      GENERAL_PURPOSE(
          CollectionFeature.GENERAL_PURPOSE,
          SUPPORTS_SET,
          SUPPORTS_ADD_WITH_INDEX,
          SUPPORTS_REMOVE_WITH_INDEX),
    
      /** Features supported by lists where only removal is allowed. */
      REMOVE_OPERATIONS(CollectionFeature.REMOVE_OPERATIONS, SUPPORTS_REMOVE_WITH_INDEX);
    
      private final Set<Feature<? super List>> implied;
    
      ListFeature(Feature<? super List>... implied) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1/customresourcedefinition.go

    	"k8s.io/client-go/tools/cache"
    )
    
    // CustomResourceDefinitionLister helps list CustomResourceDefinitions.
    // All objects returned here must be treated as read-only.
    type CustomResourceDefinitionLister interface {
    	// List lists all CustomResourceDefinitions in the indexer.
    	// Objects returned here must be treated as read-only.
    	List(selector labels.Selector) (ret []*v1.CustomResourceDefinition, err error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 11:15:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/base/JoinerTest.java

    import com.google.common.base.Joiner.MapJoiner;
    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.ImmutableMultimap;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Lists;
    import com.google.common.collect.Maps;
    import com.google.common.testing.NullPointerTester;
    import java.io.IOException;
    import java.util.Arrays;
    import java.util.Iterator;
    import java.util.Map;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top