Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for promName (0.18 sec)

  1. src/syscall/dll_windows.go

    func loadlibrary(filename *uint16) (handle uintptr, err Errno)
    func loadsystemlibrary(filename *uint16) (handle uintptr, err Errno)
    func getprocaddress(handle uintptr, procname *uint8) (proc uintptr, err Errno)
    
    // A DLL implements access to a single DLL.
    type DLL struct {
    	Name   string
    	Handle Handle
    }
    
    // LoadDLL loads the named DLL file into memory.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_windows.go

    }
    
    func GetProcAddress(module Handle, procname string) (proc uintptr, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(procname)
    	if err != nil {
    		return
    	}
    	return _GetProcAddress(module, _p0)
    }
    
    func _GetProcAddress(module Handle, procname *byte) (proc uintptr, err error) {
    	r0, _, e1 := Syscall(procGetProcAddress.Addr(), 2, uintptr(module), uintptr(unsafe.Pointer(procname)), 0)
    	proc = uintptr(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

                }
                if (((access & Opcodes.ACC_PUBLIC) > 0) && !isStatic(access) && Type.getMethodDescriptor(Type.BOOLEAN_TYPE).equals(desc)) {
                    PropertyAccessorType accessorType = PropertyAccessorType.fromName(name);
                    if (accessorType != null) {
                        String propertyName = accessorType.propertyNameFor(name);
                        if (accessorType == PropertyAccessorType.IS_GETTER) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. docs/fr/docs/python-types.md

    ## Motivations
    
    Prenons un exemple simple :
    
    ```Python
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    Exécuter ce programe affiche :
    
    ```
    John Doe
    ```
    
    La fonction :
    
    * Prend un `first_name` et un `last_name`.
    * Convertit la première lettre de chaque paramètre en majuscules grâce à `title()`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                if (!mixInDsl || !conventionAware) {
                    return;
                }
    
                // GENERATE public <returnType> <propName>(<type> v) { val = super.<propName>(v); __<prop>__ = true; return val; }
                addConventionSetter(setter, property);
            }
    
            private void addConventionSetter(Method setter, PropertyMetadata property) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    //go:linkname syscall_loadlibrary syscall.loadlibrary
    func syscall_loadlibrary(filename *uint16) (handle Handle, err Errno)
    
    //go:linkname syscall_getprocaddress syscall.getprocaddress
    func syscall_getprocaddress(handle Handle, procname *uint8) (proc uintptr, err Errno)
    
    // DLLError describes reasons for DLL load failures.
    type DLLError struct {
    	Err     error
    	ObjName string
    	Msg     string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

            if (isNullOrEmpty(this.dsl)) {
                dsl = userQuestions.selectOption("Select build script DSL", initializer.getDsls(), initializer.getDefaultDsl());
            } else {
                dsl = BuildInitDsl.fromName(getDsl());
                if (!initializer.getDsls().contains(dsl)) {
                    throw new GradleException("The requested DSL '" + getDsl() + "' is not supported for '" + initializer.getId() + "' build type");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/DefaultStructBindingsStore.java

            String methodName = method.getName();
            PropertyAccessorType accessorType = PropertyAccessorType.fromName(methodName);
            if (accessorType != null) {
                switch (accessorType) {
                    case GET_GETTER:
                    case IS_GETTER:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

        "$returnValue"
    }
    """
            TestUtil.createScript(code)
        }
    
        def setPropertyAndPropertyMissingWithProjectProperty() {
            given:
            String propertyName = 'propName'
            String expectedValue = 'somevalue'
    
            when:
            project.ext."$propertyName" = expectedValue
    
            then:
            project."$propertyName" == expectedValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		},
    	})
    
    	return a
    }
    
    func (s *ambientTestServer) addWaypoint(t *testing.T, ip, name, trafficType string, ready bool) {
    	t.Helper()
    
    	fromSame := k8sv1.NamespacesFromSame
    	gatewaySpec := k8sbeta.GatewaySpec{
    		GatewayClassName: constants.WaypointGatewayClassName,
    		Listeners: []k8sbeta.Listener{
    			{
    				Name:     "mesh",
    				Port:     15008,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top