Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 466 for comp (0.36 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/commons/src/main/kotlin/com.example.jacoco.gradle.kts

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 153 bytes
    - Viewed (0)
  2. docs/es/docs/async.md

    Pero como te alejas del mostrador y te sientas en la mesa con un número para tu turno, puedes cambiar tu atención 🔀 a esa persona 😍 y "trabajar" ⏯ 🤓 en eso. Entonces nuevamente estás haciendo algo muy "productivo" 🤓, como coquetear con esa persona 😍.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. docs/it/docs/index.md

    ![editor support](https://fastapi.tiangolo.com/img/vscode-completion.png)
    
    Per un esempio più completo che mostra più funzionalità del framework, consulta <a href="https://fastapi.tiangolo.com/tutorial/">Tutorial - Guida Utente</a>.
    
    **Spoiler alert**: il tutorial - Guida Utente include:
    
    * Dichiarazione di **parameters** da altri posti diversi come: **headers**, **cookies**, **form fields** e **files**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. docs/pt/docs/deployment/docker.md

    Por exemplo:
    
    * Com **Docker Compose** em um único servidor
    * Com um cluster **Kubernetes**
    * Com um cluster Docker Swarm Mode
    * Com outra ferramenta como o Nomad
    * Com um serviço de nuvem que pega sua imagem de contêiner e a implanta
    
    ## Imagem Docker com Poetry
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    	for _, clause := range s.Body.List {
    		if comm := clause.(*ast.CommClause).Comm; comm != nil {
    			b.stmt(comm)
    		}
    	}
    
    	done := b.newBlock(KindSelectDone, s)
    	if label != nil {
    		label._break = done
    	}
    
    	var defaultBody *[]ast.Stmt
    	for _, cc := range s.Body.List {
    		clause := cc.(*ast.CommClause)
    		if clause.Comm == nil {
    			defaultBody = &clause.Body
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. 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)
Back to top