Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 397 for logic (0.09 sec)

  1. settings.gradle.kts

                }
            }
            gradlePluginPortal()
        }
        includeBuild("build-logic-settings")
    }
    
    plugins {
        id("gradlebuild.build-environment")
        id("com.gradle.develocity").version("3.17.4") // Sync with `build-logic-commons/build-platform/build.gradle.kts`
        id("io.github.gradle.gradle-enterprise-conventions-plugin").version("0.10.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    They also serve as the primary mechanism for organizing build logic.
    
    == Benefits of plugins
    
    Writing many tasks and duplicating configuration blocks in build scripts can get messy.
    Plugins offer several advantages over adding logic directly to the build script:
    
    - *Promotes Reusability*: Reduces the need to duplicate similar logic across projects.
    - *Enhances Modularity*: Allows for a more modular and organized build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

            (valueSource as? Describable)?.let {
                it.displayName + " has changed"
            } ?: "a build logic input of type '${unpackType(valueSource).simpleName}' has changed"
    
        private
        fun buildLogicInputFailed(obtainedValue: ObtainedValue, failure: Throwable): InvalidationReason =
            "a build logic input of type '${obtainedValue.valueSourceType.simpleName}' failed when storing the entry with $failure"
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. architecture/networking/pilot.md

    However, there is also a bit of additional logic. Gateway types have extensive status reporting. Unlike Ingress, this is status reporting is done inline in the main controller, allowing status generation to be done directly in the logic processing the resources.
    
    Additionally, Gateway involves two components writing to the cluster:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. cmd/bucket-policy-handlers_test.go

    		if err != nil {
    			t.Fatalf("Test %d: %s: Failed to create HTTP request for PutBucketPolicyHandler: <ERROR> %v", i+1, instanceType, err)
    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    		// Call the ServeHTTP to execute the handler.
    		apiRouter.ServeHTTP(recV4, reqV4)
    		if recV4.Code != testCase.expectedRespStatus {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

            String adjustment = "";
    
            if (parent != null) {
                String childName = child.getArtifactId();
    
                /*
                 * This logic (using filesystem, against wanted independence from the user environment) exists only for the
                 * sake of backward-compat with 2.x (MNG-5000). In general, it is wrong to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    gradle-project
    ├── app
    │   ├── build.gradle.kts    // empty file - no build logic
    │   └── ...                 // some java code
    ├── settings.gradle.kts     // includes app subproject
    ├── gradle
    │   └── ...
    ├── gradlew
    └── gradlew.bat
    ----
    =====
    [.multi-language-sample]
    =====
    [source,groovy]
    ----
    gradle-project
    ├── app
    │   ├── build.gradle    // empty file - no build logic
    │   └── ...             // some java code
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

     * Restructuring your build logic towards Gradle best practices and switching to Kotlin DSL as part of that effort
    
    Both approaches are viable.
    A mechanical migration will be enough for simple builds.
    A complex and highly dynamic build may require some restructuring anyway, so in such cases reimplementing build logic to follow Gradle best practice makes sense.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    Smaller changes are easier to sanity check.
    If you ever break your build logic, analyzing the changelog since the last successful verification will be easier.
    
    4. [[task_configuration_avoidance_guideline_validate_build_logic]] **Ensure a good plan is established for validating the build logic.** +
    Usually, a simple `build` task invocation should do the trick to validate your build logic.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. src/os/types_windows.go

    		default:
    			m |= ModeIrregular
    		}
    	}
    	return
    }
    
    // modePreGo1_23 returns the FileMode for the fileStat, using the pre-Go 1.23
    // logic for determining the file mode.
    // The logic is subtle and not well-documented, so it is better to keep it
    // separate from the new logic.
    func (fs *fileStat) modePreGo1_23() (m FileMode) {
    	if fs.FileAttributes&syscall.FILE_ATTRIBUTE_READONLY != 0 {
    		m |= 0444
    	} else {
    		m |= 0666
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top