Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for Indexes (0.35 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiBaseTestServiceRegistrar.kt

            val moduleStructure = testServices.ktTestModuleStructure
            val testKtFiles = moduleStructure.mainModules.flatMap { it.ktFiles }
    
            // We explicitly exclude decompiled libraries. Their decompiled PSI files are indexed by the declaration provider, so it shouldn't
            // additionally build and index stubs for the library.
            val mainBinaryModules = moduleStructure.mainModules
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. pkg/features/kube_features.go

    	PodDisruptionConditions featuregate.Feature = "PodDisruptionConditions"
    
    	// owner: @danielvegamyhre
    	// kep: https://kep.k8s.io/4017
    	// beta: v1.28
    	//
    	// Set pod completion index as a pod label for Indexed Jobs.
    	PodIndexLabel featuregate.Feature = "PodIndexLabel"
    
    	// owner: @ddebroy, @kannon92
    	// alpha: v1.25
    	// beta: v1.29
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/crypto/x509/parser.go

    		return nil, errors.New("x509: malformed version")
    	}
    	if cert.Version < 0 {
    		return nil, errors.New("x509: malformed version")
    	}
    	// for backwards compat reasons Version is one-indexed,
    	// rather than zero-indexed as defined in 5280
    	cert.Version++
    	if cert.Version > 3 {
    		return nil, errors.New("x509: invalid version")
    	}
    
    	var serialBytes cryptobyte.String
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. pkg/kubelet/images/image_gc_manager.go

    )
    
    // instrumentationScope is OpenTelemetry instrumentation scope name
    const instrumentationScope = "k8s.io/kubernetes/pkg/kubelet/images"
    
    // When RuntimeClassInImageCriAPI feature gate is enabled, imageRecord is
    // indexed as imageId-RuntimeHandler
    const imageIndexTupleFormat = "%s,%s"
    
    // ImageGarbageCollectedTotalReason* specify the reason why an image was garbage collected
    // in the `image_garbage_collected_total` metric.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/read.go

    			return nil, err
    		}
    		data, _, err := cache.GetMmap(cache.Default(), id)
    		if err != nil {
    			// Couldn't read from modindex. Assume we couldn't read from
    			// the index because the module hasn't been indexed yet.
    			data, err = indexModule(modroot)
    			if err != nil {
    				return nil, err
    			}
    			if err = cache.PutBytes(cache.Default(), id, data); err != nil {
    				return nil, err
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/sym.go

    		if rs.ContentAddressable() {
    			// for now, only support content-addressable symbols that are always locally defined.
    			panic("hashed refs unsupported for now")
    		}
    		if pkg == "" || pkg == "\"\"" || pkg == "_" || !rs.Indexed() {
    			rs.PkgIdx = goobj.PkgIdxNone
    			rs.SymIdx = nonpkgidx
    			rs.Set(AttrIndexed, true)
    			if nonpkgidx != nonpkgdef+int32(len(ctxt.nonpkgrefs)) {
    				panic("bad index")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    	AttrLocal
    
    	// For function symbols; indicates that the specified function was the
    	// target of an inline during compilation
    	AttrWasInlined
    
    	// Indexed indicates this symbol has been assigned with an index (when using the
    	// new object file format).
    	AttrIndexed
    
    	// Only applied on type descriptor symbols, UsedInIface indicates this type is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/plugin/noderesources.go

    			break
    		}
    		logger.V(5).Info("Getting Node object failed, waiting", "err", err)
    		select {
    		case <-ctx.Done():
    			return
    		case <-time.After(time.Second):
    		}
    	}
    
    	// We could use an indexer on driver name, but that seems overkill.
    	informer := resourceinformers.NewFilteredResourceSliceInformer(c.kubeClient, resyncPeriod, nil, func(options *metav1.ListOptions) {
    		options.FieldSelector = "nodeName=" + node.Name
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/ureader.go

    // description.
    type pkgReader struct {
    	pkgbits.PkgDecoder
    
    	fake fakeFileSet
    
    	ctxt    *types.Context
    	imports map[string]*types.Package // previously imported packages, indexed by path
    
    	// lazily initialized arrays corresponding to the unified IR
    	// PosBase, Pkg, and Type sections, respectively.
    	posBases []string // position bases (i.e., file names)
    	pkgs     []*types.Package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/iimport.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Indexed package import.
    // See cmd/compile/internal/gc/iexport.go for the export data format.
    
    package gcimporter
    
    import (
    	"bufio"
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"go/constant"
    	"go/token"
    	"go/types"
    	"internal/saferio"
    	"io"
    	"math"
    	"math/big"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top