Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,817 for Waking (0.13 sec)

  1. test/chan/zerosize.go

    // run
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test making channels of a zero-sized type.
    
    package main
    
    func main() {
    	_ = make(chan [0]byte)
    	_ = make(chan [0]byte, 1)
    	_ = make(chan struct{})
    	_ = make(chan struct{}, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 349 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authentication/v1alpha1/types_swagger_doc_generated.go

    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_SelfSubjectReview = map[string]string{
    	"":         "SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/MapIteratorCache.java

    /**
     * A map-like data structure that wraps a backing map and caches values while iterating through
     * {@link #unmodifiableKeySet()}. By design, the cache is cleared when this structure is mutated. If
     * this structure is never mutated, it provides a thread-safe view of the backing map.
     *
     * <p>The {@link MapIteratorCache} assumes ownership of the backing map, and cannot guarantee
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/ServerTruncatesRequestTest.kt

        expectedEvents += "ConnectionReleased"
        expectedEvents += "CallEnd"
        assertThat(listener.recordedEventTypes()).isEqualTo(expectedEvents)
    
        // Confirm that the connection pool was not corrupted by making another call.
        makeSimpleCall()
      }
    
      /**
       * If the server returns a full response, it doesn't really matter if the HTTP/2 stream is reset.
       * Attempts to write the request body fails fast.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue13261.go

    // compile
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Taking the address of a parenthesized composite literal is permitted.
    
    package main
    
    type T struct{}
    
    func main() {
    	_ = &T{}
    	_ = &(T{})
    	_ = &((T{}))
    
    	_ = &struct{}{}
    	_ = &(struct{}{})
    	_ = &((struct{}{}))
    
    	switch (&T{}) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 520 bytes
    - Viewed (0)
  6. test/fixedbugs/gcc61204.go

    // compile
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // PR61204: Making temporaries for zero-sized types caused an ICE in gccgo.
    // This is a reduction of a program reported by GoSmith.
    
    package main
    
    func main() {
    	type t [0]int
    	var v t
    	v, _ = [0]int{}, 0
    	_ = v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 387 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    		}
    
    		return 1
    	}
    
    	val := 0
    	for i := 0; i < iter; i++ {
    		m := m1
    		if i%10 == 0 {
    			m = m2
    		}
    
    		// N.B. Profiles only distinguish calls on a per-line level,
    		// making the two calls ambiguous. However because the
    		// interfaces and implementations are mutually exclusive,
    		// devirtualization can still select the correct callee for
    		// each.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

     */
    
    CU_EXPORT CU_ErrorCode CU_basic_run_suite(CU_pSuite pSuite);
    /**< 
     *  Runs all tests for a specific suite in the basic interface.
     *  If pSuite is NULL, the function returns without taking any
     *  action. The default CU_BasicRunMode is used unless it has
     *  been changed using CU_basic_set_mode().
     *
     *  @param pSuite The CU_Suite to run.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. pkg/registry/core/service/allocator/storage/storage_test.go

    	}
    }
    
    func TestStore(t *testing.T) {
    	storage, server, backing, config := newStorage(t)
    	defer server.Terminate(t)
    	if err := storage.storage.Create(context.TODO(), key(), validNewRangeAllocation(), nil, 0); err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	if _, err := storage.Allocate(2); err != nil {
    		t.Fatal(err)
    	}
    	ok, err := backing.Allocate(2)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 01 20:54:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  10. docs/distributed/README.md

    - **MinIO chooses the largest EC set size which divides into the total number of drives or total number of nodes given - making sure to keep the uniform distribution i.e each node participates equal number of drives per set**.
    - **Each object is written to a single EC set, and therefore is spread over no more than 16 drives.**
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top