Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 616 for logic (0.09 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    import spock.lang.Issue
    
    class DeferredTaskConfigurationIntegrationTest extends AbstractDeferredTaskDefinitionIntegrationTest {
        def "build logic can configure each task only when required"() {
            buildFile << '''
                tasks.register("task1", SomeTask).configure {
                    println "Configure ${path}"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    This behavior caused quite a bit of confusion and was deprecated in Gradle 4.8, because it was the only block that behaved that way.
    
    You may have some logic inside your publishing block or in a plugin that is depending on the deferred configuration behavior.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            executable("build/exe/main/debug/App").assertExists()
            installation("build/install/main/debug").exec().out == app.expectedOutput
        }
    
        def "build logic can change source layout convention"() {
            given:
            def app = new SwiftApp()
            settingsFile << "rootProject.name = '${app.projectName}'"
            app.writeToSourceDir(file("Sources"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. cmd/signature-v4-parser_test.go

    		}
    		if actualErrCode == ErrNone {
    			validateCredentialfields(t, i+1, testCase.expectedCredentials, actualCredential)
    		}
    	}
    }
    
    // TestParseSignature - validates the logic for extracting the signature string.
    func TestParseSignature(t *testing.T) {
    	testCases := []struct {
    		inputSignElement string
    		expectedSignStr  string
    		expectedErrCode  APIErrorCode
    	}{
    		// Test case - 1.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       visible static factory method whose return type is {@code C} or {@code C}'s subtype.
       * </ul>
       *
       * <p>In all cases, if {@code C} needs custom logic for testing serialization, you can add an
       * explicit {@code testSerializable()} test in the corresponding {@code CTest} class, and {@code
       * C} will be excluded from automated serialization test performed by this method.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/extensions.kt

        """-PcommitId=%dep.$dependencyBuildId.build.vcs.number% $extraParameters "-PgitUserName=$gitUserName" "-PgitUserEmail=$gitUserEmail" $pluginPortalUrlOverride %additional.gradle.parameters%"""
    
    /**
     * Align with build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
     */
    enum class KillProcessMode {
        KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS,
        KILL_PROCESSES_STARTED_BY_GRADLE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/eds.go

    				continue
    			}
    		}
    		builder := endpoints.NewEndpointBuilder(clusterName, proxy, req.Push)
    
    		// We skip cache if assertions are enabled, so that the cache will assert our eviction logic is correct
    		if !features.EnableUnsafeAssertions {
    			cachedEndpoint := eds.Cache.Get(&builder)
    			if cachedEndpoint != nil {
    				resources = append(resources, cachedEndpoint)
    				cached++
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/embedding_sequencing.mlir

      // CHECK: func.func private @_func_sc_backward
      // CHECK-NEXT: return
    }
    
    // -----
    // A test verifying too many TPUReplicateMetadataOp ops. Same logic tests too many TPUCompilationResultOp ops.
    module {
      func.func @main(%arg0: tensor<*x!tf_type.resource>, %arg1: tensor<*x!tf_type.resource>, %arg2: tensor<*x!tf_type.resource<tensor<512x256xf32>>>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 01 21:27:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

            if (useIncubatingAPIs && isMultiModule()) {
                // build logic is only generated for multi-module projects
                scriptBuilder.block(null, "pluginManagement").methodInvocation(
                    "Include 'plugins build' to define convention plugins.", "includeBuild", "build-logic");
            }
            scriptBuilder.propertyAssignment(null, "rootProject.name", mvnProjectName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

    // which contain the "real" checkpoint keys into the TensorBundle SSTable.
    // They also contain the logic needed to take the restored tensors from
    // RestoreV2 and load them back into the "object" they came from via their
    // overridden "restore" method:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top