Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 182 for netutils (0.18 sec)

  1. pilot/pkg/model/context.go

    	"istio.io/istio/pkg/ledger"
    	"istio.io/istio/pkg/maps"
    	pm "istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/util/identifier"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/xds"
    )
    
    type (
    	Node                    = pm.Node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  2. pilot/pkg/xds/endpoints/endpoint_builder.go

    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/schema/kind"
    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/hash"
    	netutil "istio.io/istio/pkg/util/net"
    )
    
    var (
    	Separator = []byte{'~'}
    	Slash     = []byte{'/'}
    
    	// same as the above "xds" package
    	log = istiolog.RegisterScope("ads", "ads debugging")
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. istioctl/pkg/workload/workload.go

    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/config/validation/agent"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/labels"
    	"istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/shellescape"
    )
    
    var (
    	// TODO refactor away from package vars and add more UTs
    	tokenDuration  int64
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            private boolean isEmpty(SourceUnit source) {
                List<Statement> statements = source.getAST().getStatementBlock().getStatements();
                for (Statement statement : statements) {
                    if (AstUtils.mayHaveAnEffect(statement)) {
                        return false;
                    }
                }
    
                // No statements, or no statements that have an effect
                return true;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    	"istio.io/istio/pkg/config/visibility"
    	"istio.io/istio/pkg/jwt"
    	"istio.io/istio/pkg/kube/apimirror"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/grpc"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Constants for duration fields
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/proto"
    	secconst "istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/slices"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/wellknown"
    )
    
    const (
    	NoConflict = iota
    	// HTTPOverTCP represents incoming HTTP existing TCP
    	HTTPOverTCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. 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 (1)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    For example, if a project path is `:commons:utils:some:lib` then the project accessor will be `projects.commons.utils.some.lib` (which is the short-hand notation for `projects.getCommons().getUtils().getSome().getLib()`).
    
    A project name with kebab case (`some-lib`) or snake case (`some_lib`) will be converted to camel case in accessors: `projects.someLib`.
    
    === Local forks of module dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                    @Input
                    public long getGoodTime() {
                        return 0;
                    }
    
                    @Input
                    public MyUtil getUtil() { return new MyUtil(); }
    
                    @TaskAction public void execute() {}
                }
            """
    
            expect:
            assertValidationSucceeds()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    org.apache.maven.wagon wagon-file 1.0-beta-2 test easymock easymock 1.2_Java1.3 test org.codehaus.modello modello-maven-plugin 1.0-alpha-17 1.0.0 src/main/mdo/metadata.mdo site-docs pre-site xdoc xsd standard java xpp3-reader xpp3-writer maven-surefire-plugin **/testutils/** META-INF/maven/org.apache.maven.artifact/maven-artifact/pom.properties #Generated by Maven #Mon Oct 15 10:14:00 EDT 2007 version=3.0-SNAPSHOT groupId=org.apache.maven.artifact artifactId=maven-artifact...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160.1K bytes
    - Viewed (0)
Back to top