Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,862 for sresource (0.48 sec)

  1. pkg/test/framework/resource/resource.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package resource
    
    import "fmt"
    
    // Resource of a resource.
    type Resource interface {
    	// ID used for debugging the resource instance.
    	ID() ID
    }
    
    // ID for the resource instance. This is allocated by the framework and passed here.
    type ID interface {
    	fmt.Stringer
    }
    
    var _ ID = FakeID("")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 30 01:00:01 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/resources/Resource.java

     * limitations under the License.
     */
    
    package org.gradle.api.resources;
    
    import java.net.URI;
    
    /**
     * A generic resource of some kind. Only describes the resource.
     * There are more specific interface that extend this one and specify ways of accessing the resource's content.
     */
    public interface Resource {
    
        /**
         * Human readable name of this resource
         *
         * @return human readable name, should not be null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/namedDomainObjectContainer/groovy/buildSrc/src/main/java/Resource.java

    import org.gradle.api.provider.Property;
    import java.net.URI;
    // tag::resource[]
    
    public interface Resource {
        // Type must have a read-only 'name' property
        String getName();
    
        Property<URI> getUri();
    
        Property<String> getUserName();
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 269 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/plugins/nestedObjects/groovy/buildSrc/src/main/java/Resource.java

    import org.gradle.api.provider.Property;
    import java.net.URI;
    // tag::resource[]
    
    public interface Resource {
        Property<URI> getUri();
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 159 bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/resource/Resource.java

     * limitations under the License.
     */
    
    package org.gradle.internal.resource;
    
    import org.gradle.api.Describable;
    
    /**
     * Represents some resource that may have content.
     *
     * <p>This type is currently pretty much empty. It's here as a place to extract and reuse stuff from the various subtypes, which all stared off as separate hierarchies.
     */
    public interface Resource extends Describable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/readOnlyNestedProperty/groovy/buildSrc/src/main/java/Resource.java

    import org.gradle.api.provider.Property;
    import org.gradle.api.tasks.Input;
    // tag::resource[]
    
    public interface Resource {
        @Input
        Property<String> getHostName();
        @Input
        Property<String> getPath();
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 235 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/namedDomainObjectContainer/kotlin/buildSrc/src/main/java/Resource.java

    import org.gradle.api.provider.Property;
    import java.net.URI;
    // tag::resource[]
    
    public interface Resource {
        // Type must have a read-only 'name' property
        String getName();
    
        Property<URI> getUri();
    
        Property<String> getUserName();
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 269 bytes
    - Viewed (0)
  8. pkg/apis/core/resource.go

    func (rl *ResourceList) Storage() *resource.Quantity {
    	return rl.Name(ResourceStorage, resource.BinarySI)
    }
    
    // Pods returns the list of pods
    func (rl *ResourceList) Pods() *resource.Quantity {
    	return rl.Name(ResourcePods, resource.DecimalSI)
    }
    
    // StorageEphemeral returns the list of ephemeral storage volumes, if any
    func (rl *ResourceList) StorageEphemeral() *resource.Quantity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 10 21:09:13 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  9. pilot/pkg/model/credentials/resource.go

    			return SecretResource{}, fmt.Errorf("invalid resource name %q. Expected namespace and name", resourceName)
    		}
    		namespace := split[0]
    		name := split[1]
    		if len(namespace) == 0 {
    			return SecretResource{}, fmt.Errorf("invalid resource name %q. Expected namespace", resourceName)
    		}
    		if len(name) == 0 {
    			return SecretResource{}, fmt.Errorf("invalid resource name %q. Expected name", resourceName)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/sourceSets/kotlin/src/intTest/resources/resource.txt

    some resource...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14 bytes
    - Viewed (0)
Back to top