Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 395 for attachPod (0.18 sec)

  1. istioctl/pkg/util/handlers/handlers_test.go

    			}
    		}),
    	}
    	getFirstPodFunc = func(client corev1client.PodsGetter, namespace string, selector string, timeout time.Duration, sortBy func([]*corev1.Pod) sort.Interface) (
    		*corev1.Pod, int, error,
    	) {
    		return attachPod(namespace), 1, nil
    	}
    	for _, tt := range tests {
    		t.Run(strings.Split(tt.name, ".")[0], func(t *testing.T) {
    			gotPodName, gotNamespace, err := InferPodInfoFromTypedResource(tt.name, "test", factory)
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jun 09 18:17:49 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/artifact/AttachedArtifact.java

        }
    
        public List<ArtifactVersion> getAvailableVersions() {
            return parent.getAvailableVersions();
        }
    
        public void setAvailableVersions(List<ArtifactVersion> availableVersions) {
            throw new UnsupportedOperationException("Cannot change the version information for an attached artifact."
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Request.kt

      fun headers(name: String): List<String> = commonHeaders(name)
    
      /** Returns the tag attached with [T] as a key, or null if no tag is attached with that key. */
      @JvmName("reifiedTag")
      inline fun <reified T : Any> tag(): T? = tag(T::class)
    
      /** Returns the tag attached with [type] as a key, or null if no tag is attached with that key. */
      fun <T : Any> tag(type: KClass<T>): T? = type.java.cast(tags[type])
    
      /**
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 06 04:17:44 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/ClassMetaDataTest.groovy

        def "is deprecated when @Deprecated annotation is attached to class"() {
            def notDeprecated = new ClassMetaData("SomeClass")
            def deprecated = new ClassMetaData("SomeClass")
            deprecated.addAnnotationTypeName(Deprecated.class.name)
    
            expect:
            !notDeprecated.deprecated
            deprecated.deprecated
        }
    
        def "is incubating when @Incubating annotation is attached to class"() {
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  5. common-protos/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.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  6. 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,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Feb 09 17:13:31 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/storage/v1/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.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  8. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/PropertyMetaDataTest.groovy

            when:
            def p = propertyMetaData.overriddenProperty
    
            then:
            p == null
        }
    
        def "is deprecated when @Deprecated is attached to property"() {
            def notDeprecated = new PropertyMetaData('param', classMetaData)
            def deprecated = new PropertyMetaData('param', classMetaData)
            deprecated.addAnnotationTypeName(Deprecated.class.name)
    
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/storage/v1beta1/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.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/DosError.java

            "Not enough storage is available to process this command.",
            "The media is write protected.",
            "The device is not ready.",
            "A device attached to the system is not functioning.",
            "A device attached to the system is not functioning.",
            "The process cannot access the file because it is being used by another process.",
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.5K bytes
    - Viewed (0)
Back to top