Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 409 for isOnline (0.29 sec)

  1. 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)
  2. 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)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

    
    /**
     * Sets the default tasks of this project. These are used when no tasks names are provided when
     * starting the build.
     */
    @Suppress("nothing_to_inline")
    inline fun Project.defaultTasks(vararg tasks: Task) {
        defaultTasks(*tasks.map { it.name }.toTypedArray())
    }
    
    
    /**
     * Applies the plugin of the given type [T]. Does nothing if the plugin has already been applied.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		name, flat, cum := n.Info.PrintableName(), n.FlatValue(), n.CumValue()
    
    		var inline, noinline bool
    		for _, e := range n.In {
    			if e.Inline {
    				inline = true
    			} else {
    				noinline = true
    			}
    		}
    
    		var inl string
    		if inline {
    			if noinline {
    				inl = "(partial-inline)"
    			} else {
    				inl = "(inline)"
    			}
    		}
    
    		flatSum += flat
    		items = append(items, TextItem{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K 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