Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 372 for addAction (0.17 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/api/internal/PropertyListTransformer.java

        private final MutableActionSet<T> actions = new MutableActionSet<T>();
    
        /**
         * Adds an action to be executed when property lists are transformed.
         * @param action the action to add
         */
        public void addAction(Action<? super T> action) {
            actions.add(action);
        }
    
        /**
         * Transforms a property list object. This will modify the
         * original.
         * @param original the property list to transform
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 17:10:32 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantMapping.java

            this.outgoingConfiguration = outgoingConfiguration;
            this.action = action;
            this.objectFactory = objectFactory;
        }
    
        public void addAction(Action<? super ConfigurationVariantDetails> action) {
            this.action = Actions.composite(this.action, action);
        }
    
        public void collectVariants(Consumer<UsageContext> collector) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      sampleIDs.forEach(setSampleIndexLink);
    
      // Bind action to button with specified id.
      function addAction(id, action) {
        const btn = document.getElementById(id);
        if (btn != null) {
          btn.addEventListener('click', action);
          btn.addEventListener('touchstart', action);
        }
      }
    
      addAction('details', handleDetails);
      initConfigManager();
    
      search.addEventListener('input', handleSearch);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

        }
    
        @Override
        IvyModule withoutDefaultVariants() {
            variants.clear()
            return this
        }
    
        IvyFileModule withXml(Closure action) {
            transformer.addAction(action);
            return this
        }
    
        /**
         * Adds an additional artifact to this module.
         * @param options Can specify any of name, type, ext, classifier, conf
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

            options.addOption(Option.builder(Character.toString(VERSION))
                    .longOpt("version")
                    .desc("Display version information")
                    .build());
            options.addOption(Option.builder(Character.toString(QUIET))
                    .longOpt("quiet")
                    .desc("Quiet output - only show errors")
                    .build());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. src/runtime/sys_openbsd3.go

    // and we need to know whether to check 32 or 64 bits of the result.
    // (Some libc functions that return 32 bits put junk in the upper 32 bits of AX.)
    
    // golang.org/x/sys linknames syscall_syscall
    // (in addition to standard package syscall).
    // Do not remove or change the type signature.
    //
    //go:linkname syscall_syscall syscall.syscall
    //go:nosplit
    //go:cgo_unsafe_args
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/kotlin/Module.md

    # Package org.gradle.kotlin.dsl
    
    The `org.gradle.kotlin.dsl` package contains the Gradle Kotlin DSL public API.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 22:09:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/InspectsConfigurationReport.groovy

        }
    
        void doesNotHaveSecondaryVariantsLegend() {
            outputDoesNotContain("(*) Secondary variants are variants created via the Configuration#getOutgoing(): ConfigurationPublications API which also participate in selection, in addition to the configuration itself.")
        }
    
        void hasLegacyLegend() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    				if lister.Contains(notContains) != types.False {
    					t.Errorf("Expected Contains to return false for %v", notContains)
    				}
    			}
    
    			addition := UnstructuredToVal(tc.addition, tc.schema).(traits.Lister)
    			added := lister.Add(addition).Value()
    			if !reflect.DeepEqual(added, tc.expectAdded) {
    				t.Errorf("Expected Add to return %v but got %v", tc.expectAdded, added)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. releasenotes/notes/wasm-cache-with-tag-stripped-url.yaml

        This may increase the chance of cache hit (e.g., trying to find the same image with both of the tagged and digest URLs.)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 402 bytes
    - Viewed (0)
Back to top