Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for source2 (0.23 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactVariantReselectionIntegrationTest.groovy

            // We request sources for a variant that does not have sources.
            // We should not fail, since variant reselection allows no matching variants.
            "without-sources" | "[]"
            // We request sources for a variant that has sources and expect those sources to be reselected.
            "with-sources"    | "[\"producer-1.0-with-sources-sources.jar\"]"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 19:46:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. guava-gwt/pom.xml

                      <fileset dir="${project.build.directory}/failureaccess-sources">
                        <include name="**/InternalFutureFailureAccess.java" />
                      </fileset>
                    </copy>
                    <!-- Any manually written supersource should take priority over the original guava source, so we set overwrite=true. -->
                    <copy toDir="${project.build.directory}/guava-gwt-sources" overwrite="true">
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config/builder.go

    	checkNotNil("t", t)
    	out := b.Copy()
    	out.t = t
    	return out
    }
    
    // Source returns a copy of this Builder with the given Source objects added.
    func (b *Builder) Source(sources ...Source) *Builder {
    	b.t.Helper()
    	out := b.Copy()
    
    	for _, s := range sources {
    		// Split the source so that we process a single CRD at a time.
    		for _, s := range s.SplitOrFail(b.t) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceOutOfBlockModificationListener.kt

         *
         * The source code of all source [KtModule]s in the project should be considered modified when this event is received. This includes
         * source files being moved or removed. Thus, all caches related to source code and source files should be invalidated.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    components by default.
    
    For each component, Gradle defines a _source set_ for each language that the component can be built from. A source set is essentially just a set of source directories containing source files. For example, when you apply the `c` plugin and define a library called `helloworld`, Gradle will define, by default, a source set containing the C source files in the `src/helloworld/c` directory. It will use these source files to build the `helloworld` library. This is described in...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  6. pom.xml

    							<directory>${packaging.fess.lib.dir}/classes</directory>
    							<sources>
    								<source>
    									<location>${project.build.directory}/tomcat-lib</location>
    								</source>
    							</sources>
    						</mapping>
    						<mapping>
    							<directory>${packaging.fess.lib.dir}/classes/org/codelibs/fess</directory>
    							<sources>
    								<source>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (1)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/SourceSetCompileDependenciesIntegrationTest.groovy

        def "dependencies of language source set added to binary are not shared when compiling"() {
            given:
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib library: 'lib1', linkage: 'api'
                }
                binaries.all {
                    sources {
                        other(CppSourceSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginConvention.java

         */
        public abstract File getTestReportDir();
    
        /**
         * Returns the source compatibility used for compiling Java sources.
         */
        public abstract JavaVersion getSourceCompatibility();
    
        /**
         * Sets the source compatibility used for compiling Java sources.
         *
         * @param value The value for the source compatibility as defined by {@link JavaVersion#toVersion(Object)}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.groovy

             */
            TestSource sourceFile(String relativePath, String sourceSet = 'test') {
                TestSource source = new TestSource(relativePath, sourceSet)
                sources << source
                return source
            }
        }
    
        /**
         * Fixture for capturing simple test class requirements.  Note that this class should be used only for simple test classes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 14:54:49 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  10. pkg/volume/projected/projected_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			testNamespace := "test_projected_namespace"
    			source := makeProjection(tc.name, tc.defaultMode, "serviceAccountToken")
    			source.Sources[0].ServiceAccountToken.Audience = tc.audience
    			source.Sources[0].ServiceAccountToken.ExpirationSeconds = tc.expiration
    			source.Sources[0].ServiceAccountToken.Path = tc.path
    
    			testPodUID := types.UID("test_pod_uid")
    			pod := &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
Back to top