Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,794 for baseIdx (0.13 sec)

  1. src/debug/dwarf/entry.go

    		switch opcode {
    		case rleEndOfList:
    			if buf.err != nil {
    				return nil, buf.err
    			}
    			return ret, nil
    
    		case rleBaseAddressx:
    			baseIdx := buf.uint()
    			var err error
    			base, err = d.debugAddr(u, uint64(addrBase), baseIdx)
    			if err != nil {
    				return nil, err
    			}
    
    		case rleStartxEndx:
    			startIdx := buf.uint()
    			endIdx := buf.uint()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	// Update minHeapIdx. Note that even if there's no mapping work to do,
    	// we may still have a new, lower minimum heap address.
    	minHeapIdx := s.minHeapIdx.Load()
    	if baseIdx := uintptr(chunkIndex(base)); minHeapIdx == 0 || baseIdx < minHeapIdx {
    		s.minHeapIdx.Store(baseIdx)
    	}
    	return s.sysGrow(base, limit, sysStat)
    }
    
    // find returns the highest chunk index that may contain pages available to scavenge.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/security/index.md

    Então, ela foi um sistema adicional completo.
    
    Ela não é muito popular ou usada nos dias de hoje.
    
    ## OpenAPI
    
    OpenAPI (anteriormente conhecido como Swagger) é a especificação aberta para a criação de APIs (agora parte da Linux Foundation).
    
    **FastAPI** é baseado no **OpenAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. internal/config/identity/ldap/ldap.go

    		if baseDN.Parsed.AncestorOf(udn) {
    			return true
    		}
    	}
    	return false
    }
    
    // IsLDAPGroupDN determines if the given string could be a group DN from LDAP.
    func (l Config) IsLDAPGroupDN(group string) bool {
    	gdn, err := ldap.ParseDN(group)
    	if err != nil {
    		return false
    	}
    	for _, baseDN := range l.LDAP.GetGroupSearchBaseDistNames() {
    		if baseDN.Parsed.AncestorOf(gdn) {
    			return true
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  5. src/internal/trace/testdata/testprog/annotations-stress.go

    //go:build ignore
    
    package main
    
    import (
    	"context"
    	"fmt"
    	"log"
    	"os"
    	"runtime/trace"
    	"time"
    )
    
    func main() {
    	baseCtx := context.Background()
    
    	// Create a task that starts and ends entirely outside of the trace.
    	ctx0, t0 := trace.NewTask(baseCtx, "parent")
    
    	// Create a task that starts before the trace and ends during the trace.
    	ctx1, t1 := trace.NewTask(ctx0, "type1")
    
    	// Start tracing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. docs/pt/docs/alternatives.md

    Ele não era baseado em um padrão como OpenAPI e JSON Schema. Então não poderia ter interação direta com outras ferramentas, como Swagger UI. Mas novamente, era uma idéia muito inovadora.
    
    Hug tinha um incomum, interessante recurso: usando o mesmo framework, é possível criar tanto APIs como CLIs.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. test/fuse.go

    	return a == 0 && f > Cf2 || a <= 0 && f < -Cf2 // ERROR "Redirect Eq64 based on Eq64$"
    }
    
    func fNeqEq(a int, f float64) bool {
    	return a != 0 && f > Cf2 || a == 0 && f < -Cf2 // ERROR "Redirect Eq64 based on Neq64$"
    }
    
    func fNeqNeq(a int32, f float64) bool {
    	return a != 0 && f > Cf2 || a != 0 && f < -Cf2 // ERROR "Redirect Neq32 based on Neq32$"
    }
    
    func fNeqLess(a float32, f float64) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/msg/messages.gen.go

    	// Description: Virtual service using JWT claim based routing without request authentication.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. docs/pt/docs/project-generation.md

        * **Curto**: Minimize duplicação de código. Múltiplos recursos para cada declaração de parâmetro.
        * **Robusto**: Tenha código pronto para produção. Com documentação interativa automática.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Oct 17 05:50:32 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataParseException.java

        }
    
        /**
         * Gets the one-based index of the line containing the error.
         *
         * @return The one-based index of the line containing the error or a non-positive value if unknown.
         */
        public int getLineNumber() {
            return lineNumber;
        }
    
        /**
         * Gets the one-based index of the column containing the error.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top