Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,809 for Includes (0.17 sec)

  1. src/crypto/internal/boring/LICENSE

     *    "This product includes cryptographic software written by
     *     Eric Young (******@****.***)"
     *    The word 'cryptographic' can be left out if the rouines from the library
     *    being used are not cryptographic related :-).
     * 4. If you include any Windows specific code (or a derivative thereof) from
     *    the apps directory (application code) you must include an acknowledgement:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/InterceptScope.java

        }
    
        /**
         * The returned scope includes calls to all methods named {@code methodName}.
         *
         * @param methodName the name of the method to intercept
         * @return the scope object
         */
        public static InterceptScope methodsNamed(String methodName) {
            return new NamedMemberScope(CallType.METHOD, methodName);
        }
    
        /**
         * The returned scope includes reads of all properties named {@code propertyName}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/groovy/groovy/build.gradle

    test.systemProperty('some.prop', 'value')
    // end::methodCallWithoutParentheses[]
    
    // tag::listAndMapLiterals[]
    // List literal
    test.includes = ['org/gradle/api/**', 'org/gradle/internal/**']
    
    List<String> list = new ArrayList<String>()
    list.add('org/gradle/api/**')
    list.add('org/gradle/internal/**')
    test.includes = list
    
    // Map literal.
    Map<String, String> map = [key1:'value1', key2: 'value2']
    
    // Groovy will coerce named arguments
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/test/groovy/org/gradle/internal/jacoco/rules/JacocoViolationRulesContainerImplTest.groovy

                    jacocoValidationRule.with {
                        enabled = false
                        element = 'CLASS'
                        includes = ['**/*.class']
                        excludes = ['*Special*.class']
                    }
                }
            })
    
            then:
            1 * instantiator.newInstance(JacocoViolationRuleImpl.class) >> new JacocoViolationRuleImpl()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.groovy

        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "includes build identifier in dependency report with #display"() {
            createDirs("buildSrc", "buildSrc/b1", "buildSrc/b2")
            file("buildSrc/settings.gradle") << """
                $settings
                include 'b1', 'b2'
            """
    
            file("buildSrc/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioProjectFileTest.groovy

            generator.addConfiguration(configuration("debugWin32", "Win32", ["foo", "bar"], ["include1", "include2"]))
            generator.addConfiguration(configuration("releaseWin32", "Win32", ["foo", "bar"], ["include1", "include2", "include3"]))
            generator.addConfiguration(configuration("debugX64", "x64", ["foo", "bar"], ["include1", "include2"]))
    
            then:
            final configurations = projectFile.projectConfigurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftBinary.java

         */
        FileCollection getSwiftSource();
    
        /**
         * Returns the modules to use to compile this binary. Includes the module file of this binary's dependencies.
         *
         * @since 4.4
         */
        FileCollection getCompileModules();
    
        /**
         * Returns the link libraries to use to link this binary. Includes the link libraries of the component's dependencies.
         */
        FileCollection getLinkLibraries();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-compiler-plugin/0.1/maven-compiler-plugin-0.1.pom

          <version>2.0</version>
        </dependency>
      </dependencies>
    
      <build>
        <resources>
          <resource>
            <directory></directory>
            <includes>
              <include>pom.xml</include>
              <include>src/**</include>
            </includes>
          </resource>
          <resource>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. architecture/build-state-model.md

      build1 --> project2
      
      build2["included build"]
      build_tree --> build2
      
      project3["root project"]
      build2 --> project3
      
      project4["project"]
      build2 --> project4
    
    ```
    
    ### Build process state
    
    The "build process state" holds the global state of the build process and manages all the other state.
    
    The build process state also includes state that is tied to a particular Gradle user home directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/dsl/org.gradle.language.nativeplatform.tasks.AbstractNativeCompileTask.xml

                </tr>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>source</td>
                </tr>
                <tr>
                    <td>includes</td>
                </tr>
                <tr>
                    <td>systemIncludes</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top