Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for templatize (0.35 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/vnd.oasis.opendocument.chart-template">
        <alias type="application/x-vnd.oasis.opendocument.chart-template"/>
        <_comment>OpenDocument v1.0: Chart document used as template</_comment>
        <magic>
          <match type="string" offset="0" value="PK">
            <match type="string" offset="30"
                   value="mimetypeapplication/vnd.oasis.opendocument.chart-template"/>
          </match>
        </magic>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        std::vector<int> dilations{
            dilations_attr.template getValues<int64_t>().begin(),
            dilations_attr.template getValues<int64_t>().end()};
        auto strides_attr = GetI64ElementsAttr(op.getStrides());
        std::vector<tensorflow::int32> strides{
            strides_attr.template getValues<int64_t>().begin(),
            strides_attr.template getValues<int64_t>().end()};
    
        std::vector<int64_t> explicit_paddings;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    			// Verify that the RC selector matches the labels in template.
    			labels := labels.Set(template.Labels)
    			if !selector.Matches(labels) {
    				allErrs = append(allErrs, field.Invalid(fldPath.Child("metadata", "labels"), template.Labels, "`selector` does not match template `labels`"))
    			}
    		}
    		allErrs = append(allErrs, ValidatePodTemplateSpec(template, fldPath, opts)...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  4. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    sabled(y,n)&&(w=y.value.trim()),p==="autoplace"){let k=a.nodes.find(_=>_.prop==="grid-template-rows");if(!k&&f)return;if(!k&&!f){e.warn(n,"Autoplacement does not work without grid-template-rows property");return}!a.nodes.find(_=>_.prop==="grid-template-columns")&&!f&&e.warn(n,"Autoplacement does not work without grid-template-columns property"),c&&!f&&S_(e,n,m,w)}}};Bl.names=["grid-template-rows","grid-template-columns","grid-rows","grid-columns"];lw.exports=Bl});var cw=v((hI,fw)=>{l();var O_=M(),Fl=class...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  5. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    		return "nil"
    	}
    	s := strings.Join([]string{`&DaemonSetSpec{`,
    		`Selector:` + strings.Replace(fmt.Sprintf("%v", this.Selector), "LabelSelector", "v1.LabelSelector", 1) + `,`,
    		`Template:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Template), "PodTemplateSpec", "v11.PodTemplateSpec", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // Template is the object that describes the pod that will be created if
      // insufficient replicas are detected. This takes precedence over a TemplateRef.
      // The only allowed template.spec.restartPolicy value is "Always".
      // More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
      // +optional
      optional PodTemplateSpec template = 3;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    type PodTemplateSpec struct {
    	// Metadata of the pods created from this template.
    	// +optional
    	metav1.ObjectMeta
    
    	// Spec defines the behavior of a pod.
    	// +optional
    	Spec PodSpec
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // PodTemplate describes a template for creating copies of a predefined pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_PodTemplate = map[string]string{
    	"":         "PodTemplate describes a template for creating copies of a predefined pod.",
    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Template defines the pods that will be created from this pod template.
    	// https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
    	// +optional
    	Template PodTemplateSpec `json:"template,omitempty" protobuf:"bytes,2,opt,name=template"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. api/go1.16.txt

    pkg text/template, func ParseFS(fs.FS, ...string) (*Template, error)
    pkg text/template, method (*Template) ParseFS(fs.FS, ...string) (*Template, error)
    pkg text/template/parse, const NodeComment = 20
    pkg text/template/parse, const NodeComment NodeType
    pkg text/template/parse, const ParseComments = 1
    pkg text/template/parse, const ParseComments Mode
    pkg text/template/parse, method (*CommentNode) Copy() Node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
Back to top