Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 257 for Closest (0.23 sec)

  1. pkg/ledger/smt.go

    	retentionDuration time.Duration
    	// lock is for the whole struct
    	lock sync.RWMutex
    	// atomicUpdate, commit all the changes made by intermediate update calls
    	atomicUpdate bool
    }
    
    // this is the closest time.Duration comes to Forever, with a duration of ~145 years
    // we can'tree use int64 max because the duration gets added to Now(), and the ints
    // rollover, causing an immediate expiration (ironic, eh?)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/timepicker/bootstrap-timepicker.min.js

    t.find("input.bootstrap-timepicker-second").val():"")+(this.showMeridian?this.$widget.find("input.bootstrap-timepicker-meridian").val():"");this.setTime(a,!0)}},widgetClick:function(b){b.stopPropagation(),b.preventDefault();var c=a(b.target),d=c.closest("a").data("action");d&&this[d](),this.update(),c.is("input")&&c.get(0).setSelectionRange(0,2)},widgetKeydown:function(b){var c=a(b.target),d=c.attr("class").replace("bootstrap-timepicker-","");switch(b.which){case 9:if(b.shiftKey){if("hour"===d)return...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 18.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    | link:{javadocPath}/org/gradle/api/NamedDomainObjectCollection.html#findByName-java.lang.String-[NamedDomainObjectCollection.findByName()]
    | Do not use. `named()` is the closest equivalent, but will fail if the task does not exist.
    
    | `iterator()` or implicit iteration over the `Task` collection
    | Avoid doing this as it requires creating and configuring all tasks.
    
    | `remove()`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/config_test.go

    		{[]host.Name{"bar.com", "foo.com"}, "*.com", ""},
    
    		{[]host.Name{"bar.com", "*.foo.com"}, "*foo.com", ""},
    		{[]host.Name{"foo.com", "*.foo.com"}, "*foo.com", ""},
    
    		// should prioritize closest match
    		{[]host.Name{"*.bar.com", "foo.bar.com"}, "foo.bar.com", "foo.bar.com"},
    		{[]host.Name{"*.foo.bar.com", "bar.foo.bar.com"}, "bar.foo.bar.com", "bar.foo.bar.com"},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K bytes
    - Viewed (0)
  5. src/time/zoneinfo.go

    //  1. If the first zone is unused by the transitions, use it.
    //  2. Otherwise, if there are transition times, and the first
    //     transition is to a zone in daylight time, find the first
    //     non-daylight-time zone before and closest to the first transition
    //     zone.
    //  3. Otherwise, use the first zone that is not daylight time, if
    //     there is one.
    //  4. Otherwise, use the first zone.
    func (l *Location) lookupFirstZone() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux_test.go

    	question := make(chan uintptr)
    	response := make(chan uintptr)
    	defer close(question)
    
    	routines := 0
    	for i, v := range fns {
    		for j := 0; j < launches; j++ {
    			// Add another goroutine - the closest thing
    			// we can do to encourage more OS thread
    			// creation - while the test is running.  The
    			// actual thread creation may or may not be
    			// needed, based on the number of available
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/query-params-str-validations.md

    Imagine that you want the parameter to be `item-query`.
    
    Like in:
    
    ```
    http://127.0.0.1:8000/items/?item-query=foobaritems
    ```
    
    But `item-query` is not a valid Python variable name.
    
    The closest would be `item_query`.
    
    But you still need it to be exactly `item-query`...
    
    Then you can declare an `alias`, and that alias is what will be used to find the parameter value:
    
    === "Python 3.10+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager_linux.go

    	// for example, the cgroup for the user session will be something like /user.slice/user-X.slice/session-X.scope, but the cpu and memory
    	// cgroup will be the closest ancestor where accounting is performed (most likely /) on systems that launch docker containers.
    	// as a result, on those systems, you will not get cpu or memory accounting statistics for kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/adminlte.min.js

    e(this,s),t(this).data("lte.pushmenu",n)),"string"==typeof i&&i.match(/collapse|expand|toggle/)&&n[i]()}))},e}();return t(document).on("click",a.TOGGLE_BUTTON,(function(e){e.preventDefault();var i=e.currentTarget;"pushmenu"!==t(i).data("widget")&&(i=t(i).closest(a.TOGGLE_BUTTON)),d._jQueryInterface.call(t(i),"toggle")})),t(window).on("load",(function(){d._jQueryInterface.call(t(a.TOGGLE_BUTTON))})),t.fn[e]=d._jQueryInterface,t.fn[e].Constructor=d,t.fn[e].noConflict=function(){return t.fn[e]=n,d._jQueryIn...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 23.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/MediaType.java

        return mediaType;
      }
    
      /*
       * The following constants are grouped by their type and ordered alphabetically by the constant
       * name within that type. The constant name should be a sensible identifier that is closest to the
       * "common name" of the media. This is often, but not necessarily the same as the subtype.
       *
       * Be sure to declare all constants with the type and subtype in all lowercase. For types that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
Back to top