Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 210 for net (0.02 sec)

  1. manifests/charts/gateway/values.yaml

      # Define the security context for the pod.
      # If unset, this will be automatically set to the minimum privileges required to bind to port 80 and 443.
      # On Kubernetes 1.22+, this only requires the `net.ipv4.ip_unprivileged_port_start` sysctl.
      securityContext: {}
      containerSecurityContext: {}
    
      service:
        # Type of service. Set to "None" to disable the service entirely
        type: LoadBalancer
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/net/netip/netip.go

    //   netip.Addr: 24 bytes (zone is per-name singleton, shared across all users)
    
    // Addr represents an IPv4 or IPv6 address (with or without a scoped
    // addressing zone), similar to [net.IP] or [net.IPAddr].
    //
    // Unlike [net.IP] or [net.IPAddr], Addr is a comparable value
    // type (it supports == and can be a map key) and is immutable.
    //
    // The zero Addr is not a valid IP address.
    // Addr{} is distinct from both 0.0.0.0 and ::.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. tests/integration/pilot/ingress_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package pilot
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"net/http"
    	"os"
    	"path/filepath"
    	"testing"
    	"time"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/http/headers"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    package bootstrap
    
    import (
    	"context"
    	"crypto/tls"
    	"crypto/x509"
    	"encoding/json"
    	"fmt"
    	"net"
    	"net/http"
    	"os"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	"github.com/fsnotify/fsnotify"
    	grpcprom "github.com/grpc-ecosystem/go-grpc-prometheus"
    	"golang.org/x/net/http2"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials"
    	"google.golang.org/grpc/reflection"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. cni/pkg/cmd/root.go

    		Title:   "Istio CNI Plugin Installer",
    		Section: "install-cni CLI",
    		Manual:  "Istio CNI Plugin Installer",
    	}))
    
    	registerStringParameter(constants.CNINetDir, "/etc/cni/net.d", "Directory on the host where CNI network plugins are installed")
    	registerStringParameter(constants.CNIConfName, "", "Name of the CNI configuration file")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/config.go

    limitations under the License.
    */
    
    package apiserver
    
    import (
    	"context"
    	"crypto/tls"
    	"fmt"
    	"net/http"
    	"time"
    
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/admission"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.util.internal.CollectionUtils;
    
    import java.io.Closeable;
    import java.io.File;
    import java.io.IOException;
    import java.net.URL;
    import java.net.URLClassLoader;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.function.Function;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

    package org.apache.maven.internal.impl;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.URI;
    import java.nio.file.Path;
    import java.util.Collection;
    import java.util.List;
    import java.util.Optional;
    
    import org.apache.maven.api.Project;
    import org.apache.maven.api.annotations.Nonnull;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/run.go

    	// to distinguish traffic we want to capture vs traffic we do not.
    	// Equivalent to `ip -6 addr add "::6/128" dev lo`
    	address := &net.IPNet{IP: net.ParseIP("::6"), Mask: net.CIDRMask(128, 128)}
    	addr := &netlink.Addr{IPNet: address}
    
    	err = netlink.AddrAdd(link, addr)
    	if ignoreExists(err) != nil {
    		return fmt.Errorf("failed to add IPv6 inbound address: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier.go

    	hostname       string
    	nodeIP         net.IP
    	recorder       events.EventRecorder
    
    	serviceHealthServer healthcheck.ServiceHealthServer
    	healthzServer       *healthcheck.ProxierHealthServer
    
    	// nodePortAddresses selects the interfaces where nodePort works.
    	nodePortAddresses *proxyutil.NodePortAddresses
    	// networkInterfacer defines an interface for several net library functions.
    	// Inject for test purpose.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
Back to top