Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 107 for nextB (0.83 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Note that this field when accessed MUST be protected by the Cacher.lock.
    	bookmarkWatchers *watcherBookmarkTimeBuckets
    	// expiredBookmarkWatchers is a list of watchers that were expired and need to be schedule for a next bookmark event
    	expiredBookmarkWatchers []*cacheWatcher
    }
    
    func (c *Cacher) RequestWatchProgress(ctx context.Context) error {
    	return c.storage.RequestWatchProgress(ctx)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/net/netip/netip_test.go

    	test("Addr.As16", func() { sinkIP16 = MustParseAddr("1.2.3.4").As16() })
    	test("Addr.As4", func() { sinkIP4 = MustParseAddr("1.2.3.4").As4() })
    	test("Addr.Next", func() { sinkIP = MustParseAddr("1.2.3.4").Next() })
    	test("Addr.Prev", func() { sinkIP = MustParseAddr("1.2.3.4").Prev() })
    
    	// AddrPort constructors
    	test("AddrPortFrom", func() { sinkAddrPort = AddrPortFrom(IPv4(1, 2, 3, 4), 22) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/cache_test.go

    				if err := cache.AddPod(logger, pod); err != nil {
    					t.Fatal(err)
    				}
    			}
    			nodes := map[string]*framework.NodeInfo{}
    			for nodeItem := cache.headNode; nodeItem != nil; nodeItem = nodeItem.next {
    				nodes[nodeItem.info.Node().Name] = nodeItem.info
    			}
    
    			// Step 1: the node was added into cache successfully.
    			got, found := cache.nodes[node.Name]
    			if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    func BenchmarkMarshal(b *testing.B) {
    	b.ReportAllocs()
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			Marshal(atomValue)
    		}
    	})
    }
    
    func BenchmarkUnmarshal(b *testing.B) {
    	b.ReportAllocs()
    	xml := []byte(atomXML)
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			Unmarshal(xml, &Feed{})
    		}
    	})
    }
    
    // golang.org/issue/6556
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{116, "EILSEQ", "invalid wide character"},
    	{117, "ECANCELED", "asynchronous I/O cancelled"},
    	{118, "ENOSR", "out of STREAMS resources"},
    	{119, "ETIME", "system call timed out"},
    	{120, "EBADMSG", "next message has wrong type"},
    	{121, "EPROTO", "error in protocol"},
    	{122, "ENODATA", "no message on stream head read q"},
    	{123, "ENOSTR", "fd not associated with a stream"},
    	{124, "ENOTSUP", "unsupported attribute value"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    execution order. However, what you _can_ do is control whether all aspects of a test — including its associated `@BeforeXXX` and `@AfterXXX` methods, such as those annotated with `@Before/AfterClass` and `@Before/AfterMethod` — are executed before the next test starts. You do this by setting the link:{javadocPath}/org/gradle/api/tasks/testing/testng/TestNGOptions.html#getPreserveOrder--[TestNGOptions.getPreserveOrder()] property to `true`. If you set it to `false`, you may encounter scenarios in which...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    				if actualCallCount == expectedAttachCallCount {
    					return true, nil
    				}
    				t.Logf(
    					"Warning: Wrong attacher[%v].GetAttachCallCount(). Expected: <%v> Actual: <%v>. Will try next attacher.",
    					i,
    					expectedAttachCallCount,
    					actualCallCount)
    			}
    
    			t.Logf(
    				"Warning: No attachers have expected AttachCallCount. Expected: <%v>. Will retry.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

                }
            });
            // TODO:LPTR Instead of the first view property, we should figure out these parameters from the actual property
            ModelProperty<?> firstProperty = viewProperties.iterator().next();
    
            writeConfigureMethod(visitor, generatedType, firstProperty, writable);
            writeSetMethod(visitor, generatedType, firstProperty);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Community plugins also contribute containers, like the `android.buildTypes` container contributed by the Android Plugin.
    
    The Kotlin DSL provides several ways for build authors to interact with containers.
    We look at each of those ways next, using the `tasks` container as an example.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. cmd/erasure-object.go

    			goi, _, gerr := er.getObjectInfoAndQuorum(ctx, bucket, object, opts)
    			if gerr != nil && goi.Name == "" {
    				if _, ok := gerr.(InsufficientReadQuorum); ok {
    					// Add an MRF heal for next time.
    					er.addPartial(bucket, object, opts.VersionID)
    
    					return objInfo, InsufficientWriteQuorum{}
    				}
    				return objInfo, gerr
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top