Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 393 for immediatetly (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go

    		span.AddEvent("Object deleted from database")
    
    		status := http.StatusOK
    		// Return http.StatusAccepted if the resource was not deleted immediately and
    		// user requested cascading deletion by setting OrphanDependents=false.
    		// Note: We want to do this always if resource was not deleted immediately, but
    		// that will break existing clients.
    		// Other cases where resource is not instantly deleted are: namespace deletion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:32 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

     * <p>
     * The url argument must specify an absolute {@link URL}. 
     * The name argument is a specifier that is relative to the url argument.
     * This method always returns immediately, whether or not the image exists. 
     *
     * @param url an absolute URL giving the base location of the image
     * @param name the location of the image, relative to the url argument
     * @return the image at the specified URL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

      private val random: Random,
      private val pingIntervalMillis: Long,
      /**
       * For clients this is initially null, and will be assigned to the agreed-upon extensions. For
       * servers it should be the agreed-upon extensions immediately.
       */
      private var extensions: WebSocketExtensions?,
      /** If compression is negotiated, outbound messages of this size and larger will be compressed. */
      private var minimumDeflateSize: Long,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. src/fmt/doc.go

    	struct:             {field0 field1 ...}
    	array, slice:       [elem0 elem1 ...]
    	maps:               map[key1:value1 key2:value2 ...]
    	pointer to above:   &{}, &[], &map[]
    
    Width is specified by an optional decimal number immediately preceding the verb.
    If absent, the width is whatever is necessary to represent the value.
    Precision is specified after the (optional) width by a period followed by a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    // The postorder list is ordered by end location, with outer expressions last.
    // We use the preorder list to assign each whole-line comment to the syntax
    // immediately following it, and we use the postorder list to assign each
    // end-of-line comment to the syntax immediately preceding it.
    
    // order walks the expression adding it and its subexpressions to the
    // preorder and postorder lists.
    func (in *input) order(x Expr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/policy.go

    	// For case (3a), we just want to stick with the current bestHint
    	// because choosing a new hint that is greater than
    	// bestNonPreferredAffinityCount would be counter-productive.
    	//
    	// For case (3b), we want to immediately update bestHint to the
    	// candidate hint, making it now equal to bestNonPreferredAffinityCount.
    	//
    	// For case (3c), we know that *both* the current bestHint and the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

            sshd = setupConfiguredTestSshd(0)
            sshd.start()
            port = sshd.getPort()
            allowInit()
        }
    
        void stop(boolean immediately = true) {
            sshd?.stop(immediately)
        }
    
        void restart() {
            stop(true)
            before()
        }
    
        void clearSessions() {
            sshd.activeSessions.each { session ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. cmd/batch-expire.go

    				batchLogIf(ctx, ri.updateAfter(ctx, api, 10*time.Second, job))
    
    			case <-ctx.Done():
    				// persist in-memory state immediately before exiting due to context cancellation.
    				batchLogIf(ctx, ri.updateAfter(ctx, api, 0, job))
    				return
    
    			case <-saverQuitCh:
    				// persist in-memory state immediately to disk.
    				batchLogIf(ctx, ri.updateAfter(ctx, api, 0, job))
    				return
    			}
    		}
    	}()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

      private static <E> E[] newEArray(int capacity) {
        return (E[]) new Object[capacity];
      }
    
      /**
       * Inserts the specified element at the tail of this queue if it is possible to do so immediately
       * without exceeding the queue's capacity, returning {@code true} upon success and throwing an
       * {@code IllegalStateException} if this queue is full.
       *
       * @param e the element to add
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  10. src/runtime/netpoll_solaris.go

    	// Use port_alert to put portfd into alert mode.
    	// This will wake up all threads sleeping in port_getn on portfd,
    	// and cause their calls to port_getn to return immediately.
    	// Further, until portfd is taken out of alert mode,
    	// all calls to port_getn will return immediately.
    	if port_alert(portfd, _PORT_ALERT_UPDATE, _POLLHUP, uintptr(unsafe.Pointer(&portfd))) < 0 {
    		if e := errno(); e != _EBUSY {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top