Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 474 for logic (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    gradle-project
    ├── app
    │   ├── build.gradle.kts    // app build logic
    │   ├── run.sh              // script file
    │   └── ...                 // some java code
    ├── settings.gradle.kts     // includes app subproject
    ├── gradle
    ├── gradlew
    └── gradlew.bat
    ----
    =====
    [.multi-language-sample]
    =====
    [source,groovy]
    ----
    gradle-project
    ├── app
    │   ├── build.gradle    // app build logic
    │   ├── run.sh          // script file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/getting_started_dev.adoc

            <span class="badge-text">Introduction to Gradle for Developers&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    Build engineers that are ready to configure custom build logic and write their own plugins should start here.
    
    To get started engineering Gradle builds:
    
    1. Read the <<gradle_author_intro,build basics chapters>>.
    2. Follow the <<author_tutorial,tutorial>> for a hands-on approach.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationApplication.kt

         */
        public val useSiteTarget: AnnotationUseSiteTarget?
    
        /**
         * This property can be used to optimize some argument processing logic.
         * For example, if you have [KaAnnotationApplicationInfo] from [KaAnnotated.annotationInfos] and [hasArguments] is **false**,
         * then you can avoid [KaAnnotated.annotationsByClassId] call,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/upgrade/node/preflight.go

    		Long:  "Run pre-flight checks for kubeadm upgrade node.",
    		Run:   runPreflight,
    		InheritFlags: []string{
    			options.IgnorePreflightErrors,
    		},
    	}
    }
    
    // runPreflight executes preflight checks logic.
    func runPreflight(c workflow.RunData) error {
    	data, ok := c.(Data)
    	if !ok {
    		return errors.New("preflight phase invoked with an invalid data struct")
    	}
    	fmt.Println("[preflight] Running pre-flight checks")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/flatbuffer_to_mlir.cc

          context, loc, false, inputs, outputs, false);
    }
    
    }  // namespace
    
    std::string FlatBufferFileToMlir(const std::string& model_file_or_buffer,
                                     bool input_is_filepath) {
      // referred logic from mlir::mlirTranslateMain().
    
      std::string errorMessage;
      std::unique_ptr<llvm::MemoryBuffer> input;
      if (input_is_filepath) {
        input = mlir::openInputFile(model_file_or_buffer, &errorMessage);
        if (!input) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

            when:
            configurationCacheRun "greet"
    
            then:
            configurationCache.assertStateLoaded()
            output.contains("Hello!")
        }
    
        def "#usage property from properties file used as build logic input"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildKotlinFile """
    
                import org.gradle.api.provider.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/overview/quick_start.adoc

    _Training time_: **45 minutes** +
    <<part1_gradle_init#part1_begin,-> Start the Tutorial >>
    
    == For Build Engineers and Plugin Developers
    
    Build engineers and plugin developers that are ready to configure custom build logic or write their own plugins should start here:
    
    === 1. Core Concepts
    
    [sidebar]
    _Description_: *Learn to configure builds, create tasks, and write plugins.* +
    _Training level_: **Intermediate** +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:58:37 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. 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)
  9. platforms/jvm/language-java/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Source for JavaCompile, JavaExec and Javadoc tasks, it also contains logic for incremental Java compilation"
    
    errorprone {
        disabledChecks.addAll(
            "CheckReturnValue", // 2 occurrences
            "DoNotClaimAnnotations", // 6 occurrences
            "InconsistentCapitalization", // 1 occurrences
            "InvalidInlineTag", // 3 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. src/crypto/tls/defaults.go

    			tls3des.Value() != "1" && tdesCiphers[c]
    	})
    }
    
    // defaultCipherSuitesTLS13 is also the preference order, since there are no
    // disabled by default TLS 1.3 cipher suites. The same AES vs ChaCha20 logic as
    // cipherSuitesPreferenceOrder applies.
    //
    // defaultCipherSuitesTLS13 should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top