Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,486 for describes (0.17 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.16
    
    // ConversionReview describes a conversion request/response.
    type ConversionReview struct {
    	metav1.TypeMeta `json:",inline"`
    	// request describes the attributes for the conversion request.
    	// +optional
    	Request *ConversionRequest `json:"request,omitempty" protobuf:"bytes,1,opt,name=request"`
    	// response describes the attributes for the conversion response.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/selection.go

    package types2
    
    import (
    	"bytes"
    	"fmt"
    )
    
    // SelectionKind describes the kind of a selector expression x.f
    // (excluding qualified identifiers).
    //
    // If x is a struct or *struct, a selector expression x.f may denote a
    // sequence of selection operations x.a.b.c.f. The SelectionKind
    // describes the kind of the final (explicit) operation; all the
    // previous (implicit) operations are always field selections.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/networking/v1/generated.proto

      // paths is a collection of paths that map requests to backends.
      // +listType=atomic
      repeated HTTPIngressPath paths = 1;
    }
    
    // IPBlock describes a particular CIDR (Ex. "192.168.1.0/24","2001:db8::/64") that is allowed
    // to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs
    // that should not be included within this rule.
    message IPBlock {
      // cidr is a string representing the IPBlock
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. src/io/fs/fs.go

    		} else {
    			buf[w] = '-'
    		}
    		w++
    	}
    	return string(buf[:w])
    }
    
    // IsDir reports whether m describes a directory.
    // That is, it tests for the [ModeDir] bit being set in m.
    func (m FileMode) IsDir() bool {
    	return m&ModeDir != 0
    }
    
    // IsRegular reports whether m describes a regular file.
    // That is, it tests that no mode type bits are set.
    func (m FileMode) IsRegular() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authorization/v1/types_swagger_doc_generated.go

    	"resourceAttributes":    "ResourceAuthorizationAttributes describes information for a resource access request",
    	"nonResourceAttributes": "NonResourceAttributes describes information for a non-resource access request",
    }
    
    func (SelfSubjectAccessReviewSpec) SwaggerDoc() map[string]string {
    	return map_SelfSubjectAccessReviewSpec
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // +optional
      optional DeploymentSpec spec = 2;
    
      // Most recently observed status of the Deployment.
      // +optional
      optional DeploymentStatus status = 3;
    }
    
    // DeploymentCondition describes the state of a deployment at a certain point.
    message DeploymentCondition {
      // Type of deployment condition.
      optional string type = 1;
    
      // Status of the condition, one of True, False, Unknown.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/metrics.h

    // Returns "/tensorflow/core/checkpoint/sharding/callback_duration" cell which
    // describes how long it took to execute the checkpoint sharding callback in
    // microseconds.
    monitoring::CounterCell& ShardingCallbackDuration();
    
    // Returns "/tensorflow/core/checkpoint/sharding/num_checkpoint_shards_written"
    // cell which describes how many checkpoint shard files were written during
    // saving.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    }
    
    func (DaemonSet) SwaggerDoc() map[string]string {
    	return map_DaemonSet
    }
    
    var map_DaemonSetCondition = map[string]string{
    	"":                   "DaemonSetCondition describes the state of a DaemonSet at a certain point.",
    	"type":               "Type of DaemonSet condition.",
    	"status":             "Status of the condition, one of True, False, Unknown.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/sym/segment.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package sym
    
    // Terrible but standard terminology.
    // A segment describes a block of file to load into memory.
    // A section further describes the pieces of that block for
    // use in debuggers and such.
    
    type Segment struct {
    	Rwx      uint8  // permission as usual unix bits (5 = r-x etc)
    	Vaddr    uint64 // virtual address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 05:32:52 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/ProblemDefinition.java

    import org.gradle.api.problems.ProblemId;
    import org.gradle.api.problems.Severity;
    
    import javax.annotation.Nullable;
    
    /**
     * Describes a specific problem without context.
     * <p>
     * For example, in the domain of Java compilation problems, an unused variable warning could be described as such:
     * <ul>
     *     <li>category: compilation:java</li>
     *     <li>unused variable</li>
     *     <li>severity: WARNING</li>
     *     <li>...</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top