Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for beforeSend (0.11 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    = Gradle Wrapper Reference
    
    The **recommended way to execute any Gradle build** is with the help of the Gradle Wrapper (referred to as "Wrapper").
    
    The Wrapper is a script that invokes a declared version of Gradle, downloading it beforehand if necessary.
    As a result, developers can get up and running with a Gradle project quickly.
    
    image::wrapper-workflow.png[]
    
    In a nutshell, you gain the following benefits:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    ====
    
    Note that we can only use the `db(...)` and `integTestImplementation(...)` notation within the `dependencies {}` block in the above example because both configurations are declared as delegated properties beforehand via the `creating()` method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set.go

    		// is we'd need to wait on the result of a create to record the pod's
    		// UID, which would require locking *across* the create, which will turn
    		// into a performance bottleneck. We should generate a UID for the pod
    		// beforehand and store it via ExpectCreations.
    		rsc.expectations.ExpectCreations(logger, rsKey, diff)
    		logger.V(2).Info("Too few replicas", "replicaSet", klog.KObj(rs), "need", *(rs.Spec.Replicas), "creating", diff)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

        OpVisitorState op_to_visit = ops_to_visit.pop_back_val();
        Operation* curr_op = op_to_visit.op;
    
        Value token = op_to_visit.token;
        // Ops may be removed, so the next op is kept track of beforehand.
        Operation* next_op = curr_op->getNextNode();
    
        if (auto host_compute = dyn_cast<TF::_XlaHostComputeMlirOp>(curr_op)) {
          token = RewriteHostComputeOp(builder, host_compute, token);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top