Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 336 for emberi (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/IncubatingMissingRule.java

        }
    
        @Override
        public Violation maybeViolation(final JApiCompatibility member) {
            if (member instanceof JApiMethod || member instanceof JApiField || member instanceof JApiClass || member instanceof JApiConstructor) {
                if (!isIncubating((JApiHasAnnotations) member) && !isInject((JApiHasAnnotations) member)) {
                    return violationError(member);
                }
            }
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/bodies/KtRendererBodyMemberScopeProvider.kt

                                    origin != KaSymbolOrigin.INTERSECTION_OVERRIDE
                        }.filter { member ->
                            member !is KaConstructorSymbol || symbol !is KaClassOrObjectSymbol || !symbol.classKind.isObject
                        }.filterNot { member ->
                            member is KaConstructorSymbol && symbol is KaEnumEntrySymbol
                        }
                        .toList()
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/src/main/java/com/acme/Family.java

    public class Family {
        private final List<Person> members;
    
        public Family(Person... members) {
            this.members = Arrays.asList(members);
        }
    
        public List<Person> getMembers() {
            return members;
        }
    
        public int size() {
            return members.size();
        }
    
        public boolean contains(Person person) {
            return members.contains(person);
        }
    
        @java.lang.Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 601 bytes
    - Viewed (0)
  9. pkg/ctrlz/topics/assets/assets.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package assets
    
    import (
    	"embed"
    	"html/template"
    )
    
    // FS embeds the templates
    //
    //go:embed templates/*
    var FS embed.FS
    
    func ParseTemplate(l *template.Template, name string) *template.Template {
    	b, err := FS.ReadFile(name)
    	if err != nil {
    		panic(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 891 bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/write.go

    		e.String(s)
    	}
    
    	e.Int(len(f.imports))
    	for _, m := range f.imports {
    		e.String(m.path)
    		e.Position(m.position)
    	}
    
    	e.Int(len(f.embeds))
    	for _, embed := range f.embeds {
    		e.String(embed.pattern)
    		e.Position(embed.position)
    	}
    
    	e.Int(len(f.directives))
    	for _, d := range f.directives {
    		e.String(d.Text)
    		e.Position(d.Pos)
    	}
    }
    
    func newEncoder() *encoder {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top