Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,329 for Applied (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalConfigurationGraphResolveMetadata.java

         *
         * @param artifactTransformer A transformer applied to all artifacts and sub-variant artifacts.
         *
         * @return A copy of this metadata, with the given transformer applied to all artifacts.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/api/IsolatedAction.java

     * 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.
     */
    
    package org.gradle.api;
    
    import java.io.Serializable;
    
    /**
     * Defines an action that is applied to objects of type {@link T}, with each target getting its own isolated action instance.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslRegressionsTest.kt

        }
    
        @Test
        @Issue("https://github.com/gradle/gradle/issues/24481")
        fun `applied project scripts don't have project accessors`() {
            withFile("applied.gradle.kts", """
                println(java.sourceCompatibility)
            """)
            withBuildScript("""
                plugins { java }
                apply(from = "applied.gradle.kts")
            """)
            buildAndFail("help").apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:57:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DaemonContext.java

         * @return the JVM options that the daemon was started with
         */
        Collection<String> getDaemonOpts();
    
        /**
         * Returns whether the instrumentation agent should be applied to the daemon
         *
         * @return {@code true} if the agent should be applied
         */
        boolean shouldApplyInstrumentationAgent();
    
        /**
         * Returns whether the daemon should use native services.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/software/schemaFromSoftwareTypes.kt

    }
    
    
    /**
     * Support for software types that are configured as conventions in the settings build script.
     *
     * Conventions are not applied when process the settings build script, but are captured and applied when a project build script references a given software type.
     */
    internal
    fun EvaluationSchemaBuilder.softwareTypesConventions(
        schemaTypeToExtend: KClass<*>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationsList.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.annotations
    
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.name.ClassId
    
    /**
     * A list of annotations applied for some entity.
     *
     * Annotation owners are usually implement [KaAnnotated]
     */
    public interface KaAnnotationList : List<KaAnnotation>, KaLifetimeOwner {
        @Deprecated("Use the annotation list as a 'List'.")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/networkfilter_test.go

    		{
    			name:              "tunneling_config should be applied when destination rule has specified tunnel settings",
    			routeDestinations: tunnelProxyDestination,
    			destinationRule:   tunnelingEnabled,
    			expectedTunnelingConfig: &tunnelingConfig{
    				hostname: "example.com:8443",
    				usePost:  false,
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. hack/testdata/pod-apply.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: test-pod
      labels:
        name: test-pod-applied
    spec:
      containers:
      - name: kubernetes-pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 174 bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: {{.ServiceAccount | quote}}
      namespace: {{.Namespace | quote}}
      annotations:
        {{- toJsonMap (omit .InfrastructureAnnotations "kubectl.kubernetes.io/last-applied-configuration" "gateway.istio.io/name-override" "gateway.istio.io/service-account" "gateway.istio.io/controller-version") | nindent 4 }}
      labels:
        {{- toJsonMap
          .InfrastructureLabels
          (strdict
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationApplication.kt

     * - For types: `fun foo(x: List<@A Int>){}`
     * - Inside another annotation (`B` is annotation here): `@A(B()) fun foo(){}
     */
    public interface KaAnnotation : KaLifetimeOwner {
        /**
         * The [ClassId] of applied annotation. [ClassId] is a fully qualified name on annotation class.
         */
        public val classId: ClassId?
    
        /**
         * [com.intellij.psi.PsiElement] which was used to apply annotation to declaration/type.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top