Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,011 for addLine (0.4 sec)

  1. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRuleTest.groovy

            when:
            newBase.addInterface(stablePublicInterface)
    
            then:
            noViolation(rule)
        }
    
        def 'adding an #type interface can be reported'() {
            given:
            newBase.addInterface(interfaces[type])
    
            when:
            Violation violation = rule.maybeViolation(apiClass)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    The following sample creates a `custom` distribution that will cause four additional tasks to be added to the project: `customDistZip`, `customDistTar`, `assembleCustomDist`, and `installCustomDist`:
    
    .Adding extra distributions
    ====
    include::sample[dir="snippets/base/distribution/kotlin",files="build.gradle.kts[tags=custom-distribution]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/inspectingDependencies-dependencyReason/tests/dependencyReasonReport.out

       Selection reasons:
          - Was requested: we require a JDK 9 compatible bytecode generator
    
    org.ow2.asm:asm:7.1
    \--- compileClasspath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 846 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java-feature-variant/incompatible-variants/tests/runtimeClasspath.out

    project :producer FAILED
    \--- runtimeClasspath
    
    project :producer FAILED
    \--- runtimeClasspath
    
    project :producer FAILED
    \--- runtimeClasspath
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 712 bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/testFixtures/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeFixture.groovy

            """
        }
    
        static String getAnotherSoftwareTypeExtension() {
            return """
                package org.gradle.test;
    
                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.api.Action;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:26 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. docs/en/docs/external-links.md

    {% for section_name, section_content in external_links.items() %}
    
    ## {{ section_name }}
    
    {% for lang_name, lang_content in section_content.items() %}
    
    ### {{ lang_name }}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 22 07:35:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. src/os/tempfile.go

    }
    
    // CreateTemp creates a new temporary file in the directory dir,
    // opens the file for reading and writing, and returns the resulting file.
    // The filename is generated by taking pattern and adding a random string to the end.
    // If pattern includes a "*", the random string replaces the last "*".
    // The file is created with mode 0o600 (before umask).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 18:04:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrPlugin.java

    import org.gradle.api.plugins.antlr.internal.DefaultAntlrSourceDirectorySet;
    import org.gradle.api.tasks.SourceSet;
    
    import javax.inject.Inject;
    import java.io.File;
    
    /**
     * A plugin for adding Antlr support to {@link org.gradle.api.plugins.JavaPlugin java projects}.
     *
     * @see <a href="https://docs.gradle.org/current/userguide/antlr_plugin.html">ANTLR plugin reference</a>
     */
    @SuppressWarnings("JavadocReference")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSourceTest.groovy

            when:
            provider1.value = ["buzz", "fizz", "foo"]
    
            then:
            source.iterator().collect() == ["foo", "buzz", "fizz"]
        }
    
        def "adding is not ignored when a realized provider currently has the same value"() {
            def provider1 = setProvider("foo")
    
            when:
            source.addPendingCollection(provider1)
            source.realizePending()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 06:43:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. pkg/volume/util/resize_util_test.go

    			pvc:             pvc.DeepCopy(),
    			newConditions:   []v1.PersistentVolumeClaimCondition{},
    			finalConditions: []v1.PersistentVolumeClaimCondition{},
    		},
    		{
    			description: "adding new condition",
    			pvc:         pvc.DeepCopy(),
    			newConditions: []v1.PersistentVolumeClaimCondition{
    				{
    					Type:   v1.PersistentVolumeClaimFileSystemResizePending,
    					Status: v1.ConditionTrue,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top