Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 207 for December (0.21 sec)

  1. src/strconv/ftoaryu.go

    func ryuDigits32(d *decimalSlice, lower, central, upper uint32,
    	c0, cup bool, endindex int) {
    	if upper == 0 {
    		d.dp = endindex + 1
    		return
    	}
    	trimmed := 0
    	// Remember last trimmed digit to check for round-up.
    	// c0 will be used to remember zeroness of following digits.
    	cNextDigit := 0
    	for upper > 0 {
    		// Repeatedly compute:
    		// l = Ceil(lower / 10^k)
    		// c = Round(central / 10^k)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/adminlte.min.js

    lapseSize&&t(a.BODY).addClass(l),t(a.BODY).removeClass(r),this._options.enableRemember&&localStorage.setItem("remember"+i,l);var e=t.Event(s.SHOWN);t(this._element).trigger(e)},n.collapse=function(){this._options.autoCollapseSize&&t(window).width()<=this._options.autoCollapseSize&&t(a.BODY).removeClass(l),t(a.BODY).addClass(r),this._options.enableRemember&&localStorage.setItem("remember"+i,r);var e=t.Event(s.COLLAPSED);t(this._element).trigger(e)},n.toggle=function(){t(a.BODY).hasClass(r)?this.e...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 23.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/third_party/forked/golang/reflect/deep_equal.go

    		if addr1 == addr2 {
    			return true
    		}
    
    		// ... or already seen
    		typ := v1.Type()
    		v := visit{addr1, addr2, typ}
    		if visited[v] {
    			return true
    		}
    
    		// Remember for later.
    		visited[v] = true
    	}
    
    	switch v1.Kind() {
    	case reflect.Array:
    		// We don't need to check length here because length is part of
    		// an array's type, which has already been filtered for.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 17:18:42 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  4. src/net/http/httputil/persist.go

    	id := sc.pipe.Next()
    	sc.pipe.StartRequest(id)
    	defer func() {
    		sc.pipe.EndRequest(id)
    		if req == nil {
    			sc.pipe.StartResponse(id)
    			sc.pipe.EndResponse(id)
    		} else {
    			// Remember the pipeline id of this request
    			sc.mu.Lock()
    			sc.pipereq[req] = id
    			sc.mu.Unlock()
    		}
    	}()
    
    	sc.mu.Lock()
    	if sc.we != nil { // no point receiving if write-side broken or closed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter.go

    			table.ColumnDefinitions = h.lastColumns
    		} else if !reflect.DeepEqual(table.ColumnDefinitions, h.lastColumns) {
    			// If this table has column definitions, remember them for future use.
    			h.lastColumns = table.ColumnDefinitions
    			h.printedHeaders = false
    		}
    
    		if len(table.Rows) > 0 {
    			h.printedHeaders = true
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/query-params-str-validations.md

    ## Use `Annotated` in the type for the `q` parameter
    
    Remember I told you before that `Annotated` can be used to add metadata to your parameters in the [Python Types Intro](../python-types.md#type-hints-with-metadata-annotations){.internal-link target=_blank}?
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

            LinkedList<RenderableDependency> out = new LinkedList<>();
            Collection<DependencyEdge> sortedEdges = toDependencyEdges(dependencies);
    
            //remember if module id was annotated
            Set<ComponentIdentifier> annotated = new HashSet<>();
            Set<Throwable> alreadyReportedErrors = new HashSet<>();
            RequestedVersion current = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Monitor.java

     *
     * <h3>{@code synchronized}</h3>
     *
     * <p>This version is the fewest lines of code, largely because the synchronization mechanism used
     * is built into the language and runtime. But the programmer has to remember to avoid a couple of
     * common bugs: The {@code wait()} must be inside a {@code while} instead of an {@code if}, and
     * {@code notifyAll()} must be used instead of {@code notify()} because there are two different
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

                hadValue = delegate.remove(key, value);
            }
            reportAccess(key, oldValue);
            if (hadValue) {
                // The configuration cache uses onRemove callback to remember that the property has to be removed.
                // Of course, the property has to be removed in the cached run only if it was removed in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/RegularImmutableMap.java

       * calls to Builder.put (though we don't really care *which* two values if there were more than
       * two). These considerations lead us to have a field of type DuplicateKey in the Builder, which
       * will remember the first duplicate key we encountered. All later calls to buildOrThrow() can
       * mention that key with its values. Further duplicates might be added in the meantime but since
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top