Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,606 for erator (4.96 sec)

  1. plugin/pkg/admission/podtolerationrestriction/admission_test.go

    			namespaceTolerations:      []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue", Effect: "NoSchedule"}},
    			podTolerations:            []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue1", Effect: "NoSchedule"}},
    			mergedTolerations:         []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue", Effect: "NoSchedule"}, {Key: "testKey", Operator: "Equal", Value: "testValue1", Effect: "NoSchedule"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            iterator.add('d')
    
            then:
            iterator.next() == 'b'
            list == ['a', 'd', 'b', 'c']
        }
    
        def "fires event when element added using ListIterator"() {
            given:
            Action<String> action = Mock()
            list.addAll(['a', 'b', 'c'])
            list.whenObjectAdded(action)
    
            when:
            def iterator = list.listIterator()
            iterator.next()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/collection/MultiIterator.java

    package org.codelibs.core.collection;
    
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.util.Iterator;
    import java.util.NoSuchElementException;
    
    import org.codelibs.core.exception.ClUnsupportedOperationException;
    
    /**
     * 複数の{@link Iterator}を一つの{@link Iterator}のように反復するための{@link Iterator}です。
     * <p>
     * 次のように使います.
     * </p>
     *
     * <pre>
     * import static org.codelibs.core.collection.MultiIterator.*;
     *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/collections/FilteredIndexedElementSource.java

        private static class FilteredListIterator<T> implements ListIterator<T> {
            private final Iterator<T> iterator;
            private int nextIndex;
    
            FilteredListIterator(Iterator<T> iterator) {
                this.iterator = iterator;
            }
    
            @Override
            public boolean hasNext() {
                return iterator.hasNext();
            }
    
            @Override
            public boolean hasPrevious() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 11 01:28:48 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. operator/cmd/mesh/operator_test.go

    func TestOperatorDump(t *testing.T) {
    	goldenFilepath := filepath.Join(env.IstioSrc, "operator/cmd/mesh/testdata/operator/output/operator-dump.yaml")
    
    	odArgs := &operatorDumpArgs{
    		common: operatorCommonArgs{
    			hub:               "foo.io/istio",
    			tag:               "1.2.3",
    			imagePullSecrets:  []string{"imagePullSecret1,imagePullSecret2"},
    			operatorNamespace: "operator-test-namespace",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelReportIntegrationTest.groovy

                      | Creator: 	ComponentBasePlugin.PluginRules#components(ComponentSpecContainer)
                      | Rules:
                         ⤷ components { ... } @ build.gradle line 88, column 5
                    + myComponent
                          | Type:   	UnmanagedComponent
                          | Creator: 	myComponent(UnmanagedComponent) { ... } @ build.gradle line 89, column 9
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  7. tests/integration/operator/switch_cr_test.go

    			// test operator remove command
    			scopes.Framework.Infof("checking operator remove command for default revision")
    			removeCmd := []string{
    				"operator", "remove",
    				"--skip-confirmation",
    				"--revision", "default",
    			}
    			istioCtl.InvokeOrFail(t, removeCmd)
    
    			retry.UntilSuccessOrFail(t, func() error {
    				// check the revision of operator which should to be removed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/value_iostream.h

      std::ostream& operator()(const ListPtr& x) {
        OutList(o_, x->begin(), x->end(), '[', ']');
        return o_;
      }
      std::ostream& operator()(const TuplePtr& x) {
        OutList(o_, x->begin(), x->end(), '(', ')');
        return o_;
      }
      std::ostream& operator()(const DictPtr& x) {
        o_ << *x;
        return o_;
      }
      std::ostream& operator()(const Capsule& x) {
        o_ << "Capsule(" << x.get() << ")";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

                    ids(type: 'java.util.List<java.lang.Integer>', creator: 'container(Container) { ... } @ build.gradle line 12, column 5', nodeValue: '[]')
                    labels(type: 'java.util.List<java.lang.String>', creator: 'container(Container) { ... } @ build.gradle line 12, column 5', nodeValue: "[bug, blocker]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/toleration.go

    // if the two tolerations have same <key,effect,operator,value> combination, regard as they match.
    // TODO: uniqueness check for tolerations in api validations.
    func (t *Toleration) MatchToleration(tolerationToMatch *Toleration) bool {
    	return t.Key == tolerationToMatch.Key &&
    		t.Effect == tolerationToMatch.Effect &&
    		t.Operator == tolerationToMatch.Operator &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top