Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for DEC (3.73 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	podID := u.keyFunc(pod)
    	if _, exists := u.podInfoMap[podID]; exists {
    		if gated && u.gatedRecorder != nil {
    			u.gatedRecorder.Dec()
    		} else if !gated && u.unschedulableRecorder != nil {
    			u.unschedulableRecorder.Dec()
    		}
    	}
    	delete(u.podInfoMap, podID)
    }
    
    // get returns the QueuedPodInfo if a pod with the same key as the key of the given "pod"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    code[data-lang="text"] .pun,
    code[data-lang="text"] .opn,
    code[data-lang="text"] .clo,
    code[data-lang="text"] .tag,
    code[data-lang="text"] .atn,
    code[data-lang="text"] .atv,
    code[data-lang="text"] .dec,
    code[data-lang="text"] .var,
    code[data-lang="text"] .fun {
    	color: #000;
    }
    
    .dark-mode {
    
    	code[data-lang="text"] .pln,
    	code[data-lang="text"] .str,
    	code[data-lang="text"] .kwd,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/time/format.go

    	"Wed",
    	"Thu",
    	"Fri",
    	"Sat",
    }
    
    var shortMonthNames = []string{
    	"Jan",
    	"Feb",
    	"Mar",
    	"Apr",
    	"May",
    	"Jun",
    	"Jul",
    	"Aug",
    	"Sep",
    	"Oct",
    	"Nov",
    	"Dec",
    }
    
    var longMonthNames = []string{
    	"January",
    	"February",
    	"March",
    	"April",
    	"May",
    	"June",
    	"July",
    	"August",
    	"September",
    	"October",
    	"November",
    	"December",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. src/time/time.go

    }
    
    // ISOWeek returns the ISO 8601 year and week number in which t occurs.
    // Week ranges from 1 to 53. Jan 01 to Jan 03 of year n might belong to
    // week 52 or 53 of year n-1, and Dec 29 to Dec 31 might belong to week 1
    // of year n+1.
    func (t Time) ISOWeek() (year, week int) {
    	// According to the rule that the first calendar week of a calendar year is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. gradle/verification-metadata.xml

                <pgp value="BE685132AFD2740D9095F9040CC0B712FEE75827"/>
             </artifact>
          </component>
          <component group="org.brotli" name="dec" version="0.1.2">
             <artifact name="dec-0.1.2.jar">
                <pgp value="3A4D86C56CA99373B6D8953DBE84D764623A3644"/>
             </artifact>
          </component>
          <component group="org.codehaus.gpars" name="gpars" version="1.2.1">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // failEarlier is like fail, but decrements the offset to indicate
    // that the point of failure occurred earlier in the string.
    func (st *state) failEarlier(err string, dec int) {
    	if st.off < dec {
    		panic("internal error")
    	}
    	panic(demangleErr{err: err, off: st.off - dec})
    }
    
    // advance advances the current string offset.
    func (st *state) advance(add int) {
    	if len(st.str) < add {
    		panic("internal error")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. src/go/printer/testdata/parser.go

    	case token.ARROW:
    		// send statement
    		arrow := p.pos
    		p.next() // consume "<-"
    		y := p.parseRhs()
    		return &ast.SendStmt{x[0], arrow, y}
    
    	case token.INC, token.DEC:
    		// increment or decrement
    		s := &ast.IncDecStmt{x[0], p.pos, p.tok}
    		p.next() // consume "++" or "--"
    		return s
    	}
    
    	// expression
    	return &ast.ExprStmt{x[0]}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  8. src/go/parser/parser.go

    	case token.ARROW:
    		// send statement
    		arrow := p.pos
    		p.next()
    		y := p.parseRhs()
    		return &ast.SendStmt{Chan: x[0], Arrow: arrow, Value: y}, false
    
    	case token.INC, token.DEC:
    		// increment or decrement
    		s := &ast.IncDecStmt{X: x[0], TokPos: p.pos, Tok: p.tok}
    		p.next()
    		return s, false
    	}
    
    	// expression
    	return &ast.ExprStmt{X: x[0]}, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top