Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Dword2 (0.27 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 10 */
        String SUGGEST_POPULAR_WORD_SIZE = "suggest.popular.word.size";
    
        /** The key of the configuration. e.g. 30 */
        String SUGGEST_POPULAR_WORD_WINDOW_SIZE = "suggest.popular.word.window.size";
    
        /** The key of the configuration. e.g. 10 */
        String SUGGEST_POPULAR_WORD_QUERY_FREQ = "suggest.popular.word.query.freq";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/moment-with-locales.min.js

    inalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});var un={words:{ss:["sekund","sekunda","sekundi"],m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mjesec","mjeseca","mjeseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,a){return 1===e?a[0]:2<=e&&e<=4?a[1]:a[2]},translate:function(e,a,t){var s=un.words[t];return 1===t.length?a?s[0]:s[1]:e+" "+un.correctGrammaticalCase(e,s)}};function...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	bThen.AddEdgeTo(bAfter)
    
    	b.AddEdgeTo(bElse)
    	s.startBlock(bElse)
    	switch n.Op() {
    	case ir.OLEN:
    		// length is stored in the first word for map/chan
    		s.vars[n] = s.load(lenType, x)
    	case ir.OCAP:
    		// capacity is stored in the second word for chan
    		sw := s.newValue1I(ssa.OpOffPtr, lenType.PtrTo(), lenType.Size(), x)
    		s.vars[n] = s.load(lenType, sw)
    	default:
    		s.Fatalf("op must be OLEN or OCAP")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - Scheduler no longer runs the plugin's `Filter` method when its `PreFilter` method returned a Skip status.
      In other words, your `PreFilter`/`Filter` plugin can return a Skip status in `PreFilter` if the plugin does nothing in Filter for that Pod.
      Scheduler skips `NodeAffinity` Filter plugin when `NodeAffinity` Filter plugin has nothing to do with a Pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

    - Users can now traverse all the pods that are in the scheduler and waiting in the permit stage through method `IterateOverWaitingPods`. In other words,  all waitingPods in scheduler can be obtained from any profiles. Before this commit, each profile could only obtain `waitingPods` within that profile ([#122946](https://github.com/kubernetes/kubernetes/pull/122946), [@NoicFank](https://github.com/NoicFank))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// +-------+-------+-------+
    	// If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled
    	// to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies
    	// MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler
    	// won't make it *more* imbalanced.
    	// It's a required field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    // with the -, _, and . characters allowed anywhere, except the first or last character.
    // The default convention, matching that for annotations, is to use lower-case names, with dashes, rather than
    // camel case, separating compound words.
    // Fully-qualified resource typenames are constructed from a DNS-style subdomain, followed by a slash `/` and a name.
    const (
    	// CPU, in cores. (500m = .5 cores)
    	ResourceCPU ResourceName = "cpu"
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled
      // to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies
      // MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler
      // won't make it *more* imbalanced.
      // It's a required field.
      optional string whenUnsatisfiable = 3;
    
      // LabelSelector is used to find matching pods.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <alias type="application/vnd.ms-word"/>
        <_comment>Microsoft Word Document</_comment>
        <tika:link>http://en.wikipedia.org/wiki/.doc</tika:link>
        <tika:uti>com.microsoft.word.doc</tika:uti>
        <magic priority="50">
          <match value="Microsoft\ Word\ 6.0\ Document" type="string" offset="2080"/>
          <match value="Documento\ Microsoft\ Word\ 6" type="string" offset="2080"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    * The names generated for ControllerRevision and ReplicaSet are consistent with the GenerateName functionality of the API Server and will not contain "bad words". ([#51538](https://github.com/kubernetes/kubernetes/pull/51538), [@kow3ns](https://github.com/kow3ns))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top