Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for cfml (0.04 sec)

  1. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/configmaplock.go

    func (cml *ConfigMapLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error) {
    	var record LeaderElectionRecord
    	var err error
    	cml.cm, err = cml.Client.ConfigMaps(cml.ConfigMapMeta.Namespace).Get(ctx, cml.ConfigMapMeta.Name, metav1.GetOptions{})
    	if err != nil {
    		return nil, nil, err
    	}
    	if cml.cm.Annotations == nil {
    		cml.cm.Annotations = make(map[string]string)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 4K bytes
    - Viewed (0)
  2. cmd/crossdomain-xml-handler.go

    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		cxml := crossDomainXML
    		if globalServerCtxt.CrossDomainXML != "" {
    			cxml = globalServerCtxt.CrossDomainXML
    		}
    		// Look for 'crossdomain.xml' in the incoming request.
    		if r.URL.Path == crossDomainXMLEntity {
    			// Write the standard cross domain policy xml.
    			w.Write([]byte(cxml))
    			// Request completed, no need to serve to other handlers.
    			return
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 06:42:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
      <mime-type type="chemical/x-cmdf">
        <glob pattern="*.cmdf"/>
      </mime-type>
      <mime-type type="chemical/x-cml">
        <glob pattern="*.cml"/>
      </mime-type>
      <mime-type type="chemical/x-csml">
        <glob pattern="*.csml"/>
      </mime-type>
    
      <mime-type type="chemical/x-pdb">
        <_comment>Brookhaven Protein Databank File</_comment>
        <glob pattern="*.pdb"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  4. cmd/common-main.go

    	ctxt.ConsoleAddr = ctx.GlobalString("console-address")
    	if ctxt.ConsoleAddr == "" {
    		ctxt.ConsoleAddr = ctx.String("console-address")
    	}
    
    	if cxml := ctx.String("crossdomain-xml"); cxml != "" {
    		buf, err := os.ReadFile(cxml)
    		if err != nil {
    			return err
    		}
    		ctxt.CrossDomainXML = string(buf)
    	}
    
    	// Check "no-compat" flag from command line argument.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // according to this technique.
    //
    // Fair queuing for server requests is inspired by the fair queuing
    // technique from the world of networking.  You can find a good paper
    // on that at https://dl.acm.org/citation.cfm?doid=75247.75248 or
    // http://people.csail.mit.edu/imcgraw/links/research/pubs/networks/WFQ.pdf
    // and there is an implementation outline in the Wikipedia article at
    // https://en.wikipedia.org/wiki/Fair_queuing .
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"audio/x-ms-wma",
    				"audio/x-pn-realaudio",
    				"audio/x-pn-realaudio-plugin",
    				"audio/x-wav",
    				"chemical/x-cdx",
    				"chemical/x-cif",
    				"chemical/x-cmdf",
    				"chemical/x-cml",
    				"chemical/x-csml",
    				"chemical/x-pdb",
    				"chemical/x-xyz",
    				"image/x-ms-bmp",
    				"image/cgm",
    				"image/example",
    				"image/fits",
    				"image/g3fax",
    				"image/gif",
    				"image/ief",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

     * conventional bounded queues, which either block or reject new elements when full.
     *
     * <p>This implementation is based on the <a
     * href="http://portal.acm.org/citation.cfm?id=6621">min-max heap</a> developed by Atkinson, et al.
     * Unlike many other double-ended priority queues, it stores elements in a single array, as compact
     * as the traditional heap data structure used in {@link PriorityQueue}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

     * conventional bounded queues, which either block or reject new elements when full.
     *
     * <p>This implementation is based on the <a
     * href="http://portal.acm.org/citation.cfm?id=6621">min-max heap</a> developed by Atkinson, et al.
     * Unlike many other double-ended priority queues, it stores elements in a single array, as compact
     * as the traditional heap data structure used in {@link PriorityQueue}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		// Print outgoing edges.
    		for _, out := range n.Out.Sort() {
    			c, _ := measurement.Scale(out.Weight, o.SampleUnit, o.OutputUnit)
    			callee := out.Dest
    			fmt.Fprintln(w, "cfl="+callgrindName(files, callee.Info.File))
    			fmt.Fprintln(w, "cfn="+callgrindName(names, nodeNames[callee]))
    			// pprof doesn't have a flat weight for a call, leave as 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    	utf8KeyBytes, _ := base...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top