Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,457 for actioned (0.14 sec)

  1. src/cmd/go/internal/cache/cache.go

    	"strconv"
    	"strings"
    	"time"
    
    	"cmd/go/internal/lockedfile"
    	"cmd/go/internal/mmap"
    )
    
    // An ActionID is a cache action key, the hash of a complete description of a
    // repeatable computation (command line, environment variables,
    // input file contents, executable contents).
    type ActionID [HashSize]byte
    
    // An OutputID is a cache output key, the hash of an output of a computation.
    type OutputID [HashSize]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinkerTest.groovy

            linker.execute(spec)
    
            then:
            1 * operationLogger.getLogLocation() >> LOG_LOCATION
            1 * buildOperationExecutor.runAll(commandLineTool, _) >> { worker, action -> action.execute(queue) }
            1 * invocationContext.getArgAction() >> Actions.doNothing()
            1 * invocationContext.createInvocation("linking lib", outputFile.parentFile, expectedArgs, operationLogger) >> invocation
            1 * queue.add(invocation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

                        actions.add(action);
                        if (!(action instanceof ContinuingAction)) {
                            break;
                        }
                    }
                }
    
                if (!actions.isEmpty()) {
                    return Actions.composite(actions);
                }
    
                throw new UnsupportedOperationException("No action factory for specified command-line arguments.");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/invocation/GradleLifecycle.java

        /**
         * Adds an {@link IsolatedAction isolated action} to be called immediately after a project is evaluated.
         *
         * @param action The action to execute.
         * @see IsolatedAction for the requirements to isolated actions
         * @since 8.8
         */
        @Incubating
        void afterProject(IsolatedAction<? super Project> action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 21:28:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionsSpec.groovy

            def copy = substitutions.copy()
    
            when:
            copy.all(Mock(Action))
    
            then:
            0 * validator.validateMutation(_)
        }
    
        def "registering an all rule toggles the hasRule flag"() {
            given:
            def action = Mock(Action)
    
            when:
            substitutions.all(action)
    
            then:
            substitutions.rulesMayAddProjectDependency()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/model/internal/core/DomainObjectCollectionBackedModelMap.java

        public void create(String name) {
            create(name, elementType, Actions.doNothing());
        }
    
        @Override
        public void create(String name, Action<? super T> configAction) {
            create(name, elementType, configAction);
        }
    
        @Override
        public <S extends T> void create(String name, Class<S> type) {
            create(name, type, Actions.doNothing());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmTestSuite.java

            JvmTestToolchain<T> toolchain = toolchainFactory.getOrCreate(toolchainType);
            getTestToolchain().set(toolchain);
            action.execute(toolchain.getParameters());
        }
    
        @Override
        public void dependencies(Action<? super JvmComponentDependencies> action) {
            action.execute(getDependencies());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/DefaultVcsMappingsStore.java

            }
            return null;
        }
    
        private void applyTo(VcsMappingInternal mapping) {
            Actions.composite(rootVcsMappings).execute(mapping);
            if (!mapping.hasRepository()) {
                Set<VersionControlSpec> resolutions = new HashSet<>();
                for (Gradle gradle : vcsMappings.keySet()) {
                    Actions.composite(vcsMappings.get(gradle)).execute(mapping);
                    if (mapping.hasRepository()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. 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)
  10. pkg/kubelet/container/sync_result.go

    )
    
    // SyncAction indicates different kind of actions in SyncPod() and KillPod(). Now there are only actions
    // about start/kill container and setup/teardown network.
    type SyncAction string
    
    const (
    	// StartContainer action
    	StartContainer SyncAction = "StartContainer"
    	// KillContainer action
    	KillContainer SyncAction = "KillContainer"
    	// SetupNetwork action
    	SetupNetwork SyncAction = "SetupNetwork"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 19 15:48:08 UTC 2020
    - 4.6K bytes
    - Viewed (0)
Back to top