Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 328 for esutils (0.2 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "engines": {
            "node": ">=4.0"
          }
        },
        "node_modules/esutils": {
          "version": "2.0.3",
          "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
          "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
          "dev": true,
          "engines": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  2. pkg/kubelet/util/ioutils/ioutils.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package ioutils
    
    import "io"
    
    // LimitWriter is a copy of the standard library ioutils.LimitReader,
    // applied to the writer interface.
    // LimitWriter returns a Writer that writes to w
    // but stops with EOF after n bytes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 12:00:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. pkg/proxy/util/utils.go

    func convertToV1IPFamily(ipFamily netutils.IPFamily) v1.IPFamily {
    	switch ipFamily {
    	case netutils.IPv4:
    		return v1.IPv4Protocol
    	case netutils.IPv6:
    		return v1.IPv6Protocol
    	}
    
    	return v1.IPFamilyUnknown
    }
    
    // OtherIPFamily returns the other ip family
    func OtherIPFamily(ipFamily v1.IPFamily) v1.IPFamily {
    	if ipFamily == v1.IPv6Protocol {
    		return v1.IPv4Protocol
    	}
    
    	return v1.IPv6Protocol
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. cmd/genutils/genutils.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package genutils
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    )
    
    // OutDir creates the absolute path name from path and checks path exists.
    // Returns absolute path including trailing '/' or error if path does not exist.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 01:48:15 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/ipam/test/utils.go

    	"k8s.io/kubernetes/pkg/controller/testutil"
    	netutils "k8s.io/utils/net"
    )
    
    const NodePollInterval = 10 * time.Millisecond
    
    var AlwaysReady = func() bool { return true }
    
    // MustParseCIDR returns the CIDR range parsed from s or panics if the string
    // cannot be parsed.
    func MustParseCIDR(s string) *net.IPNet {
    	_, ret, err := netutils.ParseCIDRSloppy(s)
    	if err != nil {
    		panic(err)
    	}
    	return ret
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 06 00:10:39 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/AstUtils.java

    import java.util.Collection;
    import java.util.Collections;
    import java.util.List;
    import java.util.ListIterator;
    
    /**
     * Self contained utility functions for dealing with AST.
     */
    public abstract class AstUtils {
    
        private AstUtils() {
        }
    
        public static boolean isMethodOnThis(MethodCallExpression call, String name) {
            boolean hasName = call.getMethod() instanceof ConstantExpression && call.getMethod().getText().equals(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. pkg/controller/endpointslicemirroring/utils.go

    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/tools/leaderelection/resourcelock"
    	endpointsliceutil "k8s.io/endpointslice/util"
    	"k8s.io/kubernetes/pkg/apis/discovery/validation"
    	netutils "k8s.io/utils/net"
    )
    
    // addrTypePortMapKey is used to uniquely identify groups of endpoint ports and
    // address types.
    type addrTypePortMapKey string
    
    // newAddrTypePortMapKey generates a PortMapKey from endpoint ports.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. docker/Dockerfile.base

    # hadolint ignore=DL3005,DL3008
    RUN apt-get update && \
      apt-get install --no-install-recommends -y \
      ca-certificates \
      curl \
      iptables \
      iproute2 \
      iputils-ping \
      knot-dnsutils \
      netcat-openbsd \
      tcpdump \
      conntrack \
      bsdmainutils \
      net-tools \
      lsof \
      sudo \
      && update-ca-certificates \
      && apt-get upgrade -y \
      && apt-get clean \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  9. pkg/test/echo/docker/Dockerfile.app_sidecar_base

    # hadolint ignore=DL3005,DL3008
    RUN apt-get update && \
        apt-get install --no-install-recommends -y \
        ca-certificates \
        curl \
        iptables \
        iproute2 \
        iputils-ping \
        knot-dnsutils \
        netcat-openbsd \
        tcpdump \
        conntrack \
        bsdmainutils \
        net-tools \
        lsof \
        sudo \
        && apt-get upgrade -y \
        && apt-get clean \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

    import org.jetbrains.kotlin.analysis.api.types.KaType
    import org.jetbrains.kotlin.analysis.utils.printer.prettyPrint
    import org.jetbrains.kotlin.name.CallableId
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.test.services.TestServices
    import org.jetbrains.kotlin.test.services.assertions
    import org.jetbrains.kotlin.types.Variance
    import org.jetbrains.kotlin.utils.addToStdlib.ifNotEmpty
    import kotlin.reflect.KProperty1
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top