Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 571 for fulfil (0.24 sec)

  1. platforms/documentation/samples/build.gradle.kts

        }
        integTestImplementation(testFixtures(project(":core")))
        integTestImplementation(testFixtures(project(":model-core")))
    
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    testFilesCleanup.reportOnly = true
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java-library/module-disabled/tests/buildJavaModule.out

    * What went wrong:
    Execution failed for task ':compileJava'.
    > Compilation failed; see the compiler error output for details.
    
    * Try:
    > Run with --info option to get more log output.
    > Run with --scan to get full insights.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 09:29:37 UTC 2024
    - 735 bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/build.gradle.kts

        testImplementation(libs.futureKotlin("test-junit5"))
        testImplementation("org.jetbrains:annotations:24.0.1")
    
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/sha3/sha3.go

    // the multi-bitrate 10..1 padding rule, and permutes the state.
    func (d *state) padAndPermute() {
    	// Pad with this instance's domain-separator bits. We know that there's
    	// at least one byte of space in d.buf because, if it were full,
    	// permute would have been called to empty it. dsbyte also contains the
    	// first one bit for the padding. See the comment in the state struct.
    	d.storage[d.n] = d.dsbyte
    	d.n++
    	for d.n < d.rate {
    		d.storage[d.n] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta.go

    	pushRequest := pushEv.pushRequest
    
    	if pushRequest.Full {
    		// Update Proxy with current information.
    		s.computeProxyState(con.proxy, pushRequest)
    	}
    
    	if !s.ProxyNeedsPush(con.proxy, pushRequest) {
    		deltaLog.Debugf("Skipping push to %v, no updates required", con.ID())
    		if pushRequest.Full {
    			// Only report for full versions, incremental pushes do not have a new version
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. platforms/ide/problems/build.gradle.kts

        api(project(":service-provider"))
    
        integTestImplementation(project(":internal-testing"))
        integTestImplementation(testFixtures(project(":logging")))
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/software/antlr/build.gradle.kts

        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/plugins/antlr/internal/*")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/TypeSafeProjectAccessorsSchemaBuildingComponent.kt

    import org.gradle.internal.declarativedsl.schemaBuilder.TypeDiscovery
    import kotlin.reflect.KClass
    import kotlin.reflect.KType
    import kotlin.reflect.full.createType
    import kotlin.reflect.full.isSubclassOf
    
    
    /**
     * Brings the typesafe project accessors into the schema if the feature is enabled by doing the following:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    `-s` or `--stacktrace`::
    Truncated stacktraces are printed. We recommend this over full stacktraces. Groovy full stacktraces are extremely verbose due to the underlying dynamic invocation mechanisms. Yet they usually do not contain relevant information about what has gone wrong in _your_ code. This option renders stacktraces for deprecation warnings.
    
    `-S` or `--full-stacktrace`::
    The full stacktraces are printed out. This option renders stacktraces for deprecation warnings.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/bench_test.go

    		Name:      "gateways-shared",
    		Services:  1000,
    		ProxyType: model.Router,
    	},
    	{
    		// Knative Gateway simulates a full Knative routing setup. There have been a variety of performance issues and optimizations
    		// around Knative's somewhat abnormal usage, so its good to keep track and measure
    		Name:      "knative-gateway",
    		Services:  100,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top