Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 129 for netutils (0.27 sec)

  1. pilot/pkg/config/kube/ingress/status.go

    	istiolabels "istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/mesh"
    	kubelib "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    )
    
    var statusLog = log.RegisterScope("ingress status", "")
    
    // StatusSyncer keeps the status IP in each Ingress resource updated
    type StatusSyncer struct {
    	meshConfig mesh.Watcher
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    				// prefer 127.0.0.1 to ::1, but if given no option choose ::1
    				ipV6EndpointAddress := ""
    				for _, host := range actualLocalHosts {
    					if netutil.IsIPv4Address(host) {
    						endpointAddress = host
    						break
    					}
    					if netutil.IsIPv6Address(host) {
    						ipV6EndpointAddress = host
    					}
    				}
    				if endpointAddress == "" {
    					endpointAddress = ipV6EndpointAddress
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/consumer/simple/simple-parent/simple-testutils/pom.xml

      <parent>
        <groupId>org.sonatype.mavenbook.multi</groupId>
        <artifactId>utils-parent</artifactId>
        <relativePath>../utils-parent/pom.xml</relativePath>
      </parent>
      <artifactId>simple-testutils</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/config/config.go

    package config
    
    import (
    	"encoding/json"
    	"fmt"
    	"net"
    	"net/netip"
    	"os/user"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/miekg/dns"
    
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    func DefaultConfig() *Config {
    	return &Config{
    		RestoreFormat:           true,
    		ProxyPort:               "15001",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/options/options.go

    	}
    
    	size := min(netutil.RangeSize(&serviceClusterIPRange), 1<<16)
    	if size < 8 {
    		return net.IPNet{}, net.IP{}, fmt.Errorf("the service cluster IP range must be at least %d IP addresses", 8)
    	}
    
    	// Select the first valid IP from ServiceClusterIPRange to use as the GenericAPIServer service IP.
    	apiServerServiceIP, err := netutil.GetIndexedIP(&serviceClusterIPRange, 1)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. pkg/volume/nfs/nfs.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package nfs
    
    import (
    	"fmt"
    	"os"
    	"time"
    
    	netutil "k8s.io/utils/net"
    
    	"k8s.io/klog/v2"
    	"k8s.io/mount-utils"
    	utilstrings "k8s.io/utils/strings"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/consumer/simple/simple-parent/simple-weather/pom.xml

      <packaging>jar</packaging>
    
      <name>Multi Chapter Simple Weather API</name>
    
      <dependencies>
        <dependency>
          <groupId>org.sonatype.mavenbook.multi</groupId>
          <artifactId>simple-testutils</artifactId>
          <scope>test</scope>
        </dependency>
      </dependencies>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/consumer/simple/simple-parent/pom.xml

        <module>simple-webapp</module>
    
        <!-- On purpose at the end, project graph is responsible for ordering -->
        <!-- Build/consumer should not be effected by reverse order -->
        <module>simple-testutils</module>
        <module>utils-parent</module>
      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/conversion.go

    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/config/visibility"
    	"istio.io/istio/pkg/kube/labels"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/spiffe"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func convertPort(port *networking.ServicePort) *model.Port {
    	return &model.Port{
    		Name:     port.Name,
    		Port:     int(port.Number),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RuleVisitor.java

    import org.codehaus.groovy.control.SourceUnit;
    import org.codehaus.groovy.syntax.SyntaxException;
    import org.codehaus.groovy.syntax.Token;
    import org.codehaus.groovy.syntax.Types;
    import org.gradle.groovy.scripts.internal.AstUtils;
    import org.gradle.groovy.scripts.internal.ExpressionReplacingVisitorSupport;
    import org.gradle.internal.SystemProperties;
    import org.gradle.model.dsl.internal.inputs.PotentialInputs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top