Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for beforeSend (0.14 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

         */
        protected void beforeRead(EvaluationContext.ScopeContext context, ValueConsumer consumer) {
            beforeRead(context, producer, consumer);
        }
    
        protected void beforeReadNoProducer(EvaluationContext.ScopeContext context, ValueConsumer consumer) {
            beforeRead(context, null, consumer);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/PropertyHost.java

        PropertyHost NO_OP = producer -> null;
    
        /**
         * Returns null if the host allows reads of its state, or a string that explains why reads are not allowed.
         */
        @Nullable
        String beforeRead(@Nullable ModelObject producer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            then:
            1 * host.beforeRead(null) >> "<reason>"
    
            and:
            def e = thrown(IllegalStateException)
            e.message == "Cannot query the value of this property because <reason>."
    
            when:
            property.attachOwner(owner(), displayName("<display-name>"))
            property.get()
    
            then:
            1 * host.beforeRead(null) >> "<reason>"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

            }
    
            @Override
            public boolean shouldFinalize(Describable displayName, @Nullable ModelObject producer) {
                if (disallowUnsafeRead) {
                    String reason = host.beforeRead(producer);
                    if (reason != null) {
                        throw new IllegalStateException(cannotFinalizeValueOf(displayName, reason));
                    }
                }
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/join/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(), initCfg, j.IgnorePreflightErrors()); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/extra-models.md

    This is useful if you don't know the valid field/attribute names (that would be needed for a Pydantic model) beforehand.
    
    In this case, you can use `typing.Dict` (or just `dict` in Python 3.9 and above):
    
    === "Python 3.9+"
    
        ```Python hl_lines="6"
        {!> ../../../docs_src/extra_models/tutorial005_py39.py!}
        ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/podcgroupns.go

    // nolint: lll
    var cgroupREs = []*regexp.Regexp{
    	// the regex used to parse out the pod UID and container ID from a
    	// cgroup name. It assumes that any ".scope" suffix has been trimmed off
    	// beforehand.  CAUTION: we used to verify that the pod and container id were
    	// descendants of a kubepods directory, however, as of Kubernetes 1.21, cgroups
    	// namespaces are in use and therefore we can no longer discern if that is the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top