Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 80 for Paging (0.18 sec)

  1. 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)
  2. 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)
  3. pkg/config/validation/validation.go

    			}
    		}
    
    		// Make sure we have only one of . or *
    		if exportToSet.Contains(string(visibility.Public)) {
    			// make sure that there are no other entries in the exportTo
    			// i.e. no point in saying ns1,ns2,*. Might as well say *
    			if len(exportTo) > 1 {
    				errs = appendErrors(errs, fmt.Errorf("cannot have both public (*) and non-public exportTo values for a resource"))
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. 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)
  5. pkg/proxy/iptables/proxier_test.go

    			}
    			assertIPTablesChainEqual(t, getLine(), utiliptables.TableNAT, kubePostroutingChain, expected, fp.iptablesData.String())
    		})
    	}
    }
    
    // TestExternalTrafficPolicyLocal tests that traffic to externally-facing IPs does not get
    // masqueraded when using Local traffic policy. For traffic from external sources, that
    // means it can also only be routed to local endpoints, but for traffic from internal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  6. android/guava/src/com/google/common/cache/LocalCache.java

        }
    
        // Find the lowest power-of-two segmentCount that exceeds concurrencyLevel, unless
        // maximumSize/Weight is specified in which case ensure that each segment gets at least 10
        // entries. The special casing for size-based eviction is only necessary because that eviction
        // happens per segment instead of globally, so too many segments compared to the maximum size
        // will result in random eviction behavior.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

        }
    
        // Find the lowest power-of-two segmentCount that exceeds concurrencyLevel, unless
        // maximumSize/Weight is specified in which case ensure that each segment gets at least 10
        // entries. The special casing for size-based eviction is only necessary because that eviction
        // happens per segment instead of globally, so too many segments compared to the maximum size
        // will result in random eviction behavior.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. 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)
  9. pkg/scheduler/schedule_one_test.go

    				t.Fatal(err)
    			}
    			createPodIndex++
    		}
    	}
    
    	// Following we start 2 goroutines asynchronously to detect potential racing issues:
    	// 1) One is responsible for deleting several nodes in each round;
    	// 2) Another is creating several pods in each round to trigger scheduling;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

      
      For developers of out-of-tree PostFilter plugins, note that the semantics of NodeToStatusMap are changing: A node with an absent value in the NodeToStatusMap should be interpreted as having an UnschedulableAndUnresolvable status ([#125307](https://github.com/kubernetes/kubernetes/pull/125307), [@gabesaba](https://github.com/gabesaba)) [SIG Scheduling]
    
    ### Feature
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top