Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 574 for logic (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/BuildSessionScopeFileTimeStampInspector.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    
    /**
     * Used for the project cache file hash cache.
     *
     * There is no additional logic apart from what is also in {@link FileTimeStampInspector}.
     */
    @ServiceScope(Scope.BuildSession.class)
    public class BuildSessionScopeFileTimeStampInspector extends FileTimeStampInspector implements RootBuildLifecycleListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/TaskNodeDependencyResolver.java

    import org.gradle.api.Task;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Resolves dependencies to {@link TaskNode} objects. Uses the same logic as {@link #TASK_AS_TASK}.
     */
    @ServiceScope(Scope.Build.class)
    public class TaskNodeDependencyResolver implements DependencyResolver {
        private final TaskNodeFactory taskNodeFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. 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)
  4. docs/en/layouts/custom.yml

        {{ page.meta.get("description", config.site_description) or "" }}
    
    
      # Start of custom modified logic
      # Logo
      - &logo >-
        {%- if layout.logo -%}
          {{ layout.logo }}
        {%- elif config.theme.logo -%}
          {{ config.docs_dir }}/{{ config.theme.logo }}
        {%- endif -%}
      # End of custom modified logic
    
      # Logo (icon)
      - &logo_icon >-
        {{ config.theme.icon.logo or "" }}
    
    # Meta tags
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 26 14:05:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/util/sets/empty.go

    limitations under the License.
    */
    
    package sets
    
    // Empty is public since it is used by some internal API objects for conversions between external
    // string arrays and internal sets, and conversion logic requires public types today.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 789 bytes
    - Viewed (0)
Back to top