Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,172 for attacher (0.15 sec)

  1. common-protos/k8s.io/api/core/v1/generated.proto

      optional PhotonPersistentDiskVolumeSource photonPersistentDisk = 17;
    
      // portworxVolume represents a portworx volume attached and mounted on kubelets host machine
      // +optional
      optional PortworxVolumeSource portworxVolume = 18;
    
      // scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/console/ConsoleDetector.java

    import javax.annotation.Nullable;
    
    public interface ConsoleDetector {
        /**
         * Locates the console for this process, if any.
         *
         * @return Information about the console, or null if this process is not attached to the console.
         */
        @Nullable
        ConsoleMetaData getConsole();
    
        boolean isConsoleInput();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1002 bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/tflite-op-request.md

    **Any other info / logs**
    
    Include any logs or source code that would be helpful to diagnose the problem.
    If including tracebacks, please include the full traceback. Large logs and files
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 15 03:35:58 UTC 2022
    - 879 bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ListenerService.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Inherited;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to a service implementation to indicate that the instance should be registered as a listener.
     *
     * <p>Generally, it is better to use {@link StatefulListener}, which is lazy and applies some validation to ensure no events are missed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/AbstractNestedBeanLanguageInterOpIntegrationTest.groovy

    abstract class AbstractNestedBeanLanguageInterOpIntegrationTest extends AbstractLanguageInterOpIntegrationTest {
        abstract void pluginDefinesTask()
    
        def "attaches diagnostic information to property"() {
            pluginDefinesTask()
    
            buildFile << """
                apply plugin: SomePlugin
    
                println "flag = " + tasks.someTask.params.flag
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top