Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for need (0.12 sec)

  1. pilot/pkg/model/endpointshards.go

    	FullPush
    )
    
    // UpdateServiceEndpoints updates EndpointShards data by clusterID, hostname, IstioEndpoints.
    // It also tracks the changes to ServiceAccounts. It returns whether endpoints need to be pushed and
    // it also returns if they need to be pushed whether a full push is needed or incremental push is sufficient.
    func (e *EndpointIndex) UpdateServiceEndpoints(
    	shard ShardKey,
    	hostname string,
    	namespace string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_inbound.go

    	defaultEnabled := inspectors[0].TLSInspector
    
    	// We have a split path here based on if the passthrough inspector is enabled
    	// If it is, then we need to explicitly opt ports out of the inspector
    	// If it isn't, then we need to explicitly opt ports into the inspector
    	if defaultEnabled {
    		ports := make([]int, 0, len(inspectors))
    		// Collect all ports where TLS inspector is disabled.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

            // already reported as configuration cache problem, no need to override
            delegate.buildFinished(closure)
    
        @Suppress("OVERRIDE_DEPRECATION", "DEPRECATION")
        override fun buildFinished(action: Action<in BuildResult>) =
            // already reported as configuration cache problem, no need to override
            delegate.buildFinished(action)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_waypoint.go

    	vs := vss[0]
    
    	// Typically we setup routes with the Host header match. However, for waypoint inbound we are actually using
    	// hostname purely to match to the Service VIP. So we only need a single VHost, with routes compute based on the VS.
    	// For destinations, we need to hit the inbound clusters if it is an internal destination, otherwise outbound.
    	routes, err := lb.waypointInboundRoute(vs, cc.port.Port)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. cni/pkg/plugin/plugin.go

    	AmbientEnabled  bool       `json:"ambient_enabled"`
    	Kubernetes      Kubernetes `json:"kubernetes"`
    }
    
    // K8sArgs is the valid CNI_ARGS used for Kubernetes
    // The field names need to match exact keys in containerd args for unmarshalling
    // https://github.com/containerd/containerd/blob/ced9b18c231a28990617bc0a4b8ce2e81ee2ffa1/pkg/cri/server/sandbox_run.go#L526-L532
    type K8sArgs struct {
    	types.CommonArgs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. subprojects/core/build.gradle.kts

        optionalProjects.add("gradle-kotlin-dsl")
        // The gradle-runtime-api-info.jar is added by a 'distributions-...' project if it is on the (integration test) runtime classpath.
        // It contains information services in ':core' need to reason about the complete Gradle distribution.
        // To allow parts of ':core' code to be instantiated in unit tests without relying on this functionality, the dependency is optional.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/delta.go

    	// Block until either a request is received or a push is triggered.
    	// We need 2 go routines because 'read' blocks in Recv().
    	go s.receiveDelta(con, ids)
    
    	// Wait for the proxy to be fully initialized before we start serving traffic. Because
    	// initialization doesn't have dependencies that will block, there is no need to add any timeout
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  8. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        /**
         * @param requiresProject <code>true</code> if the Mojo needs a Maven project to be executed, <code>false</code>
         * otherwise.
         */
        public void setProjectRequired(boolean requiresProject) {
            this.projectRequired = requiresProject;
        }
    
        /**
         * @return <code>true</code> if the Mojo needs a Maven project to be executed, <code>false</code> otherwise.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

            ClassPath classpath;
            List<File> searchClassPath;
    
            if (gradleInstallation == null) {
                // When not running from a Gradle distro, need the daemon main jar and the daemon server implementation plus the search path to look for other modules
                classpath = registry.getModule("gradle-daemon-server").getAllRequiredModulesClasspath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/client.go

    //
    // This code relies heavily on code generation for performance reasons; to implement the
    // Istio store interface, we need to take dynamic inputs. Using the dynamic informers results in poor
    // performance, as the cache will store unstructured objects which need to be marshaled on each Get/List call.
    // Using istio/client-go directly will cache objects marshaled, allowing us to have cheap Get/List calls,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top