Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for Paging (0.07 sec)

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

    	}
    	defer cacher.Stop()
    
    	ctx, cancel := context.WithCancel(context.Background())
    	// Cancel the watch after some time to check if it will properly
    	// terminate instead of hanging forever.
    	go func() {
    		defer cancel()
    		cacher.clock.Sleep(1 * time.Second)
    	}()
    
    	// Watch hangs waiting on watchcache being initialized.
    	// Ensure that it terminates when its context is cancelled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                    // When dependency resolution has failed, we don't want the build operation listeners to fail as well
                    // because:
                    // 1. the `failed` method will have been called with the user facing error
                    // 2. such an error may still lead to a valid dependency graph
                    MinimalResolutionResult resolutionResult = results.getVisitedGraph().getResolutionResult();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                          \--- org:in-conflict:2.0 (*)
    
                This is the simplest structure I could boil it down to that produces the error.
                - target *must* have a child
                - Having "b" depend directly on "in-conflict" does not produce the error, needs to go through "b-child"
             */
    
            mavenRepo.module("org", "target-child", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    		throw("gc done but gcphase != _GCoff")
    	}
    
    	// Record heapInUse for scavenger.
    	memstats.lastHeapInUse = gcController.heapInUse.load()
    
    	// Update GC trigger and pacing, as well as downstream consumers
    	// of this pacing information, for the next cycle.
    	systemstack(gcControllerCommit)
    
    	// Update timing memstats
    	now := nanotime()
    	sec, nsec, _ := time_now()
    	unixNow := sec*1e9 + int64(nsec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    //
    // Transports should be reused instead of created as needed.
    // Transports are safe for concurrent use by multiple goroutines.
    //
    // A Transport is a low-level primitive for making HTTP and HTTPS requests.
    // For high-level functionality, such as cookies and redirects, see [Client].
    //
    // Transport uses HTTP/1.1 for HTTP URLs and either HTTP/1.1 or HTTP/2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			}
    		})
    	}
    }
    
    func TestController_Service(t *testing.T) {
    	controller, _ := NewFakeControllerWithOptions(t, FakeControllerOptions{})
    
    	// Use a timeout to keep the test from hanging.
    
    	createServiceWait(controller, "svc1", "nsA",
    		map[string]string{}, map[string]string{},
    		[]int32{8080}, map[string]string{"test-app": "test-app-1"}, t)
    	createServiceWait(controller, "svc2", "nsA",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    			argv = append(argv, "-Wl,--no-execute-only")
    		}
    	case objabi.Hwindows:
    		if windowsgui {
    			argv = append(argv, "-mwindows")
    		} else {
    			argv = append(argv, "-mconsole")
    		}
    		// Mark as having awareness of terminal services, to avoid
    		// ancient compatibility hacks.
    		argv = append(argv, "-Wl,--tsaware")
    
    		// Enable DEP
    		argv = append(argv, "-Wl,--nxcompat")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top