Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 194 for need (0.06 sec)

  1. src/os/pidfd_linux.go

    	// because the PID recycle issue doesn't exist (IOW, pidfd, unlike PID,
    	// is guaranteed to refer to one particular process). Thus, there is no
    	// need for the workaround (blockUntilWaitable + sigMu) from pidWait.
    	//
    	// We _do_ need to be careful about reuse of the pidfd FD number when
    	// closing the pidfd. See handle for more details.
    	handle, status := p.handleTransientAcquire()
    	switch status {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K 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-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/scan/UsedByScanPlugin.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Documents that the type or method is referenced by the build scan plugin,
     * and therefore changes need to be carefully managed. Other plugins like the
     * test-retry or the test-distribution plugin clarify their usage in the {@link #value}.
     * property.
     *
     * @since 4.0
     */
    @Retention(RetentionPolicy.SOURCE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/jvm/java-platform/build.gradle.kts

        integTestImplementation(testFixtures(project(":dependency-management")))
        integTestImplementation(testFixtures(project(":resources-http")))
    
        testImplementation(project(":language-java")) {
            because("need to access JavaCompile task")
        }
    
        testImplementation(testFixtures(project(":core")))
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    packageCycles {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/os/removeall_at.go

    	})
    	if err == nil || IsNotExist(err) {
    		return nil
    	}
    
    	// EISDIR means that we have a directory, and we need to
    	// remove its contents.
    	// EPERM or EACCES means that we don't have write permission on
    	// the parent directory, but this entry might still be a directory
    	// whose contents need to be removed.
    	// Otherwise just return the error.
    	if err != syscall.EISDIR && err != syscall.EPERM && err != syscall.EACCES {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. 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)
  7. testing/internal-performance-testing/build.gradle.kts

        api(project(":logging"))
        api(project(":persistent-cache"))
        api(project(":time"))
        api(project(":tooling-api"))
    
        api(libs.gradleProfiler) {
            because("Consumers need to instantiate BuildMutators")
        }
        api(libs.guava)
        api(libs.groovy)
        api(libs.jacksonAnnotations)
        api(libs.jatl)
        api(libs.jettyServer)
        api(libs.jettyWebApp)
        api(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/jvm/code-quality/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    
        integTestImplementation(testFixtures(project(":language-groovy")))
        integTestImplementation(libs.jsoup) {
            because("We need to validate generated HTML reports")
        }
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/plugins/quality/internal/*")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top