Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 424 for flagstr (0.23 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func impl_Dup3(oldfd int, newfd int, flags int) (err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_DUP3<<4, uintptr(oldfd), uintptr(newfd), uintptr(flags))
    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    //go:nosplit
    func get_Dup3Addr() *(func(oldfd int, newfd int, flags int) (err error))
    
    var Dup3 = enter_Dup3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/diff_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			flags.cfgPath = tc.cfgPath
    			flags.kubeConfigPath = kubeConfigPath
    			cmd := newCmdDiff(os.Stdout)
    			if tc.setManifestPath {
    				flags.apiServerManifestPath = tc.manifestPath
    				flags.controllerManagerManifestPath = tc.manifestPath
    				flags.schedulerManifestPath = tc.manifestPath
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 04:08:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/link/internal/ld/main.go

    	flag.Var(&flagExtld, "extld", "use `linker` when linking in external mode")
    	flag.Var(&flagExtldflags, "extldflags", "pass `flags` to external linker")
    	flag.Var(&flagW, "w", "disable DWARF generation")
    }
    
    // Flags used by the linker. The exported flags are used by the architecture-specific packages.
    var (
    	flagBuildid = flag.String("buildid", "", "record `id` as Go toolchain build id")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. 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)
Back to top