Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for idempotency (0.26 sec)

  1. cmd/kubeadm/app/util/apiclient/idempotency.go

    Lubomir I. Ivanov <******@****.***> 1707839730 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. src/cmd/gofmt/long_test.go

    	// the first and 2nd result should be identical
    	if !bytes.Equal(b1.Bytes(), b2.Bytes()) {
    		// A known instance of gofmt not being idempotent
    		// (see Issue #24472)
    		if strings.HasSuffix(filename, "issue22662.go") {
    			t.Log("known gofmt idempotency bug (Issue #24472)")
    			return
    		}
    		t.Errorf("gofmt %s not idempotent", filename)
    	}
    }
    
    func testFiles(t *testing.T, filenames <-chan string, done chan<- int) {
    	b1 := new(bytes.Buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 20:27:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. pkg/volume/downwardapi/downwardapi.go

    	klog.V(3).Infof("Setting up a downwardAPI volume %v for pod %v/%v at %v", b.volName, b.pod.Namespace, b.pod.Name, dir)
    	// Wrap EmptyDir. Here we rely on the idempotency of the wrapped plugin to avoid repeatedly mounting
    	wrapped, err := b.plugin.host.NewWrapperMounter(b.volName, wrappedVolumeSpec(), b.pod, *b.opts)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. pilot/pkg/xds/cds_test.go

    					names.Insert(n.GetExact())
    				}
    				assert.Equal(t, sets.SortedList(names), sets.SortedList(sets.New(sans...)))
    			}
    			// Run multiple assertions to verify idempotency; previous versions had issues here.
    			for i := 0; i < 2; i++ {
    				clusters := s.Clusters(s.SetupProxy(&model.Proxy{ConfigNamespace: "test"}))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. pkg/kube/inject/inject_test.go

    			if actual != tc.want {
    				t.Fatalf("Unexpected result.\nExpected:\n%v\nActual:\n%v", tc.want, actual)
    			}
    			t.Run("idempotency", func(t *testing.T) {
    				actual := appendMultusNetwork(actual, "istio-cni")
    				if actual != tc.want {
    					t.Fatalf("Function is not idempotent.\nExpected:\n%v\nActual:\n%v", tc.want, actual)
    				}
    			})
    		})
    	}
    }
    
    func Test_updateClusterEnvs(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. src/net/http/request.go

    		case "GET", "HEAD", "OPTIONS", "TRACE":
    			return true
    		}
    		// The Idempotency-Key, while non-standard, is widely used to
    		// mean a POST or other request is idempotent. See
    		// https://golang.org/issue/19943#issuecomment-421092421
    		if r.Header.has("Idempotency-Key") || r.Header.has("X-Idempotency-Key") {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "generation": {
                "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

                "type": "string"
              },
              "generation": {
                "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  9. src/math/big/float_test.go

    			toBinary(r1),
    			toBinary(r),
    		)
    		return
    	}
    
    	// h and f should be the same
    	// (repeated rounding should be idempotent)
    	h := new(Float).SetMode(mode).SetPrec(prec).Set(f)
    	if !alike(h, f) {
    		t.Errorf("round %s (%d bits, %s) not idempotent: got %s and %s; want %s",
    			toBinary(x), prec, mode,
    			toBinary(h.int64()),
    			toBinary(r1),
    			toBinary(r),
    		)
    		return
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  10. src/text/scanner/scanner.go

    	}
    
    	// part of the token text was saved in tokBuf: save the rest in
    	// tokBuf as well and return its content
    	s.tokBuf.Write(s.srcBuf[s.tokPos:s.tokEnd])
    	s.tokPos = s.tokEnd // ensure idempotency of TokenText() call
    	return s.tokBuf.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top