Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 496 for Inline1 (0.13 sec)

  1. src/go/scanner/scanner_test.go

    	// exactly one token per line since the test consumes one token per segment
    	{"  line1", "TestLineDirectives", 1, 3},
    	{"\nline2", "TestLineDirectives", 2, 1},
    	{"\nline3  //line File1.go:100", "TestLineDirectives", 3, 1}, // bad line comment, ignored
    	{"\nline4", "TestLineDirectives", 4, 1},
    	{"\n//line File1.go:100\n  line100", "File1.go", 100, 0},
    	{"\n//line  \t :42\n  line1", " \t ", 42, 0},
    	{"\n//line File2.go:200\n  line200", "File2.go", 200, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h

    // Name of the string attribute attached to `XlaCallModuleOp`, which is the
    // textproto representation of `Method`.
    inline constexpr StringRef kQuantizationMethodAttr = "_quantization_method";
    
    // Permutation from the NHWC tensor format to NCHW. This is an inverse
    // permutation of `kNchwToNhwcPermutation`.
    inline constexpr std::array<int64_t, 4> kNhwcToNchwPermutation = {0, 3, 1, 2};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/html.go

    		}
    	}
    	return nil, 0, false
    }
    
    func parseHTMLCDATA(s string, i int) (Inline, int, bool) {
    	// “A CDATA section consists of the string <![CDATA[,
    	// a string of characters not including the string ]]>, and the string ]]>.”
    	return parseHTMLMarker(s, i, "<![CDATA[", "]]>")
    }
    
    func parseHTMLDecl(p *parseState, s string, i int) (Inline, int, bool) {
    	// “A declaration consists of the string <!, an ASCII letter,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/object.h

    /// @{
    
    /// Retrieves tagged type of `T` handle.
    template <class T>
    inline TaggedValue::Type TypeToTaggedType() {}
    /// Retrieves tagged type of base class handle.
    template <>
    inline TaggedValue::Type TypeToTaggedType<Handle>() {
      return TaggedValue::Type::NONE;
    }
    /// Retrieves tagged type of None handle.
    template <>
    inline TaggedValue::Type TypeToTaggedType<None>() {
      return TaggedValue::Type::NONE;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1alpha1/types.go

    	// inlineVolumeSpec contains all the information necessary to attach
    	// a persistent volume defined by a pod's inline VolumeSource. This field
    	// is populated only for the CSIMigration feature. It contains
    	// translated fields from a pod's inline VolumeSource to a
    	// PersistentVolumeSpec. This field is alpha-level and is only
    	// honored by servers that enabled the CSIMigration feature.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h

    namespace detail {
    
    inline LogicalResult verifyIsIdempotent(Operation* op) {
      // TODO(b/246518997): Add back check for no side effects on operation.
      // Currently adding it would cause the shared library build
      // to fail since there would be a dependency of IR on SideEffectInterfaces
      // which is cyclical.
      return success();
    }
    
    inline OpFoldResult foldIdempotent(Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/rbac/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.8
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    type Role struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Rules holds all the PolicyRules for this Role
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/link.go

    // is to match GitHub's behavior, we do what they do, not what they say,
    // at least for now.
    func (p *parseState) autoLinkText(list []Inline) []Inline {
    	if !p.AutoLinkText {
    		return list
    	}
    
    	var out []Inline // allocated lazily when we first change list
    	for i, x := range list {
    		switch x := x.(type) {
    		case *Plain:
    			if rewrite := p.autoLinkPlain(x.Text); rewrite != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerScope.kt

         * @param dependencyConfiguration expression to use to configure the dependency.
         * @return The dependency.
         * @see [DependencyHandler.add]
         */
        inline operator fun String.invoke(dependencyNotation: String, dependencyConfiguration: ExternalModuleDependency.() -> Unit): ExternalModuleDependency =
            dependencies.add(this, dependencyNotation, dependencyConfiguration)
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1beta1/types.go

    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.
    type Role struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Rules holds all the PolicyRules for this Role
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top