Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 60 for beforeSend (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectBackedPropertyHost.java

        private final ProjectInternal project;
    
        public ProjectBackedPropertyHost(ProjectInternal project) {
            this.project = project;
        }
    
        @Nullable
        @Override
        public String beforeRead(@Nullable ModelObject producer) {
            if (!project.getState().hasCompleted()) {
                return "configuration of " + project.getDisplayName() + " has not completed yet";
            } else if (producer != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 09 21:55:13 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/proxy_config.go

    	for _, pc := range p.namespaceToProxyConfigs[namespace] {
    		if pc.GetSelector() == nil {
    			// return the first match. this is consistent since
    			// we sort the resources by creation time beforehand.
    			return toMeshConfigProxyConfig(pc)
    		}
    	}
    	return nil
    }
    
    // mergedWorkloadConfig merges ProxyConfig resources matching the given namespace and labels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_wrapper_basics.adoc

    = Gradle Wrapper Basics
    
    The **recommended way to execute any Gradle build** is with the Gradle Wrapper.
    
    image::gradle-basic-2.png[]
    
    The _Wrapper_ script invokes a declared version of Gradle, downloading it beforehand if necessary.
    
    image::wrapper-workflow.png[]
    
    The Wrapper is available as a `gradlew` or `gradlew.bat` file.
    
    The Wrapper provides the following benefits:
    
    - Standardizes a project on a given Gradle version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/upgrade/node/preflight.go

    			fmt.Println("[preflight] This might take a minute or two, depending on the speed of your internet connection")
    			fmt.Println("[preflight] You can also perform this action beforehand using 'kubeadm config images pull'")
    			if err := preflight.RunPullImagesCheck(utilsexec.New(), initConfig, data.IgnorePreflightErrors()); err != nil {
    				return err
    			}
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/AbstractMultimapAsMapImplementsMapTest.java

       * of a call to {@code remove()}. Thus, the expectation doesn't hold that {@code map.remove(x)}
       * returns the same value which {@code map.get(x)} did immediately beforehand.
       */
      @Override
      public void testRemove() {
        final Map<String, Collection<Integer>> map;
        final String keyToRemove;
        try {
          map = makePopulatedMap();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/preflight.go

    	fmt.Println("[preflight] This might take a minute or two, depending on the speed of your internet connection")
    	fmt.Println("[preflight] You can also perform this action beforehand using 'kubeadm config images pull'")
    	return preflight.RunPullImagesCheck(utilsexec.New(), data.Cfg(), data.IgnorePreflightErrors())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            e.message == "Cannot query the value of <display> because <reason>."
    
            and:
            1 * host.beforeRead(null) >> "<reason>"
            0 * _
    
            when:
            def result = collection.files
    
            then:
            result == [file] as Set
    
            and:
            1 * host.beforeRead(null) >> null
            1 * fileResolver.resolve('a') >> file
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/additional-status-codes.md

    ## OpenAPI and API docs
    
    If you return additional status codes and responses directly, they won't be included in the OpenAPI schema (the API docs), because FastAPI doesn't have a way to know beforehand what you are going to return.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/resolver/MavenChainedWorkspaceReader.java

     * <p>
     * This class, while technically is not immutable, should be considered as such once set up. If not mutated, it is also
     * thread-safe. The mutation of this class instances should happen beforehand their use in session.
     */
    public class MavenChainedWorkspaceReader implements MavenWorkspaceReader {
    
        protected List<WorkspaceReader> readers;
        protected WorkspaceRepository repository;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top