Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,261 for supportsL7 (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/errors/errors.go

    // It supports wrapped errors and returns false when the error is nil.
    func IsAlreadyExists(err error) bool {
    	return ReasonForError(err) == metav1.StatusReasonAlreadyExists
    }
    
    // IsConflict determines if the err is an error which indicates the provided update conflicts.
    // It supports wrapped errors and returns false when the error is nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 21 03:41:32 UTC 2022
    - 30.5K bytes
    - Viewed (0)
  2. src/internal/platform/supported.go

    	GOOS, GOARCH string
    }
    
    func (p OSArch) String() string {
    	return p.GOOS + "/" + p.GOARCH
    }
    
    // RaceDetectorSupported reports whether goos/goarch supports the race
    // detector. There is a copy of this function in cmd/dist/test.go.
    // Race detector only supports 48-bit VMA on arm64. But it will always
    // return true for arm64, because we don't have VMA size information during
    // the compile time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

            given:
            settingsFile << """
                pluginManagement {}
            """
    
            expect:
            succeeds 'help'
        }
    
        def "pluginManagement block supports defining a maven plugin repository"() {
            given:
            settingsFile << """
                pluginManagement {
                    repositories {
                        maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarPluginTest.groovy

            inEar "lib/pojo.jar"
            notInEar "lib/bean.jar"
        }
    
        def "supports generating deployment descriptor"() {
            when:
            project.pluginManager.apply(EarPlugin)
            executeWithDependencies project.tasks[EarPlugin.EAR_TASK_NAME]
    
            then:
            inEar "META-INF/application.xml"
        }
    
        def "supports skipping deployment descriptor creation"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. pkg/volume/util/fsquota/quota_linux_test.go

    	}
    	return fail
    }
    
    func runCaseDisabled(t *testing.T, testcase quotaTestCase, seq int) bool {
    	var err error
    	var supports bool
    	switch testcase.op {
    	case "Supports":
    		if supports, _ = fakeSupportsQuotas(testcase.path); supports {
    			t.Errorf("Case %v (%s, %s, %v) supports quotas but shouldn't", seq, testcase.name, testcase.path, false)
    			return true
    		}
    		return false
    	case "Set":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. src/internal/syscall/windows/version_windows.go

    }
    
    // SupportTCPKeepAliveCount indicates whether TCP_KEEPCNT is supported.
    // supports TCP_KEEPCNT.
    // The minimal requirement is Windows 10.0.15063.
    func SupportTCPKeepAliveCount() bool {
    	initTCPKeepAlive()
    	return supportTCPKeepAliveCount
    }
    
    // SupportTCPInitialRTONoSYNRetransmissions indicates whether the current
    // Windows version supports the TCP_INITIAL_RTO_NO_SYN_RETRANSMISSIONS.
    // The minimal requirement is Windows 10.0.16299.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        GradleExecuter executer(TestDirectoryProvider testDirectoryProvider, IntegrationTestBuildContext buildContext);
    
        /**
         * Returns true if this distribution supports the given JVM.
         */
        boolean worksWith(Jvm jvm);
    
        /**
         * Returns true if this distribution supports the given Operating system.
         */
        boolean worksWith(OperatingSystem os);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/tasks/Nested.java

     * This allows tracking behavior such as {@link org.gradle.api.Action}s as task inputs.</p>
     *
     * <p>This annotations supports {@link org.gradle.api.provider.Provider} values by treating the result of {@link org.gradle.api.provider.Provider#get()} as a nested bean.</p>
     *
     * <p>This annotation supports {@link Iterable} values by treating each element as a separate nested bean.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 27 22:03:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/ToolChainRequirement.java

        SWIFTC_3,
        // Any Swift 4.x compiler
        SWIFTC_4,
        // Any available Swift compiler <= 4
        SWIFTC_4_OR_OLDER,
        // Any Swift 5.x compiler
        SWIFTC_5,
        // Supports building 32-bit binaries
        SUPPORTS_32,
        // Supports building both 32-bit and 64-bit binaries
        SUPPORTS_32_AND_64
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVersionConstraint.java

         * It will cause dependency resolution to fail if no version acceptable by this clause can be selected.
         * This term supports dynamic versions.
         * <p>
         * This will override a previous {@link #require(String) require} declaration.
         * <p>
         * This clears any set rejected versions.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 30 23:02:48 UTC 2021
    - 3.6K bytes
    - Viewed (0)
Back to top