Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,732 for END (0.05 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/groovy/settings.gradle

            withModule("com.google.guava:guava", GuavaRule)
        }
    }
    // end::rule-in-settings[]
    
    // tag::prefer-settings[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.PREFER_SETTINGS
    }
    // end::prefer-settings[]
    
    // tag::enforce-settings[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.FAIL_ON_PROJECT_RULES
    }
    // end::enforce-settings[]
    
    // tag::prefer-projects[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/manifest/groovy/build.gradle

        }
    }
    // end::add-to-manifest[]
    
    // tag::custom-manifest[]
    def sharedManifest = java.manifest {
        attributes("Implementation-Title": "Gradle",
                   "Implementation-Version": version)
    }
    tasks.register('fooJar', Jar) {
        manifest = java.manifest {
            from sharedManifest
        }
    }
    // end::custom-manifest[]
    
    // tag::merge[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/manifest/kotlin/build.gradle.kts

            )
        }
    }
    // end::add-to-manifest[]
    
    // tag::custom-manifest[]
    val sharedManifest = java.manifest {
        attributes (
            "Implementation-Title" to "Gradle",
            "Implementation-Version" to version
        )
    }
    
    tasks.register<Jar>("fooJar") {
        manifest = java.manifest {
            from(sharedManifest)
        }
    }
    // end::custom-manifest[]
    
    // tag::merge[]
    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. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    $for j, [[
    
              begin$(j)_(g$j.begin()), end$(j)_(g$j.end()), current$(j)_(current$j)
    ]]    {
          ComputeCurrentValue();
        }
        virtual ~Iterator() {}
    
        virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {
          return base_;
        }
        // Advance should not be called on beyond-of-range iterators
        // so no component iterators must be beyond end of range, either.
        virtual void Advance() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/property/groovy/build.gradle

    simpleMessageProperty.set("Hello, World from a Property!")
    // Accessing a property
    println(simpleMessageProperty.get())
    // end::set-prop[]
    
    // tag::set-prov[]
    // Setting a provider
    def simpleMessageProvider = project.providers.provider { "Hello, World from a Provider!" }
    // Accessing a provider
    println(simpleMessageProvider.get())
    // end::set-prov[]
    
    // tag::introduction[]
    abstract class MyIntroTask extends DefaultTask {
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/dsl/groovy/build.gradle

    // tag::use-plugin[]
    // tag::use-community-plugin[]
    plugins {
    // end::use-community-plugin[]
        id 'java'
    // end::use-plugin[]
    // tag::use-community-plugin[]
        id 'com.jfrog.bintray' version '1.8.5'
    // tag::use-plugin[]
    }
    // end::use-plugin[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 277 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/ivy-publish/descriptor-customization/groovy/build.gradle

                    }
                    usage('java-runtime') {
                        fromResolutionResult()
                    }
                }
            }
        }
    // end::versions-resolved[]
    // end::customize-descriptor[]
        repositories {
            ivy {
                // change to point to your repo, e.g. http://my.org/repo
                url layout.buildDirectory.dir('repo')
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/validatingadmissionpolicy.yaml

    metadata:
      name: "stable-channel-policy-binding{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}-{{ .Values.global.istioNamespace }}.istio.io"
    spec:
      policyName: "stable-channel-policy{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}-{{ .Values.global.istioNamespace }}.istio.io"
      validationActions: [Deny]
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 19:46:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/greeting/kotlin/buildSrc/src/main/kotlin/greetings.gradle.kts

    interface GreetingPluginExtension {
        val message: Property<String>
    }
    // end::extension[]
    
    // Add the 'greeting' extension object to project
    val extension = project.extensions.create<GreetingPluginExtension>("greeting")
    // end::create-extension[]
    
    // Set a default value for 'message'
    extension.message.convention("Hello from Gradle")
    // end::convention[]
    
    // Create a greeting task
    abstract class GreetingTask : DefaultTask() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 18:30:04 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. pkg/config/schema/codegen/templates/kind.go.tmpl

    	{{- if (eq $index 0) }}
    	{{.Resource.Identifier}} Kind = iota
    	{{- else }}
    	{{.Resource.Identifier}}
    	{{- end }}
    {{- end }}
    )
    
    func (k Kind) String() string {
    	switch k {
    {{- range .Entries }}
    	case {{.Resource.Identifier}}:
    		return "{{.Resource.Kind}}"
    {{- end }}
    	default:
    		return "Unknown"
    	}
    }
    
    func MustFromGVK(g config.GroupVersionKind) Kind {
    	switch g {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 862 bytes
    - Viewed (0)
Back to top