Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,387 for xoring (0.11 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/CancellationCrossVersionSpec.groovy

    import org.gradle.tooling.GradleConnector
    import org.gradle.tooling.ProjectConnection
    import org.gradle.tooling.model.GradleProject
    
    class CancellationCrossVersionSpec extends CancellationSpec {
    
        def "can cancel build during settings phase"() {
            setupCancelInSettingsBuild()
    
            def cancel = GradleConnector.newCancellationTokenSource()
            def sync = server.expectAndBlock("registered")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. releasenotes/notes/protocol-detection-timeout.yaml

        for misconfigured server first protocols rather than failing fast.
    
        This timeout has been disabled by default. This has the following impacts:
    
        - Non "server first" protocols will no longer have a risk of telemetry or traffic failures during slow connections
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            result.output =~ /Received \d+ file system events during the current build while watching \d+ locations/
            result.output =~ /Virtual file system retains information about \d+ files, \d+ directories and \d+ missing files until next build/
            result.output =~ /VFS> Statistics during current build:/
            result.output =~ /VFS> > Stat: Executed stat\(\) x .*. getUnixMode\(\) x .*/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/go/types/predicates.go

    // identical.
    func identicalInstance(xorig Type, xargs []Type, yorig Type, yargs []Type) bool {
    	if len(xargs) != len(yargs) {
    		return false
    	}
    
    	for i, xa := range xargs {
    		if !Identical(xa, yargs[i]) {
    			return false
    		}
    	}
    
    	return Identical(xorig, yorig)
    }
    
    // Default returns the default "typed" type for an "untyped" type;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

        /**
         * Gets the dependency configuration for which to declare runtime-only dependencies.
         * Dependencies declared on this configuration are present only during runtime, are not
         * present during compilation, and are not exposed as part of the feature's API variant.
         *
         * @return The {@code runtimeOnly} configuration.
         */
        Configuration getRuntimeOnlyConfiguration();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. test/fixedbugs/bug184.go

    func f() *Buffer { return nil }
    
    func g() Reader {
    	// implicit interface conversion in assignment during return
    	return f()
    }
    
    func h() (b *Buffer, ok bool) { return }
    
    func i() (r Reader, ok bool) {
    	// implicit interface conversion in multi-assignment during return
    	return h()
    }
    
    func fmter() (s string, i int, t string) { return "%#x %q", 100, "hello" }
    
    func main() {
    	b := g()
    	bb, ok := b.(*Buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 849 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/CopySpecExtensions.kt

    import java.io.FilterReader
    
    
    /**
     * Adds a content filter to be used during the copy.
     *
     * @see [CopySpec.filter]
     */
    inline fun <reified T : FilterReader> CopySpec.filter(vararg properties: Pair<String, Any?>) =
        filter(mapOf(*properties), T::class.java)
    
    
    /**
     * Adds a content filter to be used during the copy.
     *
     * @see [CopySpec.filter]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

     * Note that this implementation currently retains strong references to keys and values during the whole lifetime of a build session.
     *
     * Uses a simple algorithm to collect unused values, by retaining strong references to all keys and values used during the current build session, and the previous build session.
     * All other values are referenced only by weak or soft references, allowing them to be collected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java

         * the list denotes the model on which the model builder was originally invoked. The last identifier will always be
         * an empty string that by definition denotes the super POM.
         *
         * @return The model identifiers from the lineage of models, never {@code null}.
         */
        List<String> getModelIds();
    
        /**
         *
         * @return the file model
         * @since 4.0.0
         */
        Model getFileModel();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_configuration_and_execution.adoc

    Any direct modification or reading of another project's object creates coupling between the projects.
    Coupling during configuration can result in flawed build outcomes when using 'configuration on demand', while coupling during execution can affect parallel execution.
    
    One common source of coupling is configuration injection, such as using `allprojects{}` or `subprojects{}` in build scripts.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 21:08:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top