Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,732 for END (0.03 sec)

  1. platforms/documentation/docs/src/snippets/java/application/kotlin/build.gradle.kts

    // tag::use-plugin[]
    plugins {
        application
    }
    // end::use-plugin[]
    
    version = "1.0.2"
    
    // tag::applicationName-conf[]
    application.applicationName = "my-app"
    // end::applicationName-conf[]
    
    // tag::mainClass-conf[]
    application {
        mainClass = "org.gradle.sample.Main"
    }
    // end::mainClass-conf[]
    
    // tag::mainModule-conf[]
    application {
        mainModule = "org.gradle.sample.app" // name defined in module-info.java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/basic/kotlin/build.gradle.kts

    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(17)
        }
    }
    // end::java-extension[]
    
    version = "1.2.1"
    // end::apply-java-plugin[]
    
    // tag::java-dependency-mgmt[]
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation("org.hibernate:hibernate-core:3.6.7.Final")
    }
    // end::java-dependency-mgmt[]
    
    // tag::java-basic-test-config[]
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/build.gradle

    plugins {
        id 'c'
    }
    // end::apply-plugin[]
    
    // tag::libraries[]
    model {
        components {
            hello(NativeLibrarySpec)
        }
    }
    // end::libraries[]
    
    // tag::executables[]
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
                   c.lib library: "hello"
                }
            }
        }
    }
    // end::executables[]
    
    // tag::compiler-args[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/application/groovy/build.gradle

    // tag::use-plugin[]
    plugins {
        id 'application'
    }
    // end::use-plugin[]
    
    version = '1.0.2'
    
    // tag::applicationName-conf[]
    application.applicationName = 'my-app'
    // end::applicationName-conf[]
    
    // tag::mainClass-conf[]
    application {
        mainClass = 'org.gradle.sample.Main'
    }
    // end::mainClass-conf[]
    
    // tag::mainModule-conf[]
    application {
        mainModule = 'org.gradle.sample.app' // name defined in module-info.java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/groovy/build.gradle

    // tag::disable-reports[]
    tasks.withType(Test).configureEach {
    // end::parallel-4[]
    // end::parallel-calculated[]
    // end::fork-every[]
    // end::disable-reports[]
    
    // tag::parallel-4[]
        maxParallelForks = 4
    // end::parallel-4[]
    
    // tag::parallel-calculated[]
        maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
    // end::parallel-calculated[]
    
    // tag::fork-every[]
        forkEvery = 100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 976 bytes
    - Viewed (0)
  6. src/internal/bytealg/indexbyte_wasm.s

    								Tee R1
    								I32Const $3
    								I32GtU
    								BrIf $1
    								Br $3
    							End
    						End
    					Else
    						Get R2
    						Set R1
    						Br $1
    					End
    					Br $1
    				End
    				Get R1
    				I32Eqz
    				If
    					I32Const $0
    					Set R1
    					Br $3
    				End
    			End
    			Loop
    				Get R0
    				I32Load8U $0
    				Get R3
    				I32Eq
    				BrIf $2
    				Get R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 03:59:19 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java-feature-variant/producer-separate-sourceset/kotlin/build.gradle.kts

            usingSourceSet(sourceSets["mongodbSupport"])
    // end::register_variant[]
            withJavadocJar()
            withSourcesJar()
    // tag::register_variant2[]
        }
    }
    // end::register_variant2[]
    // end::register_variant_extra_jars[]
    
    // tag::variant_dependencies[]
    dependencies {
        "mongodbSupportImplementation"("org.mongodb:mongodb-driver-sync:3.9.1")
    }
    // end::variant_dependencies[]
    
    // tag::publishing[]
    publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:16:22 UTC 2023
    - 983 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/ide/eclipse/kotlin/build.gradle.kts

    // tag::use-eclipse-wtp-plugin[]
    plugins {
        // end::use-eclipse-plugin[]
    // end::use-eclipse-wtp-plugin[]
        war
    // tag::use-eclipse-plugin[]
        eclipse
    // end::use-eclipse-plugin[]
    // tag::use-eclipse-wtp-plugin[]
        `eclipse-wtp`
    // end::use-eclipse-wtp-plugin[]
    // tag::use-eclipse-plugin[]
    // tag::use-eclipse-wtp-plugin[]
    }
    // end::use-eclipse-plugin[]
    // end::use-eclipse-wtp-plugin[]
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/templates/clusterrolebinding.yaml

      kind: ClusterRole
      name: istiod-gateway-controller{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}-{{ .Release.Namespace }}
    subjects:
    - kind: ServiceAccount
      name: istiod{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Values.global.istioNamespace }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 10 17:32:44 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  10. src/html/template/clone_test.go

    	t3 := Must(t0.Clone())
    	Must(t3.Parse(`{{define "lhs"}} <style> {{end}}`))
    	Must(t3.Parse(`{{define "rhs"}} </style> {{end}}`))
    
    	// Complete t0.
    	Must(t0.Parse(`{{define "lhs"}} ( {{end}}`))
    	Must(t0.Parse(`{{define "rhs"}} ) {{end}}`))
    
    	// Clone t0 as t4. Redefining the "lhs" template should not fail.
    	t4 := Must(t0.Clone())
    	if _, err := t4.Parse(`{{define "lhs"}} OK {{end}}`); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
Back to top