Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,487 for describes (0.16 sec)

  1. src/runtime/debug/mod.go

    	Path string
    
    	// Main describes the module that contains the main package for the binary.
    	Main Module
    
    	// Deps describes all the dependency modules, both direct and indirect,
    	// that contributed packages to the build of this binary.
    	Deps []*Module
    
    	// Settings describes the build settings used to build the binary.
    	Settings []BuildSetting
    }
    
    // A Module describes a single module included in a build.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 15:06:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/ModelRuleDescriptor.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.core.rule.describe;
    
    import com.google.errorprone.annotations.FormatMethod;
    import com.google.errorprone.annotations.FormatString;
    
    /**
     * Describes a method rule.
     * All implementations of this class are expected to implement the equals and hashCode method
     */
    public interface ModelRuleDescriptor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. pkg/kube/adapter.go

    	Connect string = "CONNECT"
    )
    
    // AdmissionReview describes an admission review request/response.
    type AdmissionReview struct {
    	// TypeMeta describes an individual object in an API response or request
    	// with strings representing the type of the object and its API schema version.
    	// Structures that are versioned or persisted should inline TypeMeta.
    	metav1.TypeMeta
    
    	// Request describes the attributes for the admission request.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 10 16:40:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. src/unique/clone.go

    		ps := (*string)(unsafe.Pointer(uintptr(unsafe.Pointer(&value)) + offset))
    		*ps = stringslite.Clone(*ps)
    	}
    	return value
    }
    
    // singleStringClone describes how to clone a single string.
    var singleStringClone = cloneSeq{stringOffsets: []uintptr{0}}
    
    // cloneSeq describes how to clone a value of a particular type.
    type cloneSeq struct {
    	stringOffsets []uintptr
    }
    
    // makeCloneSeq creates a cloneSeq for a type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/configuration/ProjectConfigurationOperationDescriptor.java

    import org.gradle.tooling.model.ProjectIdentifier;
    
    /**
     * Describes a project configuration operation for which an event has occurred.
     *
     * @since 5.1
     */
    public interface ProjectConfigurationOperationDescriptor extends OperationDescriptor {
        /**
         * Returns the project that is configured by the described operation.
         */
        ProjectIdentifier getProject();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. pkg/apis/networking/types.go

    // NetworkPolicy describes what network traffic is allowed for a set of pods
    type NetworkPolicy struct {
    	metav1.TypeMeta
    
    	// +optional
    	metav1.ObjectMeta
    
    	// spec represents the specification of the desired behavior for this NetworkPolicy.
    	// +optional
    	Spec NetworkPolicySpec
    }
    
    // PolicyType describes the NetworkPolicy type
    // This type is beta-level in 1.8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    - `formatVersion`: must be present and the first value of the JSON object. Its value must be `"1.1"`
    - `component`: optional. Describes the identity of the component contained in the module.
    - `createdBy`: optional. Describes the producer of this metadata file and the contents of the module.
    - `variants`: optional. Describes the variants of the component packaged in the module, if any.
    
    ### `component` value
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/policy.go

    const (
    	// MaximumAllowedMinorVersionUpgradeSkew describes how many minor versions kubeadm can upgrade the control plane version in one go
    	MaximumAllowedMinorVersionUpgradeSkew = 1
    
    	// MaximumAllowedMinorVersionDowngradeSkew describes how many minor versions kubeadm can upgrade the control plane version in one go
    	MaximumAllowedMinorVersionDowngradeSkew = 1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/go/types/selection.go

    package types
    
    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: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/python/converter_python_api.h

    #include <vector>
    
    #include "tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.h"
    
    namespace tflite {
    
    // Convert a model represented in `input_contents`. `model_flags_proto`
    // describes model parameters. `flags_proto` describes conversion
    // parameters (see relevant .protos for more information). Returns a string
    // representing the contents of the converted model. When extended_return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top