Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 368 for Lists (0.1 sec)

  1. pkg/test/echo/docker/Dockerfile.app_sidecar_base

        netcat-openbsd \
        tcpdump \
        conntrack \
        bsdmainutils \
        net-tools \
        lsof \
        sudo \
        && apt-get upgrade -y \
        && apt-get clean \
        && rm -rf  /var/log/*log /var/lib/apt/lists/* /var/log/apt/* /var/lib/dpkg/*-old /var/cache/debconf/*-old
    
    RUN if [ -f /usr/sbin/iptables-legacy ]; then \
        update-alternatives --set iptables /usr/sbin/iptables-legacy && \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    		return &checker.CallEstimate{CostEstimate: checker.CostEstimate{Min: 1, Max: 1}}
    	case "containsIP":
    		if target != nil && len(args) >= 1 {
    			// The base cost of the function is the cost of comparing two byte lists.
    			// The byte lists will be either ipv4 or ipv6 so will have a length of 4, or 16 bytes.
    			sz := checker.SizeEstimate{Min: 4, Max: 16}
    
    			// We have to compare the two strings to determine if the CIDR/IP is in the other CIDR.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/CharSourceTest.java

    import static org.junit.Assert.assertThrows;
    
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Iterables;
    import com.google.common.collect.Lists;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.Reader;
    import java.io.StringWriter;
    import java.io.Writer;
    import java.util.EnumSet;
    import java.util.List;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterables.java

       * partition size of 3 yields {@code [[a, b, c], [d, e]]} -- an outer iterable containing two
       * inner lists of three and two elements, all in the original order.
       *
       * <p>Iterators returned by the returned iterable do not support the {@link Iterator#remove()}
       * method. The returned lists implement {@link RandomAccess}, whether or not the input list does.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  5. .idea/inspectionProfiles/Gradle.xml

            <constraint name="__context__" within=""...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/PropertiesUtils.java

     * limitations under the License.
     */
    
    package org.gradle.internal.util;
    
    import com.google.common.base.Charsets;
    import com.google.common.base.Splitter;
    import com.google.common.collect.Lists;
    import org.apache.commons.io.output.ByteArrayOutputStream;
    import org.gradle.internal.IoActions;
    import org.gradle.internal.SystemProperties;
    
    import javax.annotation.Nullable;
    import java.io.BufferedOutputStream;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 14:17:21 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelSet.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.core;
    
    import com.google.common.base.Function;
    import com.google.common.collect.Iterables;
    import com.google.common.collect.Lists;
    import groovy.lang.Closure;
    import org.gradle.api.Action;
    import org.gradle.api.specs.Specs;
    import org.gradle.model.ModelSet;
    import org.gradle.model.internal.core.rule.describe.ModelRuleDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top