Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 662 for actioned (0.3 sec)

  1. src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java

    import org.codelibs.fess.suggest.util.SuggestUtil;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken;
    import org.opensearch.action.admin.indices.exists.indices.IndicesExistsResponse;
    import org.opensearch.action.admin.indices.settings.get.GetSettingsResponse;
    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.client.Client;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutions.java

                    @Override
                    public void artifactSelection(Action<? super ArtifactSelectionDetails> action) {
                        ds.artifactSelection(action);
                    }
                });
            }
        }
    
        private abstract static class AbstractDependencySubstitutionAction implements Action<DependencySubstitution> {
            private final Supplier<Action<? super ArtifactSelectionDetails>> artifactSelectionAction;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  3. pkg/kubelet/util/manager/watch_based_manager_test.go

    	// This should trigger List and Watch actions eventually.
    	actionsFn := func() (bool, error) {
    		actions := fakeClient.Actions()
    		if len(actions) > 2 {
    			return false, fmt.Errorf("too many actions: %v", actions)
    		}
    		if len(actions) < 2 {
    			return false, nil
    		}
    		if actions[0].GetVerb() != "list" || actions[1].GetVerb() != "watch" {
    			return false, fmt.Errorf("unexpected actions: %v", actions)
    		}
    		return true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 10:05:43 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. src/text/template/doc.go

    	{{"output" | printf "%s" | printf "%q"}}
    		A longer chain.
    	{{with "output"}}{{printf "%q" .}}{{end}}
    		A with action using dot.
    	{{with $x := "output" | printf "%q"}}{{$x}}{{end}}
    		A with action that creates and uses a variable.
    	{{with $x := "output"}}{{printf "%q" $x}}{{end}}
    		A with action that uses the variable in another action.
    	{{with $x := "output"}}{{$x | printf "%q"}}{{end}}
    		The same, but pipelined.
    
    Functions
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractBehavior.java

    import org.dbflute.util.DfTypeUtil;
    import org.opensearch.action.DocWriteResponse.Result;
    import org.opensearch.action.admin.indices.refresh.RefreshResponse;
    import org.opensearch.action.bulk.BulkItemResponse;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.bulk.BulkResponse;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.delete.DeleteResponse;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractBehavior.java

    import org.dbflute.util.DfTypeUtil;
    import org.opensearch.action.DocWriteResponse.Result;
    import org.opensearch.action.admin.indices.refresh.RefreshResponse;
    import org.opensearch.action.bulk.BulkItemResponse;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.bulk.BulkResponse;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.delete.DeleteResponse;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/xml/XmlTransformer.java

        private final List<Action<? super XmlProvider>> actions = new ArrayList<Action<? super XmlProvider>>();
        private final List<Action<? super XmlProvider>> finalizers = Lists.newArrayListWithExpectedSize(2);
        private String indentation = "  ";
    
        public void addAction(Action<? super XmlProvider> provider) {
            actions.add(provider);
        }
    
        public void addFinalizer(Action<? super XmlProvider> provider) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:15:53 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/apis/authorization/types.go

    // SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace.
    // The returned list of actions may be incomplete depending on the server's authorization mode,
    // and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 10K bytes
    - Viewed (0)
Back to top