Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 132 for rtcall (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

    }
    
    
    def TF_IfrtCallOp : TF_Op<"IfrtCall", []> {
      let summary = "Invokes a program via IFRT on a device";
    
      let description = [{
        This op calls an IFRT program uniquely identified by the given program id.
    
        During lowering from a `tf_device.cluster_func` op to a `tf.IfrtCall` op,
        the region owned by the former will be outlined to a function with a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/net/fd_fake.go

    	return "unknown"
    }
    
    func (fd *netFD) accept() (netfd *netFD, err error) {
    	if fd.fakeNetFD != nil {
    		return fd.fakeNetFD.accept(fd.laddr)
    	}
    	d, _, errcall, err := fd.pfd.Accept()
    	if err != nil {
    		if errcall != "" {
    			err = wrapSyscallError(errcall, err)
    		}
    		return nil, err
    	}
    	netfd = newFD("tcp", d)
    	if err = netfd.init(); err != nil {
    		netfd.Close()
    		return nil, err
    	}
    	return netfd, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/net/fd_unix.go

    			return nil, os.NewSyscallError("connect", err)
    		}
    		runtime.KeepAlive(fd)
    	}
    }
    
    func (fd *netFD) accept() (netfd *netFD, err error) {
    	d, rsa, errcall, err := fd.pfd.Accept()
    	if err != nil {
    		if errcall != "" {
    			err = wrapSyscallError(errcall, err)
    		}
    		return nil, err
    	}
    
    	if netfd, err = newFD(d, fd.family, fd.sotype, fd.net); err != nil {
    		poll.CloseFunc(d)
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 20:19:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/driver-call.go

    		Command: command,
    		Timeout: timeout,
    		plugin:  plugin,
    		args:    []string{command},
    	}
    }
    
    // Append appends arg into driver call argument list
    func (dc *DriverCall) Append(arg string) {
    	dc.args = append(dc.args, arg)
    }
    
    // AppendSpec appends volume spec to driver call argument list
    func (dc *DriverCall) AppendSpec(spec *volume.Spec, host volume.VolumeHost, extraOptions map[string]string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 02:39:55 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  5. src/syscall/mkasm.go

    		}
    		fn := line[5 : len(line)-13]
    		if !trampolines[fn] {
    			trampolines[fn] = true
    			fmt.Fprintf(&out, "TEXT ·%s_trampoline(SB),NOSPLIT,$0-0\n", fn)
    			if goos == "openbsd" && arch == "ppc64" {
    				fmt.Fprintf(&out, "\tCALL\t%s(SB)\n", fn)
    				fmt.Fprintf(&out, "\tRET\n")
    			} else {
    				fmt.Fprintf(&out, "\tJMP\t%s(SB)\n", fn)
    			}
    		}
    	}
    	err = os.WriteFile(fmt.Sprintf("zsyscall_%s_%s.s", goos, arch), out.Bytes(), 0644)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/GroovyInteroperabilityTest.kt

        @Test
        fun `can use closure with single argument call`() {
            val list = arrayListOf<Int>()
            closureOf<MutableList<Int>> { add(42) }.call(list)
            assertEquals(42, list.first())
        }
    
        @Test
        fun `can use closure with single nullable argument call`() {
            var passedIntoClosure: Any? = "Something non null"
            closureOf<Any?> { passedIntoClosure = this }.call(null)
            assertNull(passedIntoClosure)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. src/cmd/internal/objabi/reloctype_string.go

    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[R_ADDR-1]
    	_ = x[R_ADDRPOWER-2]
    	_ = x[R_ADDRARM64-3]
    	_ = x[R_ADDRMIPS-4]
    	_ = x[R_ADDROFF-5]
    	_ = x[R_SIZE-6]
    	_ = x[R_CALL-7]
    	_ = x[R_CALLARM-8]
    	_ = x[R_CALLARM64-9]
    	_ = x[R_CALLIND-10]
    	_ = x[R_CALLPOWER-11]
    	_ = x[R_CALLMIPS-12]
    	_ = x[R_CONST-13]
    	_ = x[R_PCREL-14]
    	_ = x[R_TLS_LE-15]
    	_ = x[R_TLS_IE-16]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/runtime/wincallback.go

    // appropriately so different callbacks start with different
    // CALL instruction in runtime·callbackasm. This determines
    // which Go callback function is executed later on.
    
    TEXT runtime·callbackasm(SB),NOSPLIT|NOFRAME,$0
    `)
    	for i := 0; i < maxCallback; i++ {
    		buf.WriteString("\tCALL\truntime·callbackasm1(SB)\n")
    	}
    
    	filename := fmt.Sprintf("zcallback_windows.s")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:29:51 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AntJacocoCheck.java

                antBuilder.invokeMethod("check", new Object[] {checkArgs, new Closure<Object>(this, this) {
                    @SuppressWarnings("UnusedDeclaration")
                    public Object doCall(Object ignore) {
                        for (final JacocoViolationRule rule : filter(violationRules.getRules(), RULE_ENABLED_PREDICATE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AntFileTreeBuilder.java

            final DynamicObject dynamicObject = new BeanDynamicObject(node);
            dynamicObject.invokeMethod(childNodeName == null ? "resources" : childNodeName, new Closure(this) {
                public Object doCall(Object ignore) {
                    for (Map.Entry<String, File> entry : files.entrySet()) {
                        String name = entry.getKey();
                        File file = entry.getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top