Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,454 for actioned (0.19 sec)

  1. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantMapping.java

        public void addAction(Action<? super ConfigurationVariantDetails> action) {
            this.action = Actions.composite(this.action, action);
        }
    
        public void collectVariants(Consumer<UsageContext> collector) {
            outgoingConfiguration.runDependencyActions();
            outgoingConfiguration.markAsObserved();
            String outgoingConfigurationName = outgoingConfiguration.getName();
    
            if (!outgoingConfiguration.isTransitive()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/AbstractNamedDomainObjectContainer.java

        @Override
        public NamedDomainObjectProvider<T> register(String name, Action<? super T> configurationAction) throws InvalidUserDataException {
            assertMutable("register(String, Action)");
            return createDomainObjectProvider(name, configurationAction);
        }
    
        protected NamedDomainObjectProvider<T> createDomainObjectProvider(String name, @Nullable Action<? super T> configurationAction) {
            assertCanAdd(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:07 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  3. .github/workflows/notify-translations.yml

            required: false
            default: 'false'
    
    jobs:
      notify-translations:
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          # Allow debugging with tmate
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 07:19:41 UTC 2023
    - 1022 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

                        }
                        Object action = actualArgs.get(Task.TASK_ACTION);
                        if (action instanceof Action) {
                            Action<? super Task> taskAction = Cast.uncheckedCast(action);
                            task.doFirst(taskAction);
                        } else if (action != null) {
                            Closure<?> closure = (Closure<?>) action;
                            task.doFirst(closure);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DefaultWorkerExecutor.java

            return noIsolation(Actions.doNothing());
        }
    
        @Override
        public WorkQueue classLoaderIsolation() {
            return classLoaderIsolation(Actions.doNothing());
        }
    
        @Override
        public WorkQueue processIsolation() {
            return processIsolation(Actions.doNothing());
        }
    
        @Override
        public WorkQueue noIsolation(Action<? super WorkerSpec> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:07 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    var map_SelfSubjectRulesReview = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. .github/workflows/submit-github-dependency-graph.yml

        permissions:
          contents: write
        runs-on: ubuntu-latest
        steps:
        - uses: actions/checkout@v4
        - uses: actions/setup-java@v4
          with:
            distribution: temurin
            java-version: 11
        - name: Setup Gradle
          uses: gradle/actions/dependency-submission@v3
          with:
            # Action runs a custom dependencies task that fails with config-cache on Gradle 8.7 (works with 8.6)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/component/AdhocComponentWithVariants.java

         * @param action action executed to configure the variant prior to publishing
         */
        void addVariantsFromConfiguration(Configuration outgoingConfiguration, Action<? super ConfigurationVariantDetails> action);
    
        /**
         * Further configure previously declared variants.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 19 14:20:53 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/CopySpecInternal.java

        /**
         * Returns whether the spec, or any of its children have custom copy actions.
         */
        boolean hasCustomActions();
    
        void appendCachingSafeCopyAction(Action<? super FileCopyDetails> action);
    
        @Override
        PatternFilterable getPreserve();
    
        @Override
        CopySpecInternal preserve(Action<? super PatternFilterable> action);
    
        @Nullable
        File getDestinationDir();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    func logDryRunAction(action core.Action, w io.Writer, marshalFunc MarshalFunc) {
    
    	group := action.GetResource().Group
    	if len(group) == 0 {
    		group = "core"
    	}
    	fmt.Fprintf(w, "[dryrun] Would perform action %s on resource %q in API group \"%s/%s\"\n", strings.ToUpper(action.GetVerb()), action.GetResource().Resource, group, action.GetResource().Version)
    
    	namedAction, ok := action.(actionWithName)
    	if ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
Back to top