Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 223 for isattached (0.33 sec)

  1. subprojects/core-api/src/main/java/org/gradle/model/internal/core/UnmanagedStruct.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.core;
    
    import java.lang.annotation.*;
    
    /**
     * Indicates that the type that this annotation is attached to represents some struct type whose lifecycle and implementation
     * is not managed.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface UnmanagedStruct {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 954 bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingOutputInternal.java

    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import javax.annotation.Nullable;
    import java.io.OutputStream;
    
    /**
     * Allows various logging consumers to be attached to the output of the logging system.
     */
    public interface LoggingOutputInternal extends LoggingOutput {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/policyattachment.go

    		}
    
    		// Gateway attached
    		if config.CanonicalGroup(targetRef.GetGroup()) == gvk.KubernetesGateway.CanonicalGroup() &&
    			targetRef.GetKind() == gvk.KubernetesGateway.Kind &&
    			target.Name == gatewayName &&
    			(targetRef.GetNamespace() == "" || targetRef.GetNamespace() == p.Namespace) {
    			return true
    		}
    
    		// Service attached
    		if p.IsWaypoint &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/async-tests.md

    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:25:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/async-tests.md

    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 12:07:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AutoConsoleBuildPhaseFunctionalTest.groovy

        ConsoleOutput consoleType = ConsoleOutput.Auto
    
        @Override
        def setup() {
            // The dynamic content is written to stdout only when it is attached to a console
            Assume.assumeTrue(consoleAttachment.stdoutAttached)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RulesBlock.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Marker annotation attached to rule block closures at compile time to indicate they have been transformed.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    public @interface RulesBlock {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. test/directive2.go

    type (
    	T4 int
    )
    
    //go:noinline // ERROR "misplaced compiler directive"
    type ()
    
    type T5 int
    
    func g() {} //go:noinline // ERROR "misplaced compiler directive"
    
    // ok: attached to f (duplicated yes, but ok)
    //go:noinline
    
    //go:noinline
    func f() {
    	//go:noinline // ERROR "misplaced compiler directive"
    	x := 1
    
    	//go:noinline // ERROR "misplaced compiler directive"
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 06:22:23 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. pkg/probe/probe.go

    type Result string
    
    const (
    	// Success Result
    	Success Result = "success"
    	// Warning Result. Logically success, but with additional debugging information attached.
    	Warning Result = "warning"
    	// Failure Result
    	Failure Result = "failure"
    	// Unknown Result
    	Unknown Result = "unknown"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:20:50 UTC 2019
    - 966 bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/NoConventionMapping.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Disables the application of convention mapping for the class it is attached to, and all superclasses.
     *
     * @see IConventionAware
     */
    @Target(ElementType.TYPE)
    @Retention(RetentionPolicy.RUNTIME)
    public @interface NoConventionMapping {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top