Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for beforeSend (0.18 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/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)
  3. 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)
  4. cmd/kubeadm/app/cmd/upgrade/apply.go

    		fmt.Println("[upgrade/prepull] This might take a minute or two, depending on the speed of your internet connection")
    		fmt.Println("[upgrade/prepull] You can also perform this action beforehand using 'kubeadm config images pull'")
    		if err := preflight.RunPullImagesCheck(utilsexec.New(), initCfg, sets.New(upgradeCfg.Apply.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
    - 11.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/etcd/local.go

    // for an additional etcd member that is joining an existing local/stacked etcd cluster.
    // Other members of the etcd cluster will be notified of the joining node in beforehand as well.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  6. src/crypto/rsa/pkcs1v15.go

    // is copied into key. Otherwise, key is unchanged. These alternatives occur in
    // constant time. It is intended that the user of this function generate a
    // random session key beforehand and continue the protocol with the resulting
    // value.
    //
    // Note that if the session key is too small then it may be possible for an
    // attacker to brute-force it. If they can do that then they can learn whether a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. pkg/volume/fc/fc.go

    }
    
    func (plugin *fcPlugin) GetVolumeName(spec *volume.Spec) (string, error) {
    	volumeSource, _, err := getVolumeSource(spec)
    	if err != nil {
    		return "", err
    	}
    
    	// API server validates these parameters beforehand but attach/detach
    	// controller creates volumespec without validation. They may be nil
    	// or zero length. We should check again to avoid unexpected conditions.
    	if len(volumeSource.TargetWWNs) != 0 && volumeSource.Lun != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

            @Override
            protected Value<? extends Set<K>> calculateOwnValue(ValueConsumer consumer) {
                try (EvaluationContext.ScopeContext context = DefaultMapProperty.this.openScope()) {
                    beforeRead(context, consumer);
                    return getSupplier(context).calculateKeys(consumer);
                }
            }
        }
    
        private class NoValueSupplier implements MapSupplier<K, V> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    |`GRADLE_HOME`
    |Stored in a `gradle.properties` file in the `<<sec:gradle_environment_variables,GRADLE_HOME>>`, the optional Gradle installation directory.
    |===
    
    NOTE: The location of the `GRADLE_USER_HOME` may have been changed beforehand via the `-Dgradle.user.home` system property passed on the command line.
    
    === Gradle properties reference
    
    For reference, the following properties are common Gradle properties:
    
    `org.gradle.caching=(true,false)`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. pilot/pkg/autoregistration/controller.go

    // updates.
    //
    // If connecting proxy represents a workload that is not using auto-registration,
    // the WorkloadEntry resource is expected to exist beforehand. Otherwise, no special
    // processing will be initiated, e.g. health status updates will be ignored.
    func (c *Controller) OnConnect(conn connection) error {
    	if c == nil {
    		return nil
    	}
    	proxy := conn.Proxy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top