Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 126 for indices (0.57 sec)

  1. src/cmd/link/internal/ld/lib.go

    	if !fingerprint.IsZero() { // Assembly objects don't have fingerprints. Ignore them.
    		// Check fingerprint, to ensure the importing and imported packages
    		// have consistent view of symbol indices.
    		// Normally the go command should ensure this. But in case something
    		// goes wrong, it could lead to obscure bugs like run-time crash.
    		// Check it here to be sure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    	*goobj.Reader
    	unit         *sym.CompilationUnit
    	version      int // version of static symbol
    	pkgprefix    string
    	syms         []Sym    // Sym's global index, indexed by local index
    	pkg          []uint32 // indices of referenced package by PkgIdx (index into loader.objs array)
    	ndef         int      // cache goobj.Reader.NSym()
    	nhashed64def int      // cache goobj.Reader.NHashed64Def()
    	nhasheddef   int      // cache goobj.Reader.NHashedDef()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais2.go

    	// This scan is similar to the one in induceSubL_8_64 above.
    	// That one arranges to clear all but the leftmost L-type indexes.
    	// This scan leaves all the L-type indexes and the original S-type
    	// indexes, but it negates the positive leftmost L-type indexes
    	// (the ones that induceS_8_64 needs to process).
    
    	// expand_8_64 left out the implicit entry sa[-1] == len(text),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                    "$ref": "#/components/schemas/io.k8s.api.authorization.v1.SubjectAccessReviewStatus"
                  }
                ],
                "default": {},
                "description": "Status is filled in by the server and indicates whether the request is allowed or not"
              }
            },
            "required": [
              "spec"
            ],
            "type": "object",
            "x-kubernetes-group-version-kind": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	// that the runtime supports.
    	maxPhysHugePageSize = pallocChunkBytes
    
    	// pagesPerReclaimerChunk indicates how many pages to scan from the
    	// pageInUse bitmap at a time. Used by the page reclaimer.
    	//
    	// Higher values reduce contention on scanning indexes (such as
    	// h.reclaimIndex), but increase the minimum latency of the
    	// operation.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    // workers and are distinguished by gcMarkWorkerMode.
    type gcMarkWorkerMode int
    
    const (
    	// gcMarkWorkerNotWorker indicates that the next scheduled G is not
    	// starting work and the mode should be ignored.
    	gcMarkWorkerNotWorker gcMarkWorkerMode = iota
    
    	// gcMarkWorkerDedicatedMode indicates that the P of a mark
    	// worker is dedicated to running that mark worker. The mark
    	// worker should run without preemption.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

          "properties": {
            "scale": {
              "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object.",
              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale"
            },
            "status": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			}
    			route := ws.GET(action.Path).To(handler).
    				Doc(doc).
    				Param(ws.QueryParameter("pretty", "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).")).
    				Operation("read"+namespaced+kind+strings.Title(subresource)+operationSuffix).
    				Produces(append(storageMeta.ProducesMIMETypes(action.Verb), mediaTypes...)...).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// StatusReasonInternalError indicates that an internal error occurred, it is unexpected
    	// and the outcome of the call is unknown.
    	// Details (optional):
    	//   "causes" - The original error
    	// Status code 500
    	StatusReasonInternalError StatusReason = "InternalError"
    
    	// StatusReasonExpired indicates that the request is invalid because the content you are requesting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  10. tests/migrate_test.go

    		}
    	}
    
    	checkIndex := func(t *testing.T, expected []gorm.Index) {
    		indexes, err := DB.Migrator().GetIndexes(table)
    		if err != nil {
    			t.Fatalf("%v: failed to get indexes, got error: %v", utils.FileWithLineNum(), err)
    		}
    		assert.ElementsMatch(t, expected, indexes)
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
Back to top