Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,607 for Invokes (0.11 sec)

  1. test/fixedbugs/bug324.dir/prog.go

    	defer func() {
    		recover()
    	}()
    	x = px.(Exported)
    	
    	println("should not get this far")
    
    	// this is a legitimate call, but because of the previous assignment,
    	// it invokes the method private in p!
    	x.private()  // p.Implementation.private()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 07 16:37:05 UTC 2012
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/MixInClosurePropertiesAsMethodsDynamicObjectTest.groovy

        def obj = new MixInClosurePropertiesAsMethodsDynamicObject() {
            @Override
            String getDisplayName() {
                return "<obj>"
            }
        }
    
        def "invokes method on first delegate that has a property with closure value"() {
            def obj1 = Mock(DynamicObject)
            def obj2 = Mock(DynamicObject)
            def obj3 = Mock(DynamicObject)
            obj.setObjects(obj1, obj2, obj3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/execarchive.go

    //go:build !wasm && !windows
    
    package ld
    
    import (
    	"os"
    	"os/exec"
    	"path/filepath"
    	"syscall"
    )
    
    const syscallExecSupported = true
    
    // execArchive invokes the archiver tool with syscall.Exec(), with
    // the expectation that this is the last thing that takes place
    // in the linking operation.
    func (ctxt *Link) execArchive(argv []string) {
    	var err error
    	argv0 := argv[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 876 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top