Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Suggestion (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		t.Errorf("unexpected pod generation: %q", updatedPod2.Generation)
    	}
    
    	// Third, update using a current version as the suggestion.
    	// Return an error and make sure that SimpleUpdate is NOT called a second time,
    	// since the live lookup shows the suggestion was already up to date.
    	attempts := 0
    	updatedPod3 := &example.Pod{}
    	err = store.GuaranteedUpdate(ctx, key, updatedPod3, false, nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func (c *Cacher) Delete(
    	ctx context.Context, key string, out runtime.Object, preconditions *storage.Preconditions,
    	validateDeletion storage.ValidateObjectFunc, _ runtime.Object) error {
    	// Ignore the suggestion and try to pass down the current version of the object
    	// read from cache.
    	if elem, exists, err := c.watchCache.GetByKey(key); err != nil {
    		klog.Errorf("GetByKey returned error: %v", err)
    	} else if exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    	if !labels.HasCanonicalServiceName(pod.Labels) {
    		fmt.Fprintf(writer, "Suggestion: add required service name label for Istio telemetry. "+
    			"See %s.\n", url.DeploymentRequirements)
    	}
    	if !labels.HasCanonicalServiceRevision(pod.Labels) {
    		fmt.Fprintf(writer, "Suggestion: add required service revision label for Istio telemetry. "+
    			"See %s.\n", url.DeploymentRequirements)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. src/go/printer/nodes.go

    	if depth < 1 {
    		depth = 1
    	}
    	return depth
    }
    
    // Format the binary expression: decide the cutoff and then format.
    // Let's call depth == 1 Normal mode, and depth > 1 Compact mode.
    // (Algorithm suggestion by Russ Cox.)
    //
    // The precedences are:
    //
    //	5             *  /  %  <<  >>  &  &^
    //	4             +  -  |  ^
    //	3             ==  !=  <  <=  >  >=
    //	2             &&
    //	1             ||
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    === Automatic build import vs. automatic reloading of script dependencies
    
    Both IntelliJ IDEA and Android Studio — which is derived from IntelliJ IDEA — will detect when you make changes to your build logic and offer two suggestions:
    
     1. Import the whole build again
    +
    image::intellij-build-import-popup.png[IntelliJ IDEA, width=300]
    +
    image::android-studio-build-sync-popup.png[IntelliJ IDEA]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top