Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 770 for emberi (0.12 sec)

  1. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt

            }
        }
    
        fun isSince(version: String, member: JApiCompatibility): (KtFile) -> Boolean = { ktFile ->
            val ctMember = member.newCtMember
            val ctDeclaringClass = ctMember.declaringClass
            when {
                ctMember is CtMethod && ctMember.isSynthetic -> true // synthetic members cannot have kdoc
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 20:38:19 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. src/go/build/read.go

    			// and we can pretend they are not there to help go list succeed with what it knows.
    			embs, err := parseGoEmbed(string(line), pos)
    			if err == nil {
    				info.embeds = append(info.embeds, embs...)
    			}
    		}
    	}
    
    	return nil
    }
    
    // isValidImport checks if the import is a valid import using the more strict
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ApiMemberSelector.java

    import static org.objectweb.asm.Opcodes.ACC_STATIC;
    import static org.objectweb.asm.Opcodes.ACC_SUPER;
    
    /**
     * Visits each {@link Member} of a given class and selects only those members that
     * are part of its API.
     * Selected members are delegated to an adapter that determines how to further
     * process those members (e.g. stripping out method bodies), and how to write a
     * new "API class" with them.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/path-params.md

    <img src="/img/tutorial/path-params/image03.png">
    
    ### Working with Python *enumerations*
    
    The value of the *path parameter* will be an *enumeration member*.
    
    #### Compare *enumeration members*
    
    You can compare it with the *enumeration member* in your created enum `ModelName`:
    
    ```Python hl_lines="17"
    {!../../../docs_src/path_params/tutorial005.py!}
    ```
    
    #### Get the *enumeration value*
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. docs/es/docs/tutorial/path-params.md

    <img src="/img/tutorial/path-params/image03.png">
    
    ### Trabajando con los *enumerations* de Python
    
    El valor del *parámetro de path* será un *enumeration member*.
    
    #### Compara *enumeration members*
    
    Puedes compararlo con el *enumeration member* en el enum (`ModelName`) que creaste:
    
    ```Python hl_lines="17"
    {!../../../docs_src/path_params/tutorial005.py!}
    ```
    
    #### Obtén el *enumeration value*
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/cmd/internal/buildid/buildid.go

    		return "", err
    	}
    	// Read first member offset.
    	offStr := strings.TrimSpace(string(flhdr[68:88]))
    	off, err := strconv.ParseInt(offStr, 10, 64)
    	if err != nil {
    		return bad()
    	}
    	for {
    		if off == 0 {
    			// No more entries, no build ID.
    			return "", nil
    		}
    		if _, err := f.Seek(off, io.SeekStart); err != nil {
    			return "", err
    		}
    		// Read member header.
    		var hdr [112]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
  7. docs/bigdata/README.md

    ## **3. Configure Hadoop, Spark, Hive to use MinIO**
    
    After successful installation navigate to the Ambari UI `http://<ambari-server>:8080/` and login using the default credentials: [**_username: admin, password: admin_**]
    
    ![ambari-login](https://github.com/minio/minio/blob/master/docs/bigdata/images/image3.png?raw=true "ambari login")
    
    ### **3.1 Configure Hadoop**
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  8. src/cmd/internal/sys/arch.go

    // license that can be found in the LICENSE file.
    
    package sys
    
    import "encoding/binary"
    
    // ArchFamily represents a family of one or more related architectures.
    // For example, ppc64 and ppc64le are both members of the PPC64 family.
    type ArchFamily byte
    
    const (
    	NoArch ArchFamily = iota
    	AMD64
    	ARM
    	ARM64
    	I386
    	Loong64
    	MIPS
    	MIPS64
    	PPC64
    	RISCV64
    	S390X
    	Wasm
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationMissingRule.java

                isInject(member) ||
                isOverrideMethod(member) ||
                isKotlinFileFacadeClass(member);
        }
    
        private boolean isClassFieldConstructorOrMethod(JApiCompatibility member) {
            return member instanceof JApiClass || member instanceof JApiField || member instanceof JApiConstructor || member instanceof JApiMethod;
        }
    
        private boolean isInject(JApiCompatibility member) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 16:02:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/node/intset.go

    	if s == nil {
    		return false
    	}
    	return s.members[i] > 0
    }
    
    // reset removes all ids, effectively setting their refcounts to 0.
    // it is not thread-safe.
    func (s *intSet) reset() {
    	for k := range s.members {
    		delete(s.members, k)
    	}
    }
    
    // increment adds one to the refcount of the specified id.
    // it is not thread-safe.
    func (s *intSet) increment(i int) {
    	s.members[i]++
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 10 18:24:13 UTC 2020
    - 1.6K bytes
    - Viewed (0)
Back to top