Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,929 for recevied (0.29 sec)

  1. plugin/pkg/admission/storage/storageclass/setdefault/admission_test.go

    		klog.Infof("Got %v", err)
    		if err != nil && !test.expectError {
    			t.Errorf("Test %q: unexpected error received: %v", test.name, err)
    		}
    		if err == nil && test.expectError {
    			t.Errorf("Test %q: expected error and no error recevied", test.name)
    		}
    
    		class := ""
    		if claim.Spec.StorageClassName != nil {
    			class = *claim.Spec.StorageClassName
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 04:00:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  2. plugin/pkg/admission/priority/admission_test.go

    		err := ctrl.Validate(context.TODO(), attrs, nil)
    		klog.Infof("Got %v", err)
    		if err != nil && !test.expectError {
    			t.Errorf("Test %q: unexpected error received: %v", test.name, err)
    		}
    		if err == nil && test.expectError {
    			t.Errorf("Test %q: expected error and no error recevied", test.name)
    		}
    	}
    }
    
    // TestDefaultPriority tests that default priority is resolved correctly.
    func TestDefaultPriority(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 03 18:43:48 UTC 2022
    - 21.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.2.md

    * Use versioned object when computing patch ([#23145](https://github.com/kubernetes/kubernetes/pull/23145), [@liggitt](https://github.com/liggitt))
    * kubelet: send all recevied pods in one update ([#23141](https://github.com/kubernetes/kubernetes/pull/23141), [@yujuhong](https://github.com/yujuhong))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/Receiver.java

    import javax.annotation.Nullable;
    import java.util.concurrent.ArrayBlockingQueue;
    import java.util.concurrent.BlockingQueue;
    
    /**
     * Receives and handles messages about a given worker action executed by a worker process.
     * <p>
     * This receiver is used per worker action.
     */
    @NonNullApi
    public class Receiver implements ResponseProtocol, StreamCompletion, StreamFailureHandler {
        private static final Object NULL = new Object();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/tooling/internal/provider/serialization/PayloadSerializerTest.groovy

            when:
            def received1 = receiver.deserialize(originator.serialize(original))
            def reply1 = originator.deserialize(receiver.serialize(received1))
            def received2 = receiver.deserialize(originator.serialize(original))
            def reply2 = originator.deserialize(receiver.serialize(received2))
    
            then:
            received1.class.classLoader == received2.class.classLoader
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

                        broadcaster.foo(it)
                    }
                }
            }
    
            then:
            received1.size() == 60
            received2.size() == 60
            received1 == received2
            received1.findAll { it.startsWith("a") } == events1
            received1.findAll { it.startsWith("b") } == events2
        }
    
        List<String> events(String prefix, int count) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/Receive.java

     * A source for messages. Implementations do not have to be thread-safe.
     */
    public interface Receive<T> {
        /**
         * Blocks until the next message is available. Returns null when the end of the message stream has been reached.
         *
         * @return The next message, or null when the end of the stream has been reached.
         */
        @Nullable
        T receive();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.3.md

    * Use versioned object when computing patch ([#23145](https://github.com/kubernetes/kubernetes/pull/23145), [@liggitt](https://github.com/liggitt))
    * kubelet: send all recevied pods in one update ([#23141](https://github.com/kubernetes/kubernetes/pull/23141), [@yujuhong](https://github.com/yujuhong))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  9. test/interface/receiver.go

    Rob Pike <******@****.***> 1329633221 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 1.3K bytes
    - Viewed (0)
  10. src/runtime/chan.go

    	chanrecv(c, elem, true)
    }
    
    //go:nosplit
    func chanrecv2(c *hchan, elem unsafe.Pointer) (received bool) {
    	_, received = chanrecv(c, elem, true)
    	return
    }
    
    // chanrecv receives on channel c and writes the received data to ep.
    // ep may be nil, in which case received data is ignored.
    // If block == false and no elements are available, returns (false, false).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top