Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for beforeSend (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			schemaGenerator: func(max *int64) *schema.Structural {
    				strType := withMaxLength(primitiveType("string", ""), max)
    				beforeLen := int64(2)
    				afterLen := int64(4)
    				objType := objectType(map[string]schema.Structural{
    					"str":    strType,
    					"before": withMaxLength(primitiveType("string", ""), &beforeLen),
    					"after":  withMaxLength(primitiveType("string", ""), &afterLen),
    				})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/testing/fuzz.go

    // When fuzzing, F.Fuzz does not return until a problem is found, time runs out
    // (set with -fuzztime), or the test process is interrupted by a signal. F.Fuzz
    // should be called exactly once, unless F.Skip or [F.Fail] is called beforehand.
    func (f *F) Fuzz(ff any) {
    	if f.fuzzCalled {
    		panic("testing: F.Fuzz called more than once")
    	}
    	f.fuzzCalled = true
    	if f.failed {
    		return
    	}
    	f.Helper()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. src/internal/trace/gc.go

    			}
    		}
    		if len(ps) == 0 {
    			// We can't start doing any analysis until we see what GOMAXPROCS is.
    			// It will show up very early in the trace, but we need to be robust to
    			// something else being emitted beforehand.
    			continue
    		}
    
    		switch ev.Kind() {
    		case EventRangeActive:
    			if seenSync {
    				// If we've seen a sync, then we can be sure we're not finding out about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top