Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 284 for src0 (0.04 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaLibraryInitIntegrationTest.groovy

            then:
            subprojectDir.file("src/main/java").assertHasDescendants(SAMPLE_LIBRARY_CLASS)
            !subprojectDir.file("src/test/java").exists()
            subprojectDir.file("src/test/groovy").assertHasDescendants(SAMPLE_SPOCK_LIBRARY_TEST_CLASS)
    
            and:
            commonJvmFilesGenerated(scriptDsl)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 11.8K bytes
    - Viewed (1)
  2. .github/CODEOWNERS

    # Documentation
    platforms/documentation/docs/src/docs/                                                        @gradle/bt-devrel-education
    platforms/documentation/docs/src/samples/                                                     @gradle/bt-devrel-education
    platforms/documentation/docs/src/docs-asciidoctor-extensions-base/                            @gradle/bt-devrel-education
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. apache-maven/pom.xml

                  <exclude>src/assembly/maven/bin/m2.conf</exclude>
                  <!-- these are partial scripts, resulting in mvn scripts -->
                  <exclude>src/assembly/shared/init</exclude>
                  <exclude>src/assembly/shared/init.cmd</exclude>
                  <exclude>src/assembly/shared/mvnlauncher</exclude>
                  <exclude>src/assembly/shared/mvnlauncher.cmd</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/README.md

        [[toolchains]]
        = Toolchains for JVM projects
        ```
    3. Include the new chapter file in the [`userguide_single.adoc`](src/docs/userguide/userguide_single.adoc).
    4. Include the relative link to the new chapter in the [`header.html`](src/main/resources/header.html)
    
    ### Code Snippets
    
    Snippets and output belong under `src/snippets` and are typically included in the user manual. This is a typical example:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            when:
            succeeds("javadoc")
            then:
            skipped(":javadoc")
    
            when:
            file("src/docs/custom.css").moveToDirectory(file("src/not-docs"))
            buildFile << """
                javadoc {
                    options.stylesheetFile = file('src/not-docs/custom.css')
                }
            """
            succeeds("javadoc")
            then:
            skipped(":javadoc")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

            given: "a plugin that creates a custom extension using a DependencyCollector"
            file("build-logic/src/main/java/com/example/restricted/DependenciesExtension.java") << defineDependenciesExtension()
            file("build-logic/src/main/java/com/example/restricted/LibraryExtension.java") << defineLibraryExtension()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. src/database/sql/convert.go

    	case *RawBytes:
    		sv = reflect.ValueOf(src)
    		if b, ok := asBytes(rows.rawbuf(), sv); ok {
    			*d = rows.setrawbuf(b)
    			return nil
    		}
    	case *bool:
    		bv, err := driver.Bool.ConvertValue(src)
    		if err == nil {
    			*d = bv.(bool)
    		}
    		return err
    	case *any:
    		*d = src
    		return nil
    	}
    
    	if scanner, ok := dest.(Scanner); ok {
    		return scanner.Scan(src)
    	}
    
    	dpv := reflect.ValueOf(dest)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    .
    ├── buildSrc
    │   ├── src
    │   │   └──main
    │   │      └──kotlin
    │   │         └──MyCustomTask.kt    // <1>
    │   ├── shared.gradle.kts   // <2>
    │   └── build.gradle.kts
    ├── api
    │   ├── src
    │   │   └──...
    │   └── build.gradle.kts    // <3>
    ├── services
    │   └── person-service
    │       ├── src
    │       │   └──...
    │       └── build.gradle.kts    // <3>
    ├── shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/crypto/aes/gcm_s390x.go

    // of src.
    func (g *gcmAsm) counterCrypt(dst, src []byte, cnt *gcmCount) {
    	// Copying src into a buffer improves performance on some models when
    	// src and dst point to the same underlying array. We also need a
    	// buffer for counter values.
    	var ctrbuf, srcbuf [2048]byte
    	for len(src) >= 16 {
    		siz := len(src)
    		if len(src) > len(ctrbuf) {
    			siz = len(ctrbuf)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                    }
                """
                file("application/src/main/java/application/Adder.java").java """
                    package application;
    
                    public class Adder {
                        int add(int x, int y) {
                            return x+y;
                        }
                    }
                """
                file("application/src/test/java/application/AdderTest.java").java """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top