Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 615 for Lists (0.11 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. guava-tests/test/com/google/common/collect/Collections2Test.java

    package com.google.common.collect;
    
    import static com.google.common.base.Strings.isNullOrEmpty;
    import static com.google.common.collect.Iterables.concat;
    import static com.google.common.collect.Lists.newArrayList;
    import static com.google.common.collect.Lists.newLinkedList;
    import static com.google.common.truth.Truth.assertThat;
    import static java.util.Collections.nCopies;
    
    import com.google.common.annotations.GwtCompatible;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. api/README

    Each file is a list of API features, one per line.
    
    go1.txt (and similarly named files) are frozen once a version has been
    shipped. Each file adds new lines but does not remove any.
    
    except.txt lists features that may disappear without breaking true
    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    giving the GitHub issue number of the proposal issue that accepted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. operator/cmd/mesh/profile.go

    func ProfileCmd(_ cli.Context) *cobra.Command {
    	pc := &cobra.Command{
    		Use:   "profile",
    		Short: "Commands related to Istio configuration profiles",
    		Long:  "The profile command lists, dumps or diffs Istio configuration profiles.",
    		Example: "istioctl profile list\n" +
    			"istioctl install --set profile=demo  # Use a profile from the list",
    	}
    
    	pdArgs := &profileDumpArgs{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top