Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 210 for comp (0.03 sec)

  1. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.java-conventions.gradle

    // tag::apply-external-plugin[]
    plugins {
        id 'java'
        id 'checkstyle'
    
        // NOTE: external plugin version is specified in implementation dependency artifact of the project's build file
        id 'com.github.spotbugs'
    }
    // end::apply-external-plugin[]
    
    // Projects should use Maven Central for external dependencies
    // This could be the organization's private repository
    repositories {
        mavenCentral()
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 914 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.library-conventions.gradle

    // tag::plugins[]
    plugins {
        id 'java-library'
        id 'maven-publish'
        id 'com.myorg.java-conventions'
    }
    // end::plugins[]
    
    // Projects have the 'com.myorg' group by convention
    group = 'com.myorg'
    
    publishing {
        publications {
            library(MavenPublication) {
                from components.java
            }
        }
        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/android-application/src/main/groovy/com.example.android-application.gradle

    plugins {
        id('com.android.application')
        id('org.jetbrains.kotlin.android')
    }
    
    group = 'com.example.myproduct'
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(8)
        }
    }
    
    android {
        compileSdkVersion(28)
        defaultConfig {
            minSdkVersion(24)
            targetSdkVersion(28)
        }
        compileOptions {
            sourceCompatibility = JavaVersion.VERSION_1_8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 674 bytes
    - Viewed (0)
  4. platforms/software/test-suites-base/src/test/groovy/org/gradle/testing/base/plugins/TestingModelBasePluginTest.groovy

                model {
                    testSuites {
                        comp1(TestSuiteSpec) {
                            binaries {
                                bin1(BinarySpec)
                                bin2(BinarySpec)
                            }
                        }
                        comp2(TestSuiteSpec)
                    }
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. src/internal/fuzz/sys_unimplemented.go

    	panic("not implemented")
    }
    
    func (m *sharedMem) Close() error {
    	panic("not implemented")
    }
    
    func setWorkerComm(cmd *exec.Cmd, comm workerComm) {
    	panic("not implemented")
    }
    
    func getWorkerComm() (comm workerComm, err error) {
    	panic("not implemented")
    }
    
    func isInterruptError(err error) bool {
    	panic("not implemented")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 18:08:15 UTC 2022
    - 934 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.java-conventions.gradle

    // tag::apply-external-plugin[]
    plugins {
        id 'java'
        id 'checkstyle'
    
        // NOTE: external plugin version is specified in implementation dependency artifact of the project's build file
        id 'com.github.spotbugs'
    }
    // end::apply-external-plugin[]
    
    // Projects should use Maven Central for external dependencies
    // This could be the organization's private repository
    repositories {
        mavenCentral()
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 914 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/java-library/src/main/groovy/com.example.java-library.gradle

    plugins {
        id('com.example.commons')
        id('java-library')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 65 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/kotlin-library/src/main/groovy/com.example.kotlin-library.gradle

    plugins {
        id('com.example.commons')
        id('org.jetbrains.kotlin.jvm')
        id('java-library')
    }
    
    dependencies {
        implementation('org.jetbrains.kotlin:kotlin-stdlib')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 175 bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/static-files.md

    {!../../../docs_src/static_files/tutorial001.py!}
    ```
    
    !!! note "Detalhes técnicos"
        Você também pode usar `from starlette.staticfiles import StaticFiles`.
    
        O **FastAPI** fornece o mesmo que `starlette.staticfiles` como `fastapi.staticfiles` apenas como uma conveniência para você, o desenvolvedor. Mas na verdade vem diretamente da Starlette.
    
    ### O que é "Montagem"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Feb 07 13:09:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/resources/META-INF/gradle-plugins/com.example.custom-dependencies.properties

    # 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.
    #
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 648 bytes
    - Viewed (0)
Back to top