Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,478 for Detached (0.23 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/console/WindowsConsoleDetector.java

            // Use Jansi's detection mechanism
            try {
                new WindowsAnsiPrintStream(new PrintStream(new ByteArrayOutputStream()));
                return FallbackConsoleMetaData.ATTACHED;
            } catch (IOException ignore) {
                // Not attached to a console
                return null;
            }
        }
    
        @Override
        public boolean isConsoleInput() {
            return System.console() != null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/internal/trace/traceviewer/static/trace_viewer_full.html

    if(self.attached){self.attached();}});},detachedCallback:function(){var self=this;Polymer.RenderStatus.whenReady(function(){self.isAttached=false;for(var i=0,b;i<self.behaviors.length;i++){b=self.behaviors[i];if(b.detached){b.detached.call(self);}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseSourcesAndJavadocJarsIntegrationTest.groovy

            if (!sources.isEmpty()) {
                assert lib.sourcePath != null: "no sources attached"
                assert lib.sourcePath.endsWith("/${sources.get(0)}")
            }
            if (!javadoc.isEmpty()) {
                assert lib.javadocLocation != null: "no javadoc attached"
                assert lib.javadocLocation.endsWith("/${javadoc.get(0)}!/")
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

        Optional<Path> getPath(Project project);
    
        /**
         * Returns an immutable collection of attached artifacts for given project.
         */
        @Nonnull
        Collection<Artifact> getAttachedArtifacts(Project project);
    
        /**
         * Returns project's all artifacts as immutable collection. The list contains all artifacts, even the attached ones,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/Contextual.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * This annotation is attached to an exception class to indicate that it provides contextual information about the
     * exception which might help the user determine what the failed operation was, or where it took place. Generally, this
     * annotation is only attached to exceptions which chain lower-level exceptions.
     */
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/console/ConsoleMetaData.java

    package org.gradle.internal.nativeintegration.console;
    
    public interface ConsoleMetaData {
        /**
         * Returns true if the current process' stdout is attached to the console.
         */
        boolean isStdOut();
    
        /**
         * Returns true if the current process' stderr is attached to the console.
         */
        boolean isStdErr();
    
        /**
         * <p>Returns the number of columns available in the console.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. pkg/test/kube/util.go

    	scopes.Framework.Infof("Checking pods ready...")
    
    	fetched, err := fetchFunc()
    	if err != nil {
    		scopes.Framework.Infof("Failed retrieving pods: %v", err)
    		return nil, err
    	}
    
    	if len(fetched) == 0 {
    		scopes.Framework.Infof("No pods found...")
    		return nil, ErrNoPodsFetched
    	}
    
    	for i, p := range fetched {
    		msg := "Ready"
    		if e := istioKube.CheckPodReadyOrComplete(&p); e != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractSourcesAndJavadocJarsIntegrationTest.groovy

            module.artifact.expectGet()
    
            then:
            succeeds "resolve"
        }
    
        @ToBeFixedForConfigurationCache
        def "sources and javadoc jars from maven repositories are resolved, attached and cached"() {
            def repo = mavenHttpRepo
            def module = repo.module("some", "module", "1.0")
            module.artifact(classifier: "api")
            module.artifact(classifier: "sources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  9. pkg/client/conditions/conditions.go

    )
    
    // ErrPodCompleted is returned by PodRunning or PodContainerRunning to indicate that
    // the pod has already reached completed state.
    var ErrPodCompleted = fmt.Errorf("pod ran to completion")
    
    // PodRunning returns true if the pod is running, false if the pod has not yet reached running state,
    // returns ErrPodCompleted if the pod has run to completion, or an error in any other case.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 13:43:36 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

      // source represents the volume that should be attached.
      optional VolumeAttachmentSource source = 2;
    
      // nodeName represents the node that the volume should be attached to.
      optional string nodeName = 3;
    }
    
    // VolumeAttachmentStatus is the status of a VolumeAttachment request.
    message VolumeAttachmentStatus {
      // attached indicates the volume is successfully attached.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top