Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 628 for updatePV (0.17 sec)

  1. hack/update-all.sh

    # The "true" target of this makerule is `hack/make-rules/update.sh`.
    # We should run `hack/update-all.sh` if anything fails after
    # running `hack/verify-all.sh`. It is equivalent to `make update`.
    # Usage: `hack/update-all.sh` or `make update`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    echo "NOTE: ${BASH_SOURCE[0]} has been replaced by 'make update'"
    echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 16 15:58:13 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. hack/update-gofmt.sh

    Tim Hockin <******@****.***> 1704583211 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. cmd/update-notifier_test.go

    		line1 := fmt.Sprintf("%s %s", plainMsg, color.YellowBold(testCase.expectedSubStr))
    		line2 := fmt.Sprintf("Update: %s", color.CyanBold(testCase.dlURL))
    		// Uncomment below to see message appearance:
    		// fmt.Println(output)
    		switch {
    		case testCase.dlURL == "" && output != "":
    			t.Errorf("Testcase %d: no newer release available but got an update message: %s", i+1, output)
    		case output == "" && testCase.dlURL != "" && testCase.older > 0:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 31 15:36:19 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. hack/testdata/CRD/foo-updated-subfield.yaml

    Nikhita Raghunath <******@****.***> 1506872372 +0530
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 01 15:43:24 UTC 2017
    - 203 bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/CachedEnvironmentStateCodec.kt

            writeBoolean(value.cleared)
    
            writeCollection(value.updates) { update ->
                val keyString = update.key.toString()
                withPropertyTrace(PropertyTrace.SystemProperty(keyString, update.location)) {
                    try {
                        writeClass(update.javaClass)
                        write(update.key)
                        write(update.value)
                    } catch (error: Exception) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. pkg/controlplane/controller/kubernetesservice/controller.go

    		if reconcile {
    			if svc, updated := getMasterServiceUpdateIfNeeded(s, servicePorts, serviceType); updated {
    				klog.Warningf("Resetting master service %q to %#v", serviceName, svc)
    				_, err := c.client.CoreV1().Services(metav1.NamespaceDefault).Update(context.TODO(), svc, metav1.UpdateOptions{})
    				return err
    			}
    		}
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. src/net/interface.go

    	toIndex: make(map[string]int),
    	toName:  make(map[int]string),
    }
    
    // update refreshes the network interface information if the cache was last
    // updated more than 1 minute ago, or if force is set. It reports whether the
    // cache was updated.
    func (zc *ipv6ZoneCache) update(ift []Interface, force bool) (updated bool) {
    	zc.Lock()
    	defer zc.Unlock()
    	now := time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. pilot/pkg/config/monitor/monitor_test.go

    	stop := make(chan struct{})
    	defer func() { close(stop) }()
    	mon.Start(stop)
    
    	go func() {
    		for i := 0; i < 10; i++ {
    			select {
    			case <-stop:
    				return
    			case mon.updateCh <- struct{}{}:
    			}
    			time.Sleep(time.Millisecond * 100)
    		}
    	}()
    	g.Eventually(func() error {
    		c := store.List(gvk.Gateway, "")
    
    		if len(c) != 1 {
    			return errors.New("no configs")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. hack/update-import-aliases.sh

    # limitations under the License.
    
    # This script fixes imports programmatically according to
    # all the imports that we have our preferred alias(es).
    # Usage: `hack/update-import-aliases.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. hack/update-openapi-spec.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Script to fetch latest openapi spec.
    # Puts the updated spec at api/openapi-spec/
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    DISCOVERY_ROOT_DIR="${KUBE_ROOT}/api/discovery"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top