- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 2,899 for Action (0.07 sec)
-
.github/workflows/depsreview.yaml
on: [pull_request] permissions: contents: read jobs: dependency-review: runs-on: ubuntu-latest steps: - name: 'Checkout Repository' uses: actions/checkout@v4 - name: 'Dependency Review'
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 28 23:44:49 UTC 2024 - 296 bytes - Viewed (0) -
tensorflow/build_cleaner_spec.textproto
# proto-file: devtools/build_cleaner/proto/actions.proto # proto-message: ActionSpecs # Python rules should not have more than one source file. action_spec { action: CHECK_FILE_COUNT file_count_params { rule_selector { rule_kind_regex: "^.*py(type)?(_strict)?_(binary|library|test).*$" generator_function_regex: "^(?!boq_header)$" } max_source_count: 1 }
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Nov 29 18:16:42 UTC 2023 - 387 bytes - Viewed (0) -
src/main/java/jcifs/FileNotifyInformation.java
/** * */ public static final int FILE_ACTION_REMOVED_BY_DELETE = 0x00000009; /** * @return the action triggering this entry (FILE_ACTION_*) */ int getAction (); /** * @return the file name affected by the action */ String getFileName ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.9K bytes - Viewed (0) -
.github/workflows/shfmt.yml
on: pull_request: branches: - master permissions: contents: read jobs: build: name: runner / shfmt runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: luizm/action-sh-checker@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SHFMT_OPTS: "-s" with:
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 22 23:07:14 UTC 2024 - 443 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java
import org.codelibs.fess.suggest.request.Request; import org.opensearch.action.search.SearchRequestBuilder; import org.opensearch.action.search.SearchResponse; import org.opensearch.client.Client; import org.opensearch.common.lucene.search.function.CombineFunction; import org.opensearch.core.action.ActionListener; import org.opensearch.index.query.BoolQueryBuilder; import org.opensearch.index.query.QueryBuilder;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
} } public static OptionalEntity<CharMappingItem> createCharMappingItem(final FessBaseAction action, final CreateForm form, final VaErrorHook hook) { return getEntity(form).map(entity -> { final String[] newInputs = splitLine(form.inputs); validateMappingString(action, newInputs, "inputs", hook); entity.setNewInputs(newInputs);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 19.5K bytes - Viewed (0) -
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: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 19.4K bytes - Viewed (0) -
build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
Pattern commandLineArgsPattern = Pattern.compile(generateLeakingProcessKillPattern(rootProjectDir.getPath())); forEachJavaProcess(ps(), commandLineArgsPattern, action); } private static void forEachJavaProcess(List<String> psOutput, Pattern commandLineArgsPattern, BiConsumer<String, String> action) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.6K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/AbstractBuildScanInfoCollectingService.kt
} val taskPath = event.descriptor.taskPath if (shouldInclude(taskPath)) { action(taskPath, event.result) } } protected open fun shouldInclude(taskPath: String): Boolean = parameters.monitoredTaskPaths.get().contains(taskPath) abstract fun action(taskPath: String, taskResult: TaskOperationResult)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 11 07:01:27 UTC 2022 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/eventspy/internal/EventSpyDispatcher.java
} catch (Exception | LinkageError e) { logError("close", e, eventSpy); } } } private void logError(String action, Throwable e, EventSpy spy) { String msg = "Failed to " + action + " spy " + spy.getClass().getName() + ": " + e.getMessage(); if (logger.isDebugEnabled()) { logger.warn(msg, e); } else { logger.warn(msg);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.3K bytes - Viewed (0)