Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,001 for chain (0.04 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ContentFilterableExtensions.kt

    import org.gradle.api.file.ContentFilterable
    
    import java.io.FilterReader
    import kotlin.reflect.KClass
    
    
    /**
     * Adds a content filter to be used during the copy.
     * Multiple calls add additional filters to the filter chain.
     * Each filter should implement [FilterReader].
     * Import `org.apache.tools.ant.filters.*` for access to all the standard Ant filters.
     *
     * Examples:
     *
     * ```
     * filter<StripJavaComments>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/NativePlatformToolChain.java

    import org.gradle.api.Incubating;
    import org.gradle.nativeplatform.platform.NativePlatform;
    
    /**
     * A platform specific configurable tool chain.
     */
    @Incubating
    public interface NativePlatformToolChain {
        /**
         * Returns the platform which this tool chain builds for.
         */
        NativePlatform getPlatform();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 981 bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/HierarchicalAttributeContainerTest.groovy

            fallback.attribute(one, "fallback")
    
            then:
            chain.getAttribute(one) == "fallback"
    
            when:
            middle.attribute(one, "middle")
    
            then:
            chain.getAttribute(one) == "middle"
    
            when:
            primary.attributeProvider(one, Providers.of("primary"))
    
            then:
            chain.getAttribute(one) == "primary"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 27 04:00:15 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http/CallServerInterceptor.kt

    import okhttp3.internal.stripBody
    import okio.buffer
    
    /** This is the last interceptor in the chain. It makes a network call to the server. */
    class CallServerInterceptor(private val forWebSocket: Boolean) : Interceptor {
      @Throws(IOException::class)
      override fun intercept(chain: Interceptor.Chain): Response {
        val realChain = chain as RealInterceptorChain
        val exchange = realChain.exchange!!
        val request = realChain.request
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/LogEventDispatcherTest.groovy

        def "QUIET and below are dispatched to the stdout chain"() {
            when:
            dispatcher.onOutput(event(logLevel))
    
            then:
            1 * stdoutChain.onOutput(_)
            0 * stderrChain.onOutput(_)
    
            where:
            logLevel << LogLevel.values() - LogLevel.ERROR
        }
    
        def "ERROR is dispatched to the stderr chain"() {
            when:
            dispatcher.onOutput(event(LogLevel.ERROR))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/plugins/XCTestPluginOnUnsupportedPlatformIntegrationTest.groovy

            app.writeToProject(testDirectory)
    
            when:
            fails "check"
            then:
            failure.assertHasCause("""No tool chain is available to build Swift for host operating system '${osName}' architecture '${archName}':
      - Tool chain 'swiftc' (Swift Compiler):
          - Could not find Swift compiler 'swiftc' in system path.""")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/plugins/MicrosoftVisualCppCompilerPluginTest.groovy

            expect:
            project.plugins.hasPlugin(pluginClass)
        }
    
        def "makes a VisualCpp tool chain available"() {
            when:
            register()
    
            then:
            toolchain instanceof VisualCppToolChain
        }
    
        def "registers default VisualCpp tool chain"() {
            when:
            addDefaultToolchain()
    
            then:
            toolchain instanceof VisualCppToolChain
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeExecutableFileSpec.java

        }
    
        public void setFile(File file) {
            this.file = file;
        }
    
        /**
         * The Tool Chain that produces the native executable.
         * @since 4.7
         */
        public NativeToolChain getToolChain() {
            return toolChain;
        }
    
        /**
         * Sets the Tool Chain that produces the native executable.
         * @since 4.7
         */
        public void setToolChain(NativeToolChain toolChain) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. pilot/test/xdstest/validate.go

    		}
    	}
    }
    
    func validateFilterChainMatch(t testing.TB, l *listener.Listener) {
    	t.Helper()
    
    	// Check for duplicate filter chains, to avoid "multiple filter chains with the same matching rules are defined" error
    	check := map[string]int{}
    	for i1, l1 := range l.FilterChains {
    		// We still create virtual inbound listeners before merging into single inbound
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/PlatformToolProvider.java

        String getExecutableName(String executablePath);
    
        String getSharedLibraryName(String libraryPath);
    
        /**
         * Does this tool chain produce an import library when linking a shared library?
         */
        boolean producesImportLibrary();
    
        /**
         * Whether or not this tool chain requires a debuggable binary to be stripped or whether the binary is stripped by default.
         */
        boolean requiresDebugBinaryStripping();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top