Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 453 for flagstr (0.18 sec)

  1. tensorflow/compat_template_v1.__init__.py

    _current_module.__path__ = [_module_dir] + _current_module.__path__
    
    
    from tensorflow.python.platform import flags  # pylint: disable=g-import-not-at-top
    _current_module.app.flags = flags  # pylint: disable=undefined-variable
    setattr(_current_module, "flags", flags)
    
    # Add module aliases from Keras to TF.
    # Some tf endpoints actually lives under Keras.
    _current_module.layers = _KerasLazyLoader(
        globals(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/net/interface_windows.go

    				ifi.Flags |= FlagBroadcast | FlagMulticast
    			case windows.IF_TYPE_PPP, windows.IF_TYPE_TUNNEL:
    				ifi.Flags |= FlagPointToPoint | FlagMulticast
    			case windows.IF_TYPE_SOFTWARE_LOOPBACK:
    				ifi.Flags |= FlagLoopback | FlagMulticast
    			case windows.IF_TYPE_ATM:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/internal/runtime/syscall/syscall_linux.go

    // Syscall6 calls system call number 'num' with arguments a1-6.
    func Syscall6(num, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr)
    
    func EpollCreate1(flags int32) (fd int32, errno uintptr) {
    	r1, _, e := Syscall6(SYS_EPOLL_CREATE1, uintptr(flags), 0, 0, 0, 0, 0)
    	return int32(r1), e
    }
    
    var _zero uintptr
    
    func EpollWait(epfd int32, events []EpollEvent, maxev, waitms int32) (n int32, errno uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:26:21 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_cpu_device.cc

        std::vector<std::unique_ptr<Device>>* devices) {
      XlaDeviceFlags* flags = GetXlaDeviceFlags();
      if (!flags->tf_xla_enable_xla_devices && !XlaDevicesCreationRequired()) {
        VLOG(1) << "Not creating XLA devices, tf_xla_enable_xla_devices not set";
        return absl::OkStatus();
      }
      bool compile_on_demand = flags->tf_xla_compile_on_demand;
    
      XlaOpRegistry::DeviceRegistration registration;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. pkg/proxy/util/nfacct/handler.go

    }
    
    // newRequest creates a netlink request tailored for the NFAcct subsystem encapsulating the
    // specified cmd and flags. It incorporates the netlink header and netfilter generic header
    // into the resulting request.
    func (n *netlinkHandler) newRequest(cmd int, flags uint16) request {
    	req := &nl.NetlinkRequest{
    		// netlink message header
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. cmd/kube-apiserver/app/testing/testserver.go

    	}
    	defer func() {
    		if result.TearDownFn == nil {
    			tearDown()
    		}
    	}()
    
    	fs := pflag.NewFlagSet("test", pflag.PanicOnError)
    
    	s := options.NewServerRunOptions()
    	for _, f := range s.Flags().FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	s.SecureServing.Listener, s.SecureServing.BindPort, err = createLocalhostListenerOnFreePort()
    	if err != nil {
    		return result, fmt.Errorf("failed to create listener: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "ADDSconstflags", argLength: 1, reg: gp11flags, typ: "(UInt64,Flags)", asm: "ADDS", aux: "Int64"},      // arg0+auxint, set flags.
    		{name: "ADDSflags", argLength: 2, reg: gp21flags, typ: "(UInt64,Flags)", asm: "ADDS", commutative: true},      // arg0+arg1, set flags.
    		{name: "SUB", argLength: 2, reg: gp21, asm: "SUB"},                                                            // arg0 - arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    )
    
    const (
    	// flags for CreateToolhelp32Snapshot
    	TH32CS_SNAPHEAPLIST = 0x01
    	TH32CS_SNAPPROCESS  = 0x02
    	TH32CS_SNAPTHREAD   = 0x04
    	TH32CS_SNAPMODULE   = 0x08
    	TH32CS_SNAPMODULE32 = 0x10
    	TH32CS_SNAPALL      = TH32CS_SNAPHEAPLIST | TH32CS_SNAPMODULE | TH32CS_SNAPPROCESS | TH32CS_SNAPTHREAD
    	TH32CS_INHERIT      = 0x80000000
    )
    
    const (
    	// flags for EnumProcessModulesEx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*FlagSet).Init", Method, 0},
    		{"(*FlagSet).Int", Method, 0},
    		{"(*FlagSet).Int64", Method, 0},
    		{"(*FlagSet).Int64Var", Method, 0},
    		{"(*FlagSet).IntVar", Method, 0},
    		{"(*FlagSet).Lookup", Method, 0},
    		{"(*FlagSet).NArg", Method, 0},
    		{"(*FlagSet).NFlag", Method, 0},
    		{"(*FlagSet).Name", Method, 10},
    		{"(*FlagSet).Output", Method, 10},
    		{"(*FlagSet).Parse", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/tfcompile.bzl

        if type(tfcompile_flags) == type(""):
            flags = tfcompile_flags
        else:
            flags = " ".join([
                "'" + arg.replace("'", "'\\''") + "'"
                for arg in (tfcompile_flags or [])
            ])
    
        # Do this before we append the `select` into `flags`, because doing so
        # transforms `flags` into a variable of type `select`, and we can't call
        # `find` on such an object.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top