Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 420 for flagstr (0.12 sec)

  1. 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)
  2. 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)
  3. operator/cmd/mesh/manifest_shared_test.go

    	return err
    }
    
    // runManifestCommand runs the given manifest command. If filenames is set, passes the given filenames as -f flag,
    // flags is passed to the command verbatim. If you set both flags and path, make sure to not use -f in flags.
    func runManifestCommand(command string, filenames []string, flags string, chartSource chartSourceType, fileSelect []string) (string, error) {
    	var args string
    	if command == "install" {
    		args = "install"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/tests/customPlugin.sample.conf

    # tag::cli[]
    # gradle --quiet hello
    # end::cli[]
    commands: [{
        executable: gradle
        args: hello
        flags: --quiet
        expected-output-file: customPlugin.out
    }, {
        executable: gradle
        args: hi
        flags: --quiet
        expected-output-file: customPluginScript.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 275 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/server.go

    func StartDefaultServer(t servertesting.Logger, flags ...string) (func(), *rest.Config, *serveroptions.CustomResourceDefinitionsServerOptions, error) {
    	tearDownFn, s, err := startDefaultServer(t, flags...)
    	if err != nil {
    		return nil, nil, nil, err
    	}
    	return tearDownFn, s.ClientConfig, s.ServerOpts, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/authentication.go

    	}
    
    	if o.RequestHeader != nil {
    		allErrors = append(allErrors, o.RequestHeader.Validate()...)
    	}
    
    	return allErrors
    }
    
    // AddFlags returns flags of authentication for a API Server
    func (o *BuiltInAuthenticationOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.StringSliceVar(&o.APIAudiences, "api-audiences", o.APIAudiences, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. src/internal/syscall/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetAdaptersAddresses(family uint32, flags uint32, reserved uintptr, adapterAddresses *IpAdapterAddresses, sizePointer *uint32) (errcode error) {
    	r0, _, _ := syscall.Syscall6(procGetAdaptersAddresses.Addr(), 5, uintptr(family), uintptr(flags), uintptr(reserved), uintptr(unsafe.Pointer(adapterAddresses)), uintptr(unsafe.Pointer(sizePointer)), 0)
    	if r0 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, _ := syscall.Syscall6(procCM_Get_DevNode_Status.Addr(), 4, uintptr(unsafe.Pointer(status)), uintptr(unsafe.Pointer(problemNumber)), uintptr(devInst), uintptr(flags), 0, 0)
    	ret = CONFIGRET(r0)
    	return
    }
    
    func cm_Get_Device_Interface_List(interfaceClass *GUID, deviceID *uint16, buffer *uint16, bufferLen uint32, flags uint32) (ret CONFIGRET) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_windows.go

    }
    
    func CreateSymbolicLink(symlinkfilename *uint16, targetfilename *uint16, flags uint32) (err error) {
    	r1, _, e1 := Syscall(procCreateSymbolicLinkW.Addr(), 3, uintptr(unsafe.Pointer(symlinkfilename)), uintptr(unsafe.Pointer(targetfilename)), uintptr(flags))
    	if r1&0xff == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func CreateToolhelp32Snapshot(flags uint32, processId uint32) (handle Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v2-legacy.go

    			return
    		}
    		x.Type = VersionType(zb0002)
    	}
    	{
    		var zb0003 uint8
    		zb0003, bts, err = msgp.ReadUint8Bytes(bts)
    		if err != nil {
    			err = msgp.WrapError(err, "Flags")
    			return
    		}
    		x.Flags = xlFlags(zb0003)
    	}
    	o = bts
    	return
    }
    
    // unmarshalV unmarshals with a specific metadata version.
    func (j *xlMetaV2Version) unmarshalV(v uint8, bts []byte) (o []byte, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:43:43 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top