Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,089 for logic (0.1 sec)

  1. pkg/registry/autoscaling/horizontalpodautoscaler/strategy.go

    )
    
    // autoscalerStrategy implements behavior for HorizontalPodAutoscalers
    type autoscalerStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating HorizontalPodAutoscaler
    // objects via the REST API.
    var Strategy = autoscalerStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped is true for autoscaler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:51:00 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * A package that contains utils for transforms for build logic classpath.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 16:53:26 UTC 2024
    - 791 bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Support for executing contrived Gradle builds for the purpose of testing build logic.
     *
     * @see org.gradle.testkit.runner.GradleRunner
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 799 bytes
    - Viewed (0)
  4. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/package-info.java

     * limitations under the License.
     */
    
    /**
     * Configuration input tracking implementation.
     * <p>
     * The build configuration may be influenced by various "environmental" inputs.
     * For example, build logic may read files or access environment variables.
     * Knowing these inputs is important for configuration caching to understand if the cache has to be invalidated when the value of the system property changes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/eob/BuildScanEndOfBuildNotifier.java

        interface BuildResult {
            @Nullable
            Throwable getFailure();
        }
    
        interface BuildScanResult {
    
        }
    
        interface Listener {
            /**
             * Called after all user build logic has completed and the build outcome reported to the logging system. Also called prior to shutting down the build(-tree) scope services
             */
            BuildScanResult execute(BuildResult buildResult);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_insecure_issue63845.txt

    #
    # Note that this test does not use the local vcweb test server
    # (vcs-test.golang.org), because the hook for redirecting to that
    # server bypasses the "ping to determine protocol" logic
    # in cmd/go/internal/vcs.
    
    [!net:golang.org] skip
    [!git] skip
    [short] skip 'tries to access a nonexistent external Git repo'
    
    env GOPRIVATE=golang.org
    env CURLOPT_TIMEOUT_MS=100
    env GIT_SSH_COMMAND=false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 21:10:03 UTC 2023
    - 908 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/services/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * A package that contains services for transforms for build logic classpath.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 16:53:26 UTC 2024
    - 797 bytes
    - Viewed (0)
  8. 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)
  9. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

            get() = "TEAMCITY_PARALLEL_TESTS_ENABLED" in System.getenv()
        val isCodeQl: Boolean by lazy {
            // This logic is kept here instead of `codeql-analysis.init.gradle` because that file will hopefully be removed in the future.
            // Removing that file is waiting on the GitHub team fixing an issue in Autobuilder logic.
            CODEQL_ENVIRONMENT_VARIABLES.any { it in System.getenv() }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/DefaultExcludesFixture.groovy

            @Override
            void applyDefaultExcludes(AbstractIntegrationSpec spec, ScriptLanguage scriptLanguage) {
                TestFile includedBuildDir = spec.testDirectory.file("build-logic")
                settingsFile(spec.testDirectory, scriptLanguage) << 'includeBuild("build-logic")'
                settingsFile(includedBuildDir, scriptLanguage) << addDefaultExclude(excludedFileName())
            }
    
            @Override
            String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top