Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 92 for DEC (0.02 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                }
                val incOrDecOperationKind = psi.getInOrDecOperationKind()
                val baseExpression = deparenthesize(psi.baseExpression)
    
                // handle inc/dec/ with array access convention
                if (fir is FirFunctionCall && fir.calleeReference.name == OperatorNameConventions.SET && baseExpression is KtArrayAccessExpression) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. 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)
  3. pkg/scheduler/schedule_one.go

    	go func() {
    		bindingCycleCtx, cancel := context.WithCancel(ctx)
    		defer cancel()
    
    		metrics.Goroutines.WithLabelValues(metrics.Binding).Inc()
    		defer metrics.Goroutines.WithLabelValues(metrics.Binding).Dec()
    
    		status := sched.bindingCycle(bindingCycleCtx, state, fwk, scheduleResult, assumedPodInfo, start, podsToActivate)
    		if !status.IsSuccess() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  4. src/time/example_test.go

    	// t.Round(    2s) = 12:15:30
    	// t.Round(  1m0s) = 12:16:00
    	// t.Round( 10m0s) = 12:20:00
    	// t.Round(1h0m0s) = 12:00:00
    }
    
    func ExampleTime_Truncate() {
    	t, _ := time.Parse("2006 Jan 02 15:04:05", "2012 Dec 07 12:15:30.918273645")
    	trunc := []time.Duration{
    		time.Nanosecond,
    		time.Microsecond,
    		time.Millisecond,
    		time.Second,
    		2 * time.Second,
    		time.Minute,
    		10 * time.Minute,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/primitives/LongsTest.java

              .that(
                  Longs.tryParse(
                      BigInteger.valueOf(MIN_VALUE).subtract(BigInteger.ONE).toString(), radix))
              .isNull();
        }
        assertWithMessage("Hex string and dec parm").that(Longs.tryParse("FFFF", 10)).isNull();
        assertWithMessage("Mixed hex case")
            .that(Longs.tryParse("ffFF", 16).longValue())
            .isEqualTo(65535);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. 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)
  7. guava-tests/test/com/google/common/primitives/LongsTest.java

              .that(
                  Longs.tryParse(
                      BigInteger.valueOf(MIN_VALUE).subtract(BigInteger.ONE).toString(), radix))
              .isNull();
        }
        assertWithMessage("Hex string and dec parm").that(Longs.tryParse("FFFF", 10)).isNull();
        assertWithMessage("Mixed hex case")
            .that(Longs.tryParse("ffFF", 16).longValue())
            .isEqualTo(65535);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. 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)
  9. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            response.header("Pragma", "no-cache");
            response.header("Cache-Control", "no-cache");
            response.header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT");
        }
    
        protected void writeFileName(final StreamResponse response, final ResponseData responseData) {
            String charset = responseData.getCharSet();
            if (charset == null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  10. 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)
Back to top