Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for distinguish (0.17 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema.fbs

      sparsity:SparsityParameters;  // Optional.
    
      // Encodes `shape` with unknown dimensions. Unknown dimensions are
      // represented with -1.
      shape_signature:[int]; // Optional.
    
      // This field is added to distinguish between scalars and tensors of unknown
      // ranks (both of which shape is []).
      // For scalars (rank = 0), shape = [] and has_rank = true.
      // For tensors with known rank (rank > 0) and shape, shape = [...] and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. src/runtime/asm_loong64.s

    	ADDV	$-16, R3
    	MOVV	R4, 8(R3)
    	MOVV	R0, 0(R3)
    	JAL	(R20)
    	JMP	runtime·badmcall2(SB)
    
    // systemstack_switch is a dummy routine that systemstack leaves at the bottom
    // of the G stack. We need to distinguish the routine that
    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    // the system stack terminates the stack walk (see topofstack()).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. src/runtime/asm_mipsx.s

    	MOVW	R1, 4(R29)
    	MOVW	R0, 0(R29)
    	JAL	(R4)
    	JMP	runtime·badmcall2(SB)
    
    // systemstack_switch is a dummy routine that systemstack leaves at the bottom
    // of the G stack.  We need to distinguish the routine that
    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    // the system stack terminates the stack walk (see topofstack()).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/controller.go

    	podConfigType
    )
    
    // configKeyWithParent is a superset of configKey that also encodes the parent resource. For instance, if something comes
    // from a ServiceEntry selector, the parent is the ServiceEntry
    // This is used to distinguish between 1 config (Pod/SE) selected by 2 different parents (ServiceEntry).
    type configKeyWithParent struct {
    	configKey
    	parent types.NamespacedName
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/sql-databases.md

    But once we create an instance of the `SessionLocal` class, this instance will be the actual database session.
    
    We name it `SessionLocal` to distinguish it from the `Session` we are importing from SQLAlchemy.
    
    We will use `Session` (the one imported from SQLAlchemy) later.
    
    To create the `SessionLocal` class, use the function `sessionmaker`:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. pkg/volume/plugins.go

    // plugin via configuration:
    //
    //  1. pod.Spec.Volumes[0].VolumeSource must be overridden.  Recycler
    //     implementations without a valid VolumeSource will fail.
    //  2. pod.GenerateName helps distinguish recycler pods by name.  Recommended.
    //     Default is "pv-recycler-".
    //  3. pod.Spec.ActiveDeadlineSeconds gives the recycler pod a maximum timeout
    //     before failing.  Recommended.  Default is 60 seconds.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                // And if we generate setter override for ConfigurableFileCollection, it's difficult to distinguish between these two cases in setFromAnyValue method.
                if ((property.isReadable() && hasPropertyType(property)) ||
                    (property.isReadOnly() && isConfigurableFileCollectionType(property.getType()))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  8. src/encoding/json/encode.go

    	}
    	return &encodeState{ptrSeen: make(map[any]struct{})}
    }
    
    // jsonError is an error wrapper type for internal use only.
    // Panics with errors are wrapped in jsonError so that the top-level recover
    // can distinguish intentional panics from this package.
    type jsonError struct{ error }
    
    func (e *encodeState) marshal(v any, opts encOpts) (err error) {
    	defer func() {
    		if r := recover(); r != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller.go

    		"Events from k8s registry.",
    	)
    
    	// nolint: gocritic
    	// This is deprecated in favor of `pilot_k8s_endpoints_pending_pod`, which is a gauge indicating the number of
    	// currently missing pods. This helps distinguish transient errors from permanent ones
    	endpointsWithNoPods = monitoring.NewSum(
    		"pilot_k8s_endpoints_with_no_pods",
    		"Endpoints that does not have any corresponding pods.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/types.go

    package v1
    
    import (
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    const (
    	// All Kubernetes labels need to be prefixed with Kubernetes to distinguish them from end-user labels
    	// More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#label-selector-and-annotation-conventions
    	labelPrefix = "batch.kubernetes.io/"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top