Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 285 for Calling (0.2 sec)

  1. pkg/kubelet/cm/dra/plugin/client.go

    	logger.V(4).Info(log("calling NodePrepareResources rpc"), "request", req)
    
    	conn, err := p.getOrCreateGRPCConn()
    	if err != nil {
    		return nil, err
    	}
    
    	ctx, cancel := context.WithTimeout(ctx, p.clientTimeout)
    	defer cancel()
    
    	nodeClient := drapb.NewNodeClient(conn)
    	response, err := nodeClient.NodePrepareResources(ctx, req)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

        /**
         * Opens this file as an input stream. Generally, calling this method is more performant than calling {@code new
         * FileInputStream(getFile())}.
         *
         * @return The input stream. Never returns null. The caller is responsible for closing this stream.
         */
        InputStream open();
    
        /**
         * Copies the content of this file to an output stream. Generally, calling this method is more performant than
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/runtime/debugcall.go

    	getg().schedlink.set(callingG)
    	mcall(func(gp *g) {
    		callingG := gp.schedlink.ptr()
    		gp.schedlink = 0
    
    		// Unlock this goroutine from the M if necessary. The
    		// calling G will relock.
    		if gp.lockedm != 0 {
    			gp.lockedm = 0
    			gp.m.lockedg = 0
    		}
    
    		// Switch back to the calling goroutine. At some point
    		// the scheduler will schedule us again and we'll
    		// finish exiting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/TransformBackedProviderTest.groovy

        }
    
        def "does not fail when calling get() after producer task has completed"() {
            given:
            def property = propertyWithCompletedProducer()
            def provider = property.map { Integer.parseInt(it) }
    
            when:
            provider.get()
    
            then:
            0 * progressEventEmitter._
        }
    
        def "fails when calling getOrNull() before producer task has completed"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:06:10 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/ProblemFactory.kt

    interface ProblemFactory {
        /**
         * Returns a default location inferred from the calling thread's state.
         */
        fun locationForCaller(consumer: String? = null): PropertyTrace
    
        /**
         * Creates a problem with the given message and exception.
         *
         * Problem has no documentation, and a default location is inferred from the calling thread's state.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionAccess.java

     */
    public interface ResolutionAccess {
    
        /**
         * Get the owner of the resolution.
         */
        ResolutionHost getHost();
    
        /**
         * Get the request attributes for this resolution. Calling this method will lock-in the
         * request attributes from further mutation but will not perform resolution.
         */
        ImmutableAttributes getAttributes();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/provider/ListProperty.java

        /**
         * {@inheritDoc}
         *
         * <p>
         * This is similar to calling {@link #value(Iterable)} with a <code>null</code> argument.
         * </p>
         */
        @Override
        ListProperty<T> unset();
    
        /**
         * {@inheritDoc}
         *
         * <p>
         * This is similar to calling {@link #convention(Iterable)} with a <code>null</code> argument.
         * </p>
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedModelValue.java

        /**
         * Updates the current value. The function is passed the current value or {@code null} if there is no value, and the function's return value is
         * used as the new value.
         *
         * <p>The calling thread must own the mutable state from which the value is calculated (via {@link ModelContainer#fromMutableState(Function)}). At most a single thread
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerTest.groovy

                true
            }
    
            when:
            controller.load(key, cacheableEntity)
    
            then:
            0 * local.storeLocally(key, _)
        }
    
        def "stops calling through after read error"() {
            local = null
    
            when:
            def controller = getController()
            controller.load(key, cacheableEntity)
            controller.load(key, cacheableEntity)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. pkg/util/filesystem/watcher.go

    // Multiple observed events may collapse to a single invocation of eventHandler().
    //
    // eventHandler() is invoked immediately after successful initialization of the filesystem watch,
    // in case the path changed concurrent with calling WatchUntil().
    func WatchUntil(ctx context.Context, pollInterval time.Duration, path string, eventHandler func(), errorHandler func(err error)) {
    	if pollInterval <= 0 {
    		panic(fmt.Errorf("pollInterval must be > 0"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top