Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,193 for addLine (0.12 sec)

  1. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/tests/projectEvaluateEvents.out

    Adding test task to project ':project-a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 80 bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionContainer.java

    import org.gradle.internal.HasInternalProtocol;
    
    import javax.annotation.Nullable;
    
    /**
     * Allows adding 'namespaced' DSL extensions to a target object.
     */
    @HasInternalProtocol
    public interface ExtensionContainer {
    
        /**
         * Adds a new extension to this container.
         *
         * Adding an extension of name 'foo' will:
         * <ul>
         * <li> add 'foo' dynamic property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:20 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/crypto/tls/66214.md

    3DES cipher suites were removed from the default list used when
    [Config.CipherSuites] is nil. The default can be reverted adding `tls3des=1` to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 178 bytes
    - Viewed (0)
  4. releasenotes/notes/serviceentry-ip-auto-allocation.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 40166
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 22 13:35:08 UTC 2022
    - 210 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/groovy/build.gradle

        project.ext.set("hasTests", false)
    }
    
    gradle.afterProject { project ->
        if (project.ext.has("hasTests") && project.ext.get("hasTests") as Boolean) {
            def projectString = project.toString()
            println "Adding test task to $projectString"
            project.task('test') {
                doLast {
                    println "Running tests for $projectString"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 483 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/developingPlugins/defaultDependency/tests/defaultDependency.out

    ------------------------------------------------------------
    
    dataFiles - The data artifacts to be processed for this plugin.
    \--- org.myorg:more-data:2.6 FAILED
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 343 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    	if !w.add(&watchCacheEvent{Object: makePod(5), ResourceVersion: 5}, time.NewTimer(1*time.Second)) {
    		t.Fatal("failed adding an even to the watcher")
    	}
    	if !w.nonblockingAdd(&watchCacheEvent{Type: watch.Bookmark, ResourceVersion: 10, Object: &v1.Pod{ObjectMeta: metav1.ObjectMeta{ResourceVersion: "10"}}}) {
    		t.Fatal("failed adding an even to the watcher")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/plugin/management/PluginManagementSpec.java

    import org.gradle.api.Action;
    import org.gradle.api.artifacts.dsl.RepositoryHandler;
    import org.gradle.api.initialization.ConfigurableIncludedPluginBuild;
    import org.gradle.declarative.dsl.model.annotations.Adding;
    import org.gradle.declarative.dsl.model.annotations.Configuring;
    import org.gradle.declarative.dsl.model.annotations.Restricted;
    import org.gradle.internal.HasInternalProtocol;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/internal/JavaPluginHelper.java

    import org.gradle.testing.base.TestingExtension;
    
    /**
     * Utility class intended for use only when the {@link org.gradle.api.plugins.JavaPlugin JavaPlugin} is applied.
     *
     * This class exists to avoid adding these methods to the plugin itself,
     * and thus avoids adding these methods to the public API.
     */
    public class JavaPluginHelper {
    
        private JavaPluginHelper() {
            // Private to prevent instantiation.
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 13:16:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/tac_pass.h

    namespace TFL {
    namespace tac {
    // An OperationPass<> with access to the TAC module instance that the
    // pass is running part of.
    // See OperationPass<> comments for all details/restrictions of OperationPass.
    //
    // When adding new Pass to TAC, users should use this class as the base class
    // as it provides access to the TAC module.
    template <typename T>
    class TacPass : public OperationPass<T> {
     public:
      using OperationPass<T>::OperationPass;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top