Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 889 for Invokes (0.22 sec)

  1. src/internal/poll/fd_plan9.go

    	return false
    }
    
    // RawControl invokes the user-defined function f for a non-IO
    // operation.
    func (fd *FD) RawControl(f func(uintptr)) error {
    	return errors.New("not implemented")
    }
    
    // RawRead invokes the user-defined function f for a read operation.
    func (fd *FD) RawRead(f func(uintptr) bool) error {
    	return errors.New("not implemented")
    }
    
    // RawWrite invokes the user-defined function f for a write operation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/BuildWorkPlan.java

    import org.gradle.internal.concurrent.Stoppable;
    
    import java.util.function.BiConsumer;
    import java.util.function.Consumer;
    
    public interface BuildWorkPlan extends Stoppable {
        /**
         * Invokes the given action when a task completes (as per {@link Node#isComplete()}). Does nothing for tasks that have already completed.
         */
        void onComplete(Consumer<LocalTaskNode> handler);
    
        void addFilter(Spec<Task> filter);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/testing/newcover.go

    	if mode == "" {
    		return
    	}
    	cover2.mode = mode
    	cover2.tearDown = tearDown
    	cover2.snapshotcov = snapcov
    }
    
    // coverReport2 invokes a callback in _testmain.go that will
    // emit coverage data at the point where test execution is complete,
    // for "go test -cover" runs.
    func coverReport2() {
    	if !goexperiment.CoverageRedesign {
    		panic("unexpected")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/link_syso_issue33139.txt

    # Test that we can use the external linker with a host syso file that is
    # embedded in a package, that is referenced by a Go assembly function.
    # See issue 33139.
    
    [!compiler:gc] skip
    [!cgo] skip
    [short] skip 'invokes system C compiler'
    
    # External linking is not supported on linux/ppc64.
    # See: https://github.com/golang/go/issues/8912
    [GOOS:linux] [GOARCH:ppc64] skip
    
    cc -c -o syso/objTestImpl.syso syso/src/objTestImpl.c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/DeserializationInstantiator.java

    /**
     * Creates instance of objects in preparation for deserialization of their state.
     */
    public interface DeserializationInstantiator {
        /**
         * Creates an instance of the given type without invoking its constructor. Invokes the constructor of the given base class.
         *
         * @throws ObjectInstantiationException On failure to create the new instance.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istioctl/istioctl.go

    	WaitForConfig(defaultNamespace string, configs string) error
    
    	// Invoke invokes an istioctl command and returns the output and exception.
    	// stdout and stderr will be returned as different strings
    	Invoke(args []string) (string, string, error)
    
    	// InvokeOrFail calls Invoke and fails tests if it returns en err
    	InvokeOrFail(t test.Failer, args []string) (string, string)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 14 22:20:09 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/cc/client/client_session.h

      /// `callable_options`.
      /// NOTE: This API is still experimental and may change.
      Status MakeCallable(const CallableOptions& callable_options,
                          CallableHandle* out_handle);
    
      /// \brief Invokes the subgraph named by `handle` with the given options and
      /// input tensors.
      ///
      /// The order of tensors in `feed_tensors` must match the order of names in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 20 08:11:46 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/FinalizablePhantomReference.java

    import java.lang.ref.PhantomReference;
    import java.lang.ref.ReferenceQueue;
    import javax.annotation.CheckForNull;
    
    /**
     * Phantom reference with a {@code finalizeReferent()} method which a background thread invokes
     * after the garbage collector reclaims the referent. This is a simpler alternative to using a
     * {@link ReferenceQueue}.
     *
     * <p>Unlike a normal phantom reference, this reference will be cleared automatically.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/MethodModelRuleApplicationContext.java

         *
         * - Resolved subject and input paths relative to the target element.
         * - Resolves subject type references relative to the target element.
         * - Adds implicit inputs.
         *
         * The returned action invokes the provided action with a {@link ModelRuleInvoker} contextualized with implicit inputs.
         */
        ModelAction contextualize(MethodRuleAction action);
    
        ModelPath getScope();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/link_syso_deps.txt

    # Test that syso in deps is available to cgo.
    
    [!compiler:gc] skip 'requires syso support'
    [!cgo] skip
    [short] skip 'invokes system C compiler'
    
    # External linking is not supported on linux/ppc64.
    # See: https://github.com/golang/go/issues/8912
    [GOOS:linux] [GOARCH:ppc64] skip
    
    cc -c -o syso/x.syso syso/x.c
    cc -c -o syso2/x.syso syso2/x.c
    go build m/cgo
    
    -- go.mod --
    module m
    
    go 1.18
    -- cgo/x.go --
    package cgo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 742 bytes
    - Viewed (0)
Back to top