Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,261 for supportsL7 (0.13 sec)

  1. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryCrossProjectTargetJvmVersionIntegrationTest.groovy

            failure.assertHasResolution("Change the dependency on 'project :producer' to an earlier version that supports JVM runtime version 7.")
        }
    
        def "can select the most appropriate producer variant (#expected) based on target compatibility (#requested)"() {
            file('producer/build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. cni/pkg/plugin/sidecar_iptables.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // This is a sample chained plugin that supports multiple CNI versions. It
    // parses prevResult according to the cniVersion
    package plugin
    
    type iptables struct{}
    
    func newIPTables() InterceptRuleMgr {
    	return &iptables{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 810 bytes
    - Viewed (0)
  3. src/runtime/cgo/sigaction.go

    package cgo
    
    // Import "unsafe" because we use go:linkname.
    import _ "unsafe"
    
    // When using cgo, call the C library for sigaction, so that we call into
    // any sanitizer interceptors. This supports using the sanitizers
    // with Go programs. The thread and memory sanitizers only apply to
    // C/C++ code; this permits that code to see the Go runtime's existing signal
    // handlers when registering new signal handlers for the process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 877 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

                    }
                }
            """
        }
    
        @TargetGradleVersion(">=6.8")
        def "nested actions that query a project model run in parallel when target Gradle version supports it and --parallel is used"() {
            given:
            setupBuildWithDependencyResolution()
    
            expect:
            server.expectConcurrent('root', 'a', 'b')
            def models = withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/spock/Spock2IntegrationSpec.groovy

                dependencies {
                    constraints {
                        implementation("org.codehaus.groovy:groovy:${GroovyCoverage.MINIMAL_GROOVY_3}") {
                            because("need a version of Groovy that supports the current JDK")
                        }
                    }
                }
    
                testing {
                    suites {
                        test {
                            useSpock()
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/util/util_test.go

    				},
    			},
    			wantVolume: &v1.Volume{
    				Name: migratedVolume,
    				VolumeSource: v1.VolumeSource{
    					HostPath: hostPath,
    				},
    			},
    		},
    		{
    			desc:           "inline volume type that supports csi migration",
    			createNodeName: nodeName,
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "kube-apiserver",
    					Namespace: "default",
    				},
    				Spec: v1.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 05:42:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/css/all.css

    }
    
    @media (min-width: 992px) {
        .sidebar {
            font-size: 100%
        }
    }
    
    @supports (position: -webkit-sticky) or (position: sticky) {
        .sidebar {
            position: -webkit-sticky;
            position: sticky;
            top: 3.7rem;
            z-index: 1000
        }
    }
    
    @supports (position: -webkit-sticky) or (position: sticky) {
        .sidebar .directory {
            max-height: calc(100vh - 9rem)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    }
    
    // IsWebSocketRequestWithStreamCloseProtocol returns true if the request contains headers
    // identifying that it is requesting a websocket upgrade with a remotecommand protocol
    // version that supports the "CLOSE" signal; false otherwise.
    func IsWebSocketRequestWithStreamCloseProtocol(req *http.Request) bool {
    	if !IsWebSocketRequest(req) {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/lif/lif.go

    // license that can be found in the LICENSE file.
    
    //go:build solaris
    
    // Package lif provides basic functions for the manipulation of
    // logical network interfaces and interface addresses on Solaris.
    //
    // The package supports Solaris 11 or above.
    package lif
    
    import (
    	"syscall"
    )
    
    type endpoint struct {
    	af int
    	s  uintptr
    }
    
    func (ep *endpoint) close() error {
    	return syscall.Close(int(ep.s))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 950 bytes
    - Viewed (0)
  10. src/runtime/cgo/mmap.go

    package cgo
    
    // Import "unsafe" because we use go:linkname.
    import _ "unsafe"
    
    // When using cgo, call the C library for mmap, so that we call into
    // any sanitizer interceptors. This supports using the memory
    // sanitizer with Go programs. The memory sanitizer only applies to
    // C/C++ code; this permits that code to see the Go code as normal
    // program addresses that have been initialized.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top