Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 671 for isStandard (0.2 sec)

  1. platforms/documentation/docs/src/samples/ide/problems-api-usage/README.adoc

    * `reporters/standard-plugin` shows the usage of the Problems API in a standard Gradle plugin.
    * `reporters/model-builder-plugin` shows how to use the Problems API to report problems when reading project configuration via the Tooling API.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.
    message ClusterRole {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Rules holds all the PolicyRules for this ClusterRole
      // +optional
      repeated PolicyRule rules = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1beta1/types_swagger_doc_generated.go

    	"metadata":        "Standard object's metadata.",
    	"rules":           "Rules holds all the PolicyRules for this ClusterRole",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1alpha1/types_swagger_doc_generated.go

    	"metadata":        "Standard object's metadata.",
    	"rules":           "Rules holds all the PolicyRules for this ClusterRole",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/AbstractTestLoggerTest.groovy

        }
    
        def "log standard error event"() {
            createLogger(LogLevel.DEBUG)
    
            when:
            logger.logEvent(methodDescriptor, TestLogEvent.STANDARD_ERROR, "this is a${sep}standard error${sep}event")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata.",
    	"items":    "Items is a list of ClusterRoleBindings",
    }
    
    func (ClusterRoleBindingList) SwaggerDoc() map[string]string {
    	return map_ClusterRoleBindingList
    }
    
    var map_ClusterRoleList = map[string]string{
    	"":         "ClusterRoleList is a collection of ClusterRoles",
    	"metadata": "Standard object's metadata.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    	"golang.org/x/tools/go/ast/inspector"
    	"golang.org/x/tools/internal/typesinternal"
    	"golang.org/x/tools/internal/versions"
    )
    
    const Doc = `report uses of too-new standard library symbols
    
    The stdversion analyzer reports references to symbols in the standard
    library that were introduced by a Go release higher than the one in
    force in the referring file. (Recall that the file's Go version is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ContentFilterableExtensions.kt

    /**
     * Adds a content filter to be used during the copy.
     * Multiple calls add additional filters to the filter chain.
     * Each filter should implement [FilterReader].
     * Import `org.apache.tools.ant.filters.*` for access to all the standard Ant filters.
     *
     * Examples:
     *
     * ```
     * filter<StripJavaComments>()
     * filter<com.mycompany.project.CustomFilter>()
     * filter<HeadFilter>("lines" to 25, "skip" to 2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. pkg/apis/rbac/types.go

    type RoleBindingList struct {
    	metav1.TypeMeta
    	// Standard object's metadata.
    	metav1.ListMeta
    
    	// Items is a list of roleBindings
    	Items []RoleBinding
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // RoleList is a collection of Roles
    type RoleList struct {
    	metav1.TypeMeta
    	// Standard object's metadata.
    	metav1.ListMeta
    
    	// Items is a list of roles
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestOutputEvent.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.tasks.testing;
    
    /**
     * Standard output or standard error message logged during the execution of the test
     */
    public interface TestOutputEvent {
    
        /**
         * Destination of the message
         */
        Destination getDestination();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top