Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,863 for addDep (0.1 sec)

  1. pkg/scheduler/internal/queue/events.go

    	PodUpdate = "PodUpdate"
    )
    
    var (
    	// AssignedPodAdd is the event when a pod is added that causes pods with matching affinity terms
    	// to be more schedulable.
    	AssignedPodAdd = framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.Add, Label: "AssignedPodAdd"}
    	// NodeAdd is the event when a new node is added to the cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. releasenotes/notes/authz-ext-authz.yaml

      - **Added** the `timeout` field to configure the timeout (default is 10m) between the ext_authz filter and the external service.
      - **Added** the `include_additional_headers_in_check` field to send additional headers to the external service.
      - **Added** the `include_request_body_in_check` field to send the body to the external service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 29 06:43:43 UTC 2021
    - 1K bytes
    - Viewed (0)
  3. src/fmt/errors_test.go

    		wantText:   "inner error",
    		wantUnwrap: wrapped,
    	}, {
    		err:        fmt.Errorf("added context: %w", wrapped),
    		wantText:   "added context: inner error",
    		wantUnwrap: wrapped,
    	}, {
    		err:        fmt.Errorf("%w with added context", wrapped),
    		wantText:   "inner error with added context",
    		wantUnwrap: wrapped,
    	}, {
    		err:        fmt.Errorf("%s %w %v", "prefix", wrapped, "suffix"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 18:40:40 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. bin/diff_yaml.py

        q1 = {by_resource_name(res): res for res in j1 if res is not None}
    
        added, removed, common = keydiff(q0.keys(), q1.keys())
    
        changed = 0
        for k in sorted(common):
            if q0[k] != q1[k]:
                changed += 1
    
        print("## +++ ", args.new)
        print("## --- ", args.orig)
        print("## Added:", len(added))
        print("## Removed:", len(removed))
        print("## Updated:", changed)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 03 16:14:57 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ComponentMetadataHandler.java

         * </ul>
         *
         * @param ruleSource the rule source object to be added
         * @return this
         */
        ComponentMetadataHandler all(Object ruleSource);
    
        /**
         * Adds a class based rule that may modify the metadata of any resolved software component.
         *
         * @param rule the rule to be added
         * @return this
         *
         * @since 4.9
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/http.yaml.golden

      hosts:
      - first.domain.example
      http:
      - headers:
          request:
            add:
              my-added-header: added-value
            remove:
            - my-removed-header
          response:
            add:
              my-added-resp-header: added-resp-value
            remove:
            - my-removed-header
        match:
        - headers:
            my-header:
              exact: some-value
          uri:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. pkg/kube/watcher/configmapwatcher/configmapwatcher_test.go

    	cm1 := makeConfigMap(configMapName, "2")
    	cm2 := makeConfigMap("not-watched", "1")
    	steps := []struct {
    		added        *v1.ConfigMap
    		updated      *v1.ConfigMap
    		deleted      *v1.ConfigMap
    		expectCalled bool
    		expectCM     *v1.ConfigMap
    	}{
    		{added: cm2},
    		{added: cm, expectCalled: true, expectCM: cm},
    		{updated: cm},
    		{updated: cm1, expectCalled: true, expectCM: cm1},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

     * that every {@code Runnable} that is {@linkplain #add added} will be executed after {@link
     * #execute()} is called. Any {@code Runnable} added after the call to {@code execute} is still
     * guaranteed to execute. There is no guarantee, however, that listeners will be executed in the
     * order that they are added.
     *
     * <p>Exceptions thrown by a listener will be propagated up to the executor. Any exception thrown
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. releasenotes/notes/42852.yaml

    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 26 14:42:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/schema-extra-example.md

    Before OpenAPI 3.1.0, OpenAPI used an older and modified version of **JSON Schema**.
    
    JSON Schema didn't have `examples`, so OpenAPI added it's own `example` field to its own modified version.
    
    OpenAPI also added `example` and `examples` fields to other parts of the specification:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top