Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 126 for netutils (0.15 sec)

  1. cni/pkg/install/cniconfig_test.go

    					}
    					t.Fatalf("did not expect to retrieve a CNI config file %s", resultFilepath)
    				}
    
    				resultConfig := testutils.ReadFile(t, resultFilepath)
    
    				goldenFilepath := filepath.Join("testdata", c.goldenConfName)
    				goldenConfig := testutils.ReadFile(t, goldenFilepath)
    				testutils.CompareBytes(t, resultConfig, goldenConfig, goldenFilepath)
    			}
    		}
    		t.Run("network-config-file "+c.name, test(cfgFile))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ModelBlockTransformer.java

            for (Statement statement : statements) {
                ScriptBlock scriptBlock = AstUtils.detectScriptBlock(statement, SCRIPT_BLOCK_NAMES);
                if (scriptBlock == null) {
                    // Look for model(«») (i.e. call to model with anything other than non literal closure)
                    MethodCallExpression methodCall = AstUtils.extractBareMethodCall(statement);
                    if (methodCall == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. pkg/dns/server/name_table.go

    package server
    
    import (
    	"strings"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/config/constants"
    	dnsProto "istio.io/istio/pkg/dns/proto"
    	netutil "istio.io/istio/pkg/util/net"
    )
    
    // Config for building the name table.
    type Config struct {
    	Node *model.Proxy
    	Push *model.PushContext
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/FixMainScriptTransformer.java

        public void call(SourceUnit source) throws CompilationFailedException {
            ClassNode scriptClass = AstUtils.getScriptClass(source);
            if (scriptClass == null) {
                return;
            }
            for (MethodNode methodNode : scriptClass.getMethods()) {
                if (methodNode.getName().equals("main")) {
                    AstUtils.removeMethod(scriptClass, methodNode);
                    break;
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RulesVisitor.java

            ClosureExpression closureExpression = AstUtils.getSingleClosureArg(call);
            if (closureExpression != null) {
                // path { ... }
                rewriteAction(call, extractModelPathFromMethodTarget(call), closureExpression, RuleVisitor.displayName(call));
                return;
            }
    
            Pair<ClassExpression, ClosureExpression> args = AstUtils.getClassAndClosureArgs(call);
            if (args != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. ci/devinfra/docker_windows/Dockerfile

        msys ' '; \
        msys 'pacman --noconfirm -Syy bsdcpio bsdtar bzip2'; \
        msys 'pacman --noconfirm -Syy coreutils curl dash file filesystem findutils'; \
        msys 'pacman --noconfirm -Syy flex gawk gcc-libs grep gzip inetutils info'; \
        msys 'pacman --noconfirm -Syy less lndir mintty ncurses pactoys-git patch'; \
        msys 'pacman --noconfirm -Syy pax-git pkgfile rebase sed tar tftp-hpa time tzcode util-linux which'; \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top