Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 191 for idempotent (0.57 sec)

  1. src/cmd/gofmt/gofmt_test.go

    			if strings.HasSuffix(in, ".input") {
    				out = in[:len(in)-len(".input")] + ".golden"
    			}
    			runTest(t, in, out)
    			if in != out && !t.Failed() {
    				// Check idempotence.
    				runTest(t, out, out)
    			}
    		})
    	}
    }
    
    // Test case for issue 3961.
    func TestCRLF(t *testing.T) {
    	const input = "testdata/crlf.input"   // must contain CR/LF's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:22:49 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.20.md

    - For CSI drivers, kubelet no longer creates the target_path for NodePublishVolume in accordance with the CSI spec. Kubelet also no longer checks if staging and target paths are mounts or corrupted. CSI drivers need to be idempotent and do any necessary mount verification. ([#88759](https://github.com/kubernetes/kubernetes/pull/88759), [@andyzhangx](https://github.com/andyzhangx)) [SIG Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/net/http/requestwrite_test.go

    				"X-Idempotency-Key": nil,
    			},
    		},
    
    		WantWrite: "GET /foo HTTP/1.1\r\n" +
    			"Host: \r\n" +
    			"User-Agent: Go-http-client/1.1\r\n" +
    			"X-Foo: X-Bar\r\n\r\n",
    	},
    	24: {
    		Req: Request{
    			Method: "GET",
    			URL:    mustParseURL("/foo"),
    			Header: Header{
    				"X-Foo":             []string{"X-Bar"},
    				"X-Idempotency-Key": []string{},
    			},
    		},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 23.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/capmanagers_test.go

    		t.Fatalf("failed to do no-op update to object: %v", err)
    	}
    
    	if after := f.ManagedFields(); !apiequality.Semantic.DeepEqual(before, after) {
    		t.Fatalf("exected idempotence, but managedFields changed:\nbefore: %v\n after: %v", mustMarshal(before), mustMarshal(after))
    	}
    }
    
    // expectManagesField ensures that manager m currently manages field path p.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authentication.k8s.io__v1_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
    - 41.5K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    evaluation.\n\nIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  10. src/text/scanner/scanner_test.go

    	}
    	stext := s.TokenText()
    	if stext != text {
    		t.Errorf("text = %q, want %q", stext, text)
    	} else {
    		// check idempotency of TokenText() call
    		stext = s.TokenText()
    		if stext != text {
    			t.Errorf("text = %q, want %q (idempotency check)", stext, text)
    		}
    	}
    }
    
    func checkTokErr(t *testing.T, s *Scanner, line int, want rune, text string) {
    	prevCount := s.ErrorCount
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
Back to top