Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for SLICE (0.29 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescValueParameterSymbol.kt

                        // Implicit lambda parameter doesn't have a source PSI.
                        descriptor.source.getPsi() == null &&
                        // But, that could be the case for a declaration from Library. Double-check the slice in the binding context
                        (descriptor.containingDeclaration.source.getPsi() as? KtFunctionLiteral)?.let { parentLambda ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. pilot/test/xdstest/endpoints.go

    	if len(got) != len(want) {
    		return fmt.Errorf("unexpected number of filtered endpoints for %s: got %v, want %v", cluster, len(got), len(want))
    	}
    
    	sort.Slice(got, func(i, j int) bool {
    		addrI := util.GetEndpointHost(got[i].LbEndpoints[0])
    		addrJ := util.GetEndpointHost(got[j].LbEndpoints[0])
    		return addrI < addrJ
    	})
    
    	for i, ep := range got {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. src/internal/coverage/pods/pods.go

    // element of the "Origins" field below will be populated with the
    // index of the originating directory for the corresponding counter
    // data file (within the slice of input dirs handed to CollectPods).
    // The ProcessIDs field will be populated with the process ID of each
    // data file in the CounterDataFiles slice.
    type Pod struct {
    	MetaFile         string
    	CounterDataFiles []string
    	Origins          []int
    	ProcessIDs       []int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    			obj.KubeConfigPath = u.Path
    		}
    	}
    }
    
    // SetDefaults_BootstrapTokens sets the defaults for the .BootstrapTokens field
    // If the slice is empty, it's defaulted with one token. Otherwise it just loops
    // through the slice and sets the defaults for the omitempty fields that are TTL,
    // Usages and Groups. Token is NOT defaulted with a random one in the API defaulting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. src/crypto/aes/ctr_s390x.go

    	ctr     [2]uint64              // next value of the counter (big endian)
    	buffer  []byte                 // buffer for the encrypted counter values
    	storage [streamBufferSize]byte // array backing buffer slice
    }
    
    // NewCTR returns a Stream which encrypts/decrypts using the AES block
    // cipher in counter mode. The length of iv must be the same as [BlockSize].
    func (c *aesCipherAsm) NewCTR(iv []byte) cipher.Stream {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/qualifiers/UsualClassTypeQualifierBuilder.kt

                    val end = typeParametersLeft
                    check(begin >= 0)
                    typeParametersLeft -= typeParametersCount
                    coneType.typeArguments.slice(begin until end).map { builder.typeBuilder.buildTypeProjection(it) }
                } else emptyList()
                result += KaClassTypeQualifier.KaResolvedClassTypeQualifier(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/internal/coverage/encodecounter/encode.go

    	if err := binary.Write(ws, binary.LittleEndian, cfw.csh); err != nil {
    		return err
    	}
    	hdrsz := uint32(len(ws.BytesWritten()))
    
    	// Write string table and args to a byte slice (since we need
    	// to capture offsets at various points), then emit the slice
    	// once we are done.
    	cfw.stab.Freeze()
    	if err := cfw.stab.Write(ws); err != nil {
    		return err
    	}
    	cfw.csh.StrTabLen = uint32(len(ws.BytesWritten())) - hdrsz
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/internal/trace/base.go

    // baseEvent is the basic unprocessed event. This serves as a common
    // fundamental data structure across.
    type baseEvent struct {
    	typ  event.Type
    	time Time
    	args timedEventArgs
    }
    
    // extra returns a slice representing extra available space in args
    // that the parser can use to pass data up into Event.
    func (e *baseEvent) extra(v version.Version) []uint64 {
    	switch v {
    	case version.Go122:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho_update_uuid.go

    // final executable generated by the external linker.
    
    import (
    	"cmd/internal/notsha256"
    	"debug/macho"
    	"io"
    	"os"
    	"unsafe"
    )
    
    // uuidFromGoBuildId hashes the Go build ID and returns a slice of 16
    // bytes suitable for use as the payload in a Macho LC_UUID load
    // command.
    func uuidFromGoBuildId(buildID string) []byte {
    	if buildID == "" {
    		return make([]byte, 16)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	// See comments for ExportObjectFact.
    	ExportPackageFact func(fact Fact)
    
    	// AllPackageFacts returns a new slice containing all package
    	// facts of the analysis's FactTypes in unspecified order.
    	AllPackageFacts func() []PackageFact
    
    	// AllObjectFacts returns a new slice containing all object
    	// facts of the analysis's FactTypes in unspecified order.
    	AllObjectFacts func() []ObjectFact
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top