Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for idempotent (0.34 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    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: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/tests/split_into_island_per_op.mlir

    // RUN: tf-opt -tf-executor-split-into-island-per-op %s --split-input-file --verify-diagnostics | FileCheck %s
    
    // All tests also test for idempotence.
    
    // Test that functions must have a single graph op in their body, otherwise, the
    // pass will signal failure.
    
    // expected-error@+1 {{expected function to contain only a graph_op}}
    func.func @multiple_func_body_ops() {
      tf_executor.graph {
        tf_executor.island {
          "tf.NoOp"() : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/cpu_manager.go

    				}
    				m.Unlock()
    				continue
    			}
    
    			// Once we make it here we know we have a running container.
    			// Idempotently add it to the containerMap incase it is missing.
    			// This can happen after a kubelet restart, for example.
    			m.containerMap.Add(string(pod.UID), container.Name, containerID)
    			m.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (2)
Back to top