Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,302 for deliver (0.82 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    				// delivered to the pod worker via HandlePodAdditions - there is no *known* scenario that can happen, but
    				// we want to capture it in the metric. The more likely scenario is that a static pod with a predefined
    				// UID is updated, which causes pod config to deliver DELETE -> ADD while the old pod is still shutting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. src/runtime/mstats.go

    		n = uint32(len(memstats.pause_ns))
    	}
    
    	// The pause buffer is circular. The most recent pause is at
    	// pause_ns[(numgc-1)%len(pause_ns)], and then backward
    	// from there to go back farther in time. We deliver the times
    	// most recent first (in p[0]).
    	p = p[:cap(p)]
    	for i := uint32(0); i < n; i++ {
    		j := (memstats.numgc - 1 - i) % uint32(len(memstats.pause_ns))
    		p[i] = memstats.pause_ns[j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/Derived.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    
    /** Simple derived class to verify that we handle generics correctly. */
    @GwtCompatible
    class Derived extends Base {
      public Derived(String s) {
        super(s);
      }
    
      private static final long serialVersionUID = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 22:29:45 UTC 2023
    - 908 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    Let's say you have defined a publication named "myLibrary" and a repository named "myRepo".
    Ivy's Ant tasks would then map to the Gradle tasks like this:
    
     * `<deliver>` -> `generateDescriptorFileForMyLibraryPublication`
     * `<publish>` -> `publishMyLibraryPublicationToMyRepoRepository`
    
    There is also a convenient `publish` task that publishes _all_ publications to _all_ repositories.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    import java.io.IOException;
    
    /**
     * A file deleter that doesn't give up if deletion doesn't work on the first try.
     */
    @ServiceScope(Scope.Global.class)
    public interface Deleter {
        /**
         * Attempts to delete the given file or directory recursively.
         *
         * Can delete directories with contents.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    	bytesSent   int64
    	packetsSent int64
    
    	// retryCount counts the number of consecutive non-advancing records
    	// received by Conn.readRecord. That is, records that neither advance the
    	// handshake, nor deliver application data. Protected by in.Mutex.
    	retryCount int
    
    	// activeCall indicates whether Close has been call in the low bit.
    	// the rest of the bits are the number of goroutines in Conn.Write.
    	activeCall atomic.Int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/database/sql/driver/driver.go

    	//
    	// The returned connection is only used by one goroutine at a
    	// time.
    	Connect(context.Context) (Conn, error)
    
    	// Driver returns the underlying Driver of the Connector,
    	// mainly to maintain compatibility with the Driver method
    	// on sql.DB.
    	Driver() Driver
    }
    
    // ErrSkip may be returned by some optional interfaces' methods to
    // indicate at runtime that the fast path is unavailable and the sql
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. src/html/template/exec_test.go

    }
    
    func twoArgs(a, b string) string {
    	return "twoArgs=" + a + b
    }
    
    func dddArg(a int, b ...string) string {
    	return fmt.Sprintln(a, b)
    }
    
    // count returns a channel that will deliver n sequential 1-letter strings starting at "a"
    func count(n int) chan string {
    	if n == 0 {
    		return nil
    	}
    	c := make(chan string)
    	go func() {
    		for i := 0; i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers_test.go

    		processed[types.UID("6-static")]; !reflect.DeepEqual(expected, actual) {
    		t.Fatalf("unexpected sync pod calls: %s", cmp.Diff(expected, actual))
    	}
    
    	// ensure 5-static exits when we deliver the event out of order
    	channels.Channel("5-static").Release()
    	drainAllWorkers(podWorkers)
    	pod5 = podWorkers.podSyncStatuses[types.UID("5-static")]
    	if !pod5.IsTerminated() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  10. src/text/template/exec_test.go

    }
    
    func twoArgs(a, b string) string {
    	return "twoArgs=" + a + b
    }
    
    func dddArg(a int, b ...string) string {
    	return fmt.Sprintln(a, b)
    }
    
    // count returns a channel that will deliver n sequential 1-letter strings starting at "a"
    func count(n int) chan string {
    	if n == 0 {
    		return nil
    	}
    	c := make(chan string)
    	go func() {
    		for i := 0; i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top