Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,786 for actioned (0.22 sec)

  1. pkg/controller/deployment/deployment_controller_test.go

    			continue
    		}
    	}
    
    	if len(f.actions) > len(actions) {
    		f.t.Errorf("%d additional expected actions:%+v", len(f.actions)-len(actions), f.actions[len(actions):])
    	}
    }
    
    func filterInformerActions(actions []core.Action) []core.Action {
    	ret := []core.Action{}
    	for _, action := range actions {
    		if len(action.GetNamespace()) == 0 &&
    			(action.Matches("list", "pods") ||
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. pkg/controller/deployment/rolling_test.go

    			if scaled || len(fake.Actions()) > 0 {
    				t.Errorf("unexpected scaling: %v", fake.Actions())
    			}
    			continue
    		}
    		if test.scaleExpected && !scaled {
    			t.Errorf("expected scaling to occur")
    			continue
    		}
    		if len(fake.Actions()) != 1 {
    			t.Errorf("expected 1 action during scale, got: %v", fake.Actions())
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle.go

    	// ActionCount must be the last action and shouldn't be used as a regular action.
    	ActionCount
    )
    
    // DeleteRestored - Returns true if action demands delete on restored objects
    func (a Action) DeleteRestored() bool {
    	return a == DeleteRestoredAction || a == DeleteRestoredVersionAction
    }
    
    // DeleteVersioned - Returns true if action demands delete on a versioned object
    func (a Action) DeleteVersioned() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/DefaultVisualStudioSolution.java

                this.location = location;
            }
    
            @Override
            public void withContent(Action<? super TextProvider> action) {
                actions.add(action);
            }
    
            @Nested
            public List<Action<? super TextProvider>> getTextActions() {
                return actions;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

         * @param action The action to execute for each element when finalized.
         */
        <S> void whenElementFinalized(Class<S> type, Action<? super S> action);
    
        /**
         * Registers an action to execute to configure each element in the collection. The action is only executed for those elements that are required. Fails if any element has already been finalized.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. security/pkg/k8s/configutil_test.go

    					t.Errorf("expecting error %s but got no error; actions: %+v", tc.expectedErr, fake.Actions())
    				} else if err := checkActions(fake.Actions(), tc.expectedActions); err != nil {
    					t.Error(err)
    				}
    			}
    		})
    	}
    }
    
    func createConfigMapDisabledClient(client *fake.Clientset) {
    	client.PrependReactor("get", "configmaps", func(action ktesting.Action) (bool, runtime.Object, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifestMergeSpec.java

            }
    
            for (DefaultManifestMergeDetails mergeDetails : mergeDetailsSet) {
                for (Action<? super ManifestMergeDetails> action : actions) {
                    action.execute(mergeDetails);
                }
                addMergeDetailToManifest(section, mergedManifest, mergeDetails);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/internal/DefaultBinaryCollection.java

            private final Class<S> type;
            private final Action<? super S> action;
    
            TypeFilteringAction(Class<S> type, Action<? super S> action) {
                this.type = type;
                this.action = action;
            }
    
            @Override
            public void execute(T t) {
                if (type.isInstance(t)) {
                    action.execute(type.cast(t));
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. .github/workflows/ci.yml

        branches:
          - master
      pull_request:
        branches:
          - master
    
    permissions:
      contents: read
    
    jobs:
      test:
        permissions:
          actions: write  # for styfle/cancel-workflow-action to cancel/stop running workflows
          contents: read  # for actions/checkout to fetch code
        name: "${{ matrix.root-pom }} on JDK ${{ matrix.java }} on ${{ matrix.os }}"
        strategy:
          matrix:
            os: [ ubuntu-latest ]
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/UnparameterizedBuildController.java

        }
    
        @Override
        public <T> List<T> run(Collection<? extends BuildAction<? extends T>> actions) {
            List<T> results = new ArrayList<T>(actions.size());
            List<Throwable> failures = new ArrayList<Throwable>();
            for (BuildAction<? extends T> action : actions) {
                try {
                    T result = action.execute(this);
                    results.add(result);
                } catch (Throwable t) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 08:15:25 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top