Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for call27 (0.09 sec)

  1. src/database/sql/sql.go

    	// returning. It's only used by Next and Err which are
    	// expected not to be called concurrently.
    	hitEOF bool
    
    	// lastcols is only used in Scan, Next, and NextResultSet which are expected
    	// not to be called concurrently.
    	lastcols []driver.Value
    
    	// raw is a buffer for RawBytes that persists between Scan calls.
    	// This is used when the driver returns a mismatched type that requires
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	if w.conn.hijacked() {
    		caller := relevantCaller()
    		w.conn.server.logf("http: response.WriteHeader on hijacked connection from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
    		return
    	}
    	if w.wroteHeader {
    		caller := relevantCaller()
    		w.conn.server.logf("http: superfluous response.WriteHeader call from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         *     {@link #whenAllComplete(Iterable)} or {@link #whenAllComplete(Iterable)}
         * @throws IllegalStateException if called outside of a call to {@link
         *     CombiningCallable#call(DeferredCloser, Peeker)} or {@link
         *     AsyncCombiningCallable#call(DeferredCloser, Peeker)}
         */
        @ParametricNullness
        public final <D extends @Nullable Object> D getDone(ClosingFuture<D> closingFuture)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

       * of the maps at the time this method is called. It will never change, even if the maps change at
       * a later time.
       *
       * <p>Since this method uses {@code HashMap} instances internally, the keys of the supplied maps
       * must be well-behaved with respect to {@link Object#equals} and {@link Object#hashCode}.
       *
       * <p><b>Note:</b>If you only need to know whether two maps have the same mappings, call {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

       * of the maps at the time this method is called. It will never change, even if the maps change at
       * a later time.
       *
       * <p>Since this method uses {@code HashMap} instances internally, the keys of the supplied maps
       * must be well-behaved with respect to {@link Object#equals} and {@link Object#hashCode}.
       *
       * <p><b>Note:</b>If you only need to know whether two maps have the same mappings, call {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/eviction_manager_test.go

    			if !manager.IsUnderDiskPressure() {
    				t.Fatalf("Manager should report disk pressure since soft threshold was met")
    			}
    
    			// verify image, container or both gc were called.
    			// split filesystem can have container gc called without image.
    			// same filesystem should have both.
    			if diskGC.imageGCInvoked != tc.expectImageGcCall && diskGC.containerGCInvoked != tc.expectContainerGcCall {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    			}
    			called := make(chan struct{})
    			stopFunc, err := eventBroadcaster.StartEventWatcher(func(obj runtime.Object) {
    				e, _ := obj.(*eventsv1.Event)
    				if e.Reason != item.eventReason {
    					t.Errorf("got event %v, want %v", e.Reason, item.eventReason)
    				}
    				close(called)
    			})
    			if err != nil {
    				t.Fatal(err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework_test.go

    			t.Errorf("preFilter1 called %v, expected: 1", preFilter1.PreFilterCalled)
    		}
    		if preFilter2.PreFilterCalled != 1 {
    			t.Errorf("preFilter2 called %v, expected: 1", preFilter2.PreFilterCalled)
    		}
    		if preFilter2.AddCalled != 1 {
    			t.Errorf("AddPod called %v, expected: 1", preFilter2.AddCalled)
    		}
    		if preFilter2.RemoveCalled != 1 {
    			t.Errorf("AddPod called %v, expected: 1", preFilter2.RemoveCalled)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_generator.go

    		if deviceOpenedErr != nil {
    			return volumetypes.NewOperationContext(nil, deviceOpenedErr, migrated)
    		}
    		// The device is still in use elsewhere. Caller will log and retry.
    		if deviceOpened {
    			// Mark the device as uncertain, so MountDevice is called for new pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    				if mode == http2Mode {
    					t.Logf("%v: unexpected success (%q). Listener should be closed before OnShutdown is called.", cst.ts.URL, out)
    					t.Logf("Retrying to work around https://go.dev/issue/59038.")
    					continue
    				}
    				t.Errorf("%v: unexpected success (%q). Listener should be closed before OnShutdown is called.", cst.ts.URL, out)
    			}
    		}
    
    		io.WriteString(w, r.RemoteAddr)
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top