Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,923 for Fits (0.1 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          }
        }
      }
    
      // fitText sets text and font-size clipped to the specified width w.
      function fitText(t, avail, textList) {
        // Find first entry in textList that fits.
        let width = avail;
        textContext.font = FONT_SIZE + 'pt Arial';
        for (let i = 0; i < textList.length; i++) {
          let text = textList[i];
          width = textContext.measureText(text).width;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/runtime/stack.go

    // Note: this type must agree with reflect.bitVector.
    type bitvector struct {
    	n        int32 // # of bits
    	bytedata *uint8
    }
    
    // ptrbit returns the i'th bit in bv.
    // ptrbit is less efficient than iterating directly over bitvector bits,
    // and should only be used in non-performance-critical code.
    // See adjustpointers for an example of a high-efficiency walk of a bitvector.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. src/internal/bytealg/index_ppc64x.s

    	// splatted, and string+2 against 3rd
    	// byte splatted. Merge the results with
    	// VSEL to find the first byte of a match.
    
    	// Special handling for last 16 bytes if the
    	// string fits in 16 byte multiple.
    index3loop2:
    	MOVD     $2, R21          // Set up index for 2
    	VSPLTISB $0, V10          // Clear V10
    	VLOADSWAP(R7, R21, V3, V3)// Load 16 bytes @R7+2 into V3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  4. src/runtime/sys_darwin.go

    // Otherwise (the non-X version) expects a 32-bit result.
    // This distinction is required because an error is indicated by returning -1,
    // and we need to know whether to check 32 or 64 bits of the result.
    // (Some libc functions that return 32 bits put junk in the upper 32 bits of AX.)
    
    // golang.org/x/sys linknames syscall_syscall
    // (in addition to standard package syscall).
    // Do not remove or change the type signature.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    [[sec:building_jvm_components]]
    == Building JVM components
    
    All of the specific JVM plugins are built on top of the <<java_plugin.adoc#java_plugin,Java Plugin>>.
    The examples above only illustrated concepts provided by this base plugin and shared with all JVM plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"suitableNodes":        "Only nodes matching the selector will be considered by the scheduler when trying to find a Node that fits a Pod when that Pod uses a ResourceClaim that has not been allocated yet.\n\nSetting this field is optional. If null, all nodes are candidates.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    	// Convert to OpenAPI v2.
    	V2 bool
    
    	// Strip value validation.
    	StripValueValidation bool
    
    	// Strip nullable.
    	StripNullable bool
    
    	// AllowNonStructural indicates swagger should be built for a schema that fits into the structural type but does not meet all structural invariants
    	AllowNonStructural bool
    
    	IncludeSelectableFields bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/emma+xml",
    				"application/epp+xml",
    				"application/epub+zip",
    				"application/eshop",
    				"application/example",
    				"application/fastinfoset",
    				"application/fastsoap",
    				"application/fits",
    				"application/font-tdpfr",
    				"application/h224",
    				"application/http",
    				"application/hyperstudio",
    				"application/ibe-key-request+xml",
    				"application/ibe-pkg-reply+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    	}{
    		{
    			newPod:       csiEBSOneVolPod,
    			existingPods: []*v1.Pod{runningPod, csiEBSTwoVolPod},
    			filterName:   "csi",
    			maxVols:      4,
    			driverNames:  []string{ebsCSIDriverName},
    			test:         "fits when node volume limit >= new pods CSI volume",
    			limitSource:  "node",
    		},
    		{
    			newPod:       csiEBSOneVolPod,
    			existingPods: []*v1.Pod{runningPod, csiEBSTwoVolPod},
    			filterName:   "csi",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    //  0. make a copy of the quotas to act as a "running" quota so we know what we need to update and can still compare against the
    //     originals
    //  1. check each admission attribute to see if it fits within *all* the quotas.  If it didn't fit, mark the waiter as failed
    //     and the running quota doesn't change.  If it did fit, check to see if any quota was changed.  If there was no quota change
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top