Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for opset (0.04 sec)

  1. src/runtime/os_linux.go

    	}
    
    	// Disable signals during clone, so that the new thread starts
    	// with signals disabled. It will enable them in minit.
    	var oset sigset
    	sigprocmask(_SIG_SETMASK, &sigset_all, &oset)
    	ret := retryOnEAGAIN(func() int32 {
    		r := clone(cloneFlags, stk, unsafe.Pointer(mp), unsafe.Pointer(mp.g0), unsafe.Pointer(abi.FuncPCABI0(mstart)))
    		// clone returns positive TID, negative errno.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. cmd/endpoint.go

    						hostIPCache[host] = hostIPSet
    					}
    				}
    				if IPSet, ok := pathIPMap[endpoint.Path]; ok {
    					if !IPSet.Intersection(hostIPSet).IsEmpty() {
    						return nil, setupType,
    							config.ErrInvalidErasureEndpoints(nil).Msg(fmt.Sprintf("same path '%s' can not be served by different port on same address", endpoint.Path))
    					}
    					pathIPMap[endpoint.Path] = IPSet.Union(hostIPSet)
    				} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

      LOG(INFO) << "odml_to_stablehlo is being deprecated, please use "
                   "TFlite converter with flag: "
                   "converter.target_spec.supported_ops = "
                   "[tf.lite.OpsSet.EXPERIMENTAL_STABLEHLO_OPS] ";
    
      mlir::odml::initAllPasses();
      mlir::PassPipelineCLParser passPipeline("", "Add available compiler passes.");
      llvm::cl::ParseCommandLineOptions(argc, argv, "ODML StableHLO Bridge.\n");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/runtime/sys_netbsd_amd64.s

    	SYSCALL
    	JCC	2(PC)
    	MOVL	$0xf1, 0xf1		// crash
    	RET
    
    TEXT runtime·sigprocmask(SB),NOSPLIT,$0
    	MOVL	how+0(FP), DI		// arg 1 - how
    	MOVQ	new+8(FP), SI		// arg 2 - set
    	MOVQ	old+16(FP), DX		// arg 3 - oset
    	MOVL	$SYS___sigprocmask14, AX
    	SYSCALL
    	JCC	2(PC)
    	MOVL	$0xf1, 0xf1		// crash
    	RET
    
    TEXT sigreturn_tramp<>(SB),NOSPLIT,$-8
    	MOVQ	R15, DI			// Load address of ucontext
    	MOVQ	$SYS_setcontext, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/BUILD

        ],
        copts = ["-O3"],
        deprecation = "odml_to_stablehlo is being deprecated, please use TFlite converter with flag: " +
                      "converter.target_spec.supported_ops = " +
                      " [tf.lite.OpsSet.EXPERIMENTAL_STABLEHLO_OPS]",
        deps = [
            ":check_accepted_ops_pass",
            ":op_stat_pass",
            ":stablehlo_util",
            ":transforms",
            "//tensorflow/cc/saved_model:loader",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		}
    
    		startTime := time.Now()
    		txnResp, err := s.client.KV.Txn(ctx).If(
    			clientv3.Compare(clientv3.ModRevision(key), "=", origState.rev),
    		).Then(
    			clientv3.OpDelete(key),
    		).Else(
    			clientv3.OpGet(key),
    		).Commit()
    		metrics.RecordEtcdRequest("delete", s.groupResourceString, err, startTime)
    		if err != nil {
    			return err
    		}
    		if !txnResp.Succeeded {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. src/runtime/sys_freebsd_arm.s

    	MOVW $SYS_sched_yield, R7
    	SWI $0
    	RET
    
    TEXT runtime·sigprocmask(SB),NOSPLIT,$0
    	MOVW how+0(FP), R0	// arg 1 - how
    	MOVW new+4(FP), R1	// arg 2 - set
    	MOVW old+8(FP), R2	// arg 3 - oset
    	MOVW $SYS_sigprocmask, R7
    	SWI $0
    	MOVW.CS $0, R8 // crash on syscall failure
    	MOVW.CS R8, (R8)
    	RET
    
    // int32 runtime·kqueue(void)
    TEXT runtime·kqueue(SB),NOSPLIT,$0
    	MOVW $SYS_kqueue, R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. src/runtime/sys_netbsd_arm.s

    	MOVW.CS $0, R8	// crash on syscall failure
    	MOVW.CS R8, (R8)
    	RET
    
    TEXT runtime·sigprocmask(SB),NOSPLIT,$0
    	MOVW how+0(FP), R0	// arg 1 - how
    	MOVW new+4(FP), R1	// arg 2 - set
    	MOVW old+8(FP), R2	// arg 3 - oset
    	SWI $SYS___sigprocmask14
    	MOVW.CS $0, R8	// crash on syscall failure
    	MOVW.CS R8, (R8)
    	RET
    
    TEXT sigreturn_tramp<>(SB),NOSPLIT|NOFRAME,$0
    	// on entry, SP points to siginfo, we add sizeof(ucontext)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/server_linux.go

    	"k8s.io/kubernetes/pkg/proxy"
    	proxyconfigapi "k8s.io/kubernetes/pkg/proxy/apis/config"
    	"k8s.io/kubernetes/pkg/proxy/iptables"
    	"k8s.io/kubernetes/pkg/proxy/ipvs"
    	utilipset "k8s.io/kubernetes/pkg/proxy/ipvs/ipset"
    	utilipvs "k8s.io/kubernetes/pkg/proxy/ipvs/util"
    	"k8s.io/kubernetes/pkg/proxy/nftables"
    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    	utiliptables "k8s.io/kubernetes/pkg/util/iptables"
    	"k8s.io/utils/exec"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. src/runtime/sys_freebsd_amd64.s

    	MOVL	$SYS_sched_yield, AX
    	SYSCALL
    	RET
    
    TEXT runtime·sigprocmask(SB),NOSPLIT,$0
    	MOVL	how+0(FP), DI		// arg 1 - how
    	MOVQ	new+8(FP), SI		// arg 2 - set
    	MOVQ	old+16(FP), DX		// arg 3 - oset
    	MOVL	$SYS_sigprocmask, AX
    	SYSCALL
    	JAE	2(PC)
    	MOVL	$0xf1, 0xf1  // crash
    	RET
    
    // int32 runtime·kqueue(void);
    TEXT runtime·kqueue(SB),NOSPLIT,$0
    	MOVQ	$0, DI
    	MOVQ	$0, SI
    	MOVQ	$0, DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top