Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for resolution1 (0.15 sec)

  1. pilot/pkg/model/virtualservice_test.go

    		CreationTime:   time.Now(),
    		Hostname:       host.Name(hostname),
    		DefaultAddress: ip,
    		Resolution:     DNSLB,
    		Attributes: ServiceAttributes{
    			ServiceRegistry: provider.Kubernetes,
    			Namespace:       namespace,
    			ExportTo:        sets.New(v),
    		},
    	}
    	if ip == wildcardIP {
    		service.Resolution = Passthrough
    	}
    
    	Ports := make([]*Port, 0)
    
    	for _, p := range ports {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    - metadata artifacts (POM files, Ivy descriptors, Gradle Module Metadata)
    - plugins (both project and settings plugins)
    - artifacts resolved using the advanced dependency resolution APIs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
      // 9999-12-31T23:59:59Z inclusive.
      optional int64 seconds = 1;
    
      // Non-negative fractions of a second at nanosecond resolution. Negative
      // second values with fractions must still have non-negative nanos values
      // that count forward in time. Must be from 0 to 999,999,999
      // inclusive. This field may be limited in precision depending on context.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
      // 9999-12-31T23:59:59Z inclusive.
      optional int64 seconds = 1;
    
      // Non-negative fractions of a second at nanosecond resolution. Negative
      // second values with fractions must still have non-negative nanos values
      // that count forward in time. Must be from 0 to 999,999,999
      // inclusive. This field may be limited in precision depending on context.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    	// If ALL instances have a sidecar, we enable TLS, otherwise we disable
    	// TODO(https://github.com/istio/istio/issues/27376) enable mixed deployments
    	// A service with passthrough resolution is always passthrough, regardless of the TrafficPolicy.
    	if service.Resolution == Passthrough || tp.GetLoadBalancer().GetSimple() == networking.LoadBalancerSettings_PASSTHROUGH {
    		instances := ps.ServiceEndpointsByPort(service, port.Port, nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The Kotlin DSL replaces such dynamic resolution with type-safe model accessors that work with model elements contributed by plugins.
    
    [[kotdsl:accessor_applicability]]
    === Understanding when type-safe model accessors are available
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    		// For ELF targets, when producing dynamically linked Go code
    		// or when immediate binding is explicitly requested,
    		// we force all symbol resolution to be done at program startup
    		// because lazy PLT resolution can use large amounts of stack at
    		// times we cannot allow it to do so.
    		argv = append(argv, "-Wl,-z,now")
    	}
    
    	if ctxt.IsELF && ctxt.DynlinkingGo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            List<String> expected = new ArrayList<>();
            expected.add("maven-it-plugin-error");
            expected.add("maven-it-plugin-configuration");
            expected.add("maven-it-plugin-dependency-resolution");
            expected.add("maven-it-plugin-packaging");
            expected.add("maven-it-plugin-log-file");
            expected.add("maven-it-plugin-expression");
            expected.add("maven-it-plugin-fork");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        @Rule
        HttpServer httpServer = new HttpServer()
        def remoteRepo = new MavenHttpRepository(httpServer, mavenRepo)
    
        def setup() {
            // So that dependency resolution results from previous executions do not interfere
            requireOwnGradleUserHomeDir()
        }
    
        def setupBuildWithEachDependencyType() {
            httpServer.start()
            taskTypeWithOutputFileProperty()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix_test.go

    	}
    }
    
    // See RFC 6761 for further information about the reserved, pseudo
    // domain names.
    var specialDomainNameTests = []struct {
    	question dnsmessage.Question
    	rcode    dnsmessage.RCode
    }{
    	// Name resolution APIs and libraries should not recognize the
    	// followings as special.
    	{mustQuestion("1.0.168.192.in-addr.arpa.", dnsmessage.TypePTR, dnsmessage.ClassINET), dnsmessage.RCodeNameError},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top