Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,050 for supportsL7 (0.17 sec)

  1. 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)
  2. 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)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. android/guava/src/com/google/common/collect/FluentIterable.java

       * that traverses the elements in {@code a}, followed by the elements in {@code b}. The source
       * iterators are not polled until necessary.
       *
       * <p>The returned iterable's iterator supports {@code remove()} when the corresponding input
       * iterator supports it.
       *
       * <p><b>{@code Stream} equivalent:</b> {@link Stream#concat}.
       *
       * @since 20.0
       */
      public static <T extends @Nullable Object> FluentIterable<T> concat(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/FluentIterable.java

       * that traverses the elements in {@code a}, followed by the elements in {@code b}. The source
       * iterators are not polled until necessary.
       *
       * <p>The returned iterable's iterator supports {@code remove()} when the corresponding input
       * iterator supports it.
       *
       * <p><b>{@code Stream} equivalent:</b> {@link Stream#concat}.
       *
       * @since 20.0
       */
      public static <T extends @Nullable Object> FluentIterable<T> concat(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top