Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 663 for toGetter (0.17 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/Hidden.java

    package org.gradle.model.internal.core;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Applied together with {@link org.gradle.model.Model} annotation the registered model element
     * will not be shown in reports.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    public @interface Hidden {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. pkg/apis/extensions/types.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    /*
    This file (together with pkg/apis/extensions/v1beta1/types.go) contain the experimental
    types in kubernetes. These API objects are experimental, meaning that the
    APIs may be broken at any time by the kubernetes team.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 17:21:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  3. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/TestSuiteSpec.java

    import org.gradle.api.Incubating;
    import org.gradle.platform.base.ComponentSpec;
    import org.gradle.platform.base.GeneralComponentSpec;
    
    /**
     * A component representing a suite of tests that will be built and executed together.
     */
    @Incubating
    public interface TestSuiteSpec extends GeneralComponentSpec {
        /**
         * The tested component.
         */
        ComponentSpec getTestedComponent();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. src/plugin/plugin.go

    //     dependencies of the application and its plugins are built from
    //     exactly the same source code.
    //
    //   - Together, these restrictions mean that, in practice, the
    //     application and its plugins must all be built together by a
    //     single person or component of a system. In that case, it may
    //     be simpler for that person or component to generate Go source
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:46:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/c/CSourceSet.java

    import org.gradle.language.nativeplatform.DependentSourceSet;
    import org.gradle.language.nativeplatform.HeaderExportingSourceSet;
    
    /**
     * A set of C source files.
     *
     * <p>A C source set contains a set of source files, together with an optional set of exported header files.</p>
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'c'
     * }
     *
     * model {
     *     components {
     *         main(NativeLibrarySpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/fileTrees/groovy/build.gradle

    // tag::use[]
    // Iterate over the contents of a tree
    tree.each {File file ->
        println file
    }
    
    // Filter a tree
    FileTree filtered = tree.matching {
        include 'org/gradle/api/**'
    }
    
    // Add trees together
    FileTree sum = tree + fileTree(dir: 'src/test')
    
    // Visit the elements of the tree
    tree.visit {element ->
        println "$element.relativePath => $element.file"
    }
    // end::use[]
    
    // tag::archive-trees[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. test/chan/fifo.go

    			print("bad receive\n")
    			os.Exit(1)
    		}
    	}
    }
    
    func Chain(ch <-chan int, val int, in <-chan int, out chan<- int) {
    	<-in
    	if <-ch != val {
    		panic(val)
    	}
    	out <- 1
    }
    
    // thread together a daisy chain to read the elements in sequence
    func SynchFifo() {
    	ch := make(chan int)
    	in := make(chan int)
    	start := in
    	for i := 0; i < N; i++ {
    		out := make(chan int)
    		go Chain(ch, i, in, out)
    		in = out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 22:35:07 UTC 2017
    - 896 bytes
    - Viewed (0)
  8. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginGoodBehaviourTest.groovy

        // The jacoco plugin does not add tasks to an empty project.
        // We apply the java plugin too here in this test to check that
        // the jacoco plugin behaves well when used together
        // with the java plugin (a typical scenario).
    
        def setup(){
            buildFile << """
                apply plugin:'java'
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/StructBindings.java

        /**
         * Returns all schemas that are implemented by this struct. These schemas include the public view schema, any internal view schemas specified
         * when declaring the struct, together with all their super-type schemas. This is an exhaustive list of every type a node can be
         * viewed as. In other words this is the full list of interfaces that a view proxy class generated for this struct type might implement.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/files/fileTrees/kotlin/build.gradle.kts

    // Iterate over the contents of a tree
    tree.forEach{ file: File ->
        println(file)
    }
    
    // Filter a tree
    val filtered: FileTree = tree.matching {
        include("org/gradle/api/**")
    }
    
    // Add trees together
    val sum: FileTree = tree + fileTree("src/test")
    
    // Visit the elements of the tree
    tree.visit {
        println("${this.relativePath} => ${this.file}")
    }
    // end::use[]
    
    // tag::archive-trees[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top