Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 182 for netutils (0.28 sec)

  1. cni/pkg/install/install_test.go

    			}
    
    			// check if conf file is deleted/conflist file is updated
    			if c.chainedCNIPlugin {
    				resultConfig := testutils.ReadFile(t, cniConfigFilePath)
    
    				goldenFilepath := filepath.Join("testdata", c.expectedConfigFilename)
    				goldenConfig := testutils.ReadFile(t, goldenFilepath)
    				testutils.CompareBytes(t, resultConfig, goldenConfig, goldenFilepath)
    			} else if file.Exists(cniConfigFilePath) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/auth/netrc.go

    	login    string
    	password string
    }
    
    var (
    	netrcOnce sync.Once
    	netrc     []netrcLine
    	netrcErr  error
    )
    
    func parseNetrc(data string) []netrcLine {
    	// See https://www.gnu.org/software/inetutils/manual/html_node/The-_002enetrc-file.html
    	// for documentation on the .netrc format.
    	var nrc []netrcLine
    	var l netrcLine
    	inMacro := false
    	for _, line := range strings.Split(data, "\n") {
    		if inMacro {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/genutils/genutils_test.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 (
    	"testing"
    )
    
    func TestValidDir(t *testing.T) {
    	_, err := OutDir("./")
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestInvalidDir(t *testing.T) {
    	_, err := OutDir("./nondir")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 04 01:42:08 UTC 2017
    - 953 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top