Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 106 for extr6 (0.17 sec)

  1. src/cmd/dist/build.go

    	writefile(readfile(src), dst, flag)
    }
    
    // dopack copies the package src to dst,
    // appending the files listed in extra.
    // The archive format is the traditional Unix ar format.
    func dopack(dst, src string, extra []string) {
    	bdst := bytes.NewBufferString(readfile(src))
    	for _, file := range extra {
    		b := readfile(file)
    		// find last path element for archive member name
    		i := strings.LastIndex(file, "/") + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    	// when using frame pointer unwinding. We record the stack
    	// with "physical" frame pointers but handle skipping "logical"
    	// frames at some point after collecting the stack. So
    	// we need extra space in order to avoid getting fewer than the
    	// desired maximum number of frames after expansion.
    	// This should be at least as large as the largest skip value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm/asm5.go

    	cursym     *obj.LSym
    	printp     *obj.Prog
    	blitrl     *obj.Prog
    	elitrl     *obj.Prog
    	autosize   int64
    	instoffset int64
    	pc         int64
    	pool       struct {
    		start uint32
    		size  uint32
    		extra uint32
    	}
    }
    
    type Optab struct {
    	as       obj.As
    	a1       uint8
    	a2       int8
    	a3       uint8
    	type_    uint8
    	size     int8
    	param    int16
    	flag     int8
    	pcrelsiz uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

          --external-hostname="${EXTERNAL_HOSTNAME}" \
          --requestheader-username-headers=X-Remote-User \
          --requestheader-group-headers=X-Remote-Group \
          --requestheader-extra-headers-prefix=X-Remote-Extra- \
          --requestheader-client-ca-file="${CERT_DIR}/request-header-ca.crt" \
          --requestheader-allowed-names=system:auth-proxy \
          --proxy-client-cert-file="${CERT_DIR}/client-auth-proxy.crt" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/apis/certificates/validation/validation_test.go

    					Request: newCSRPEM(t),
    					// this string is longer than the max signerName limit (635 chars)
    					SignerName: fmt.Sprintf("%s.extra/valid-path", maxLengthFQDN),
    				},
    			},
    			errs: field.ErrorList{
    				field.TooLong(specPath.Child("signerName"), fmt.Sprintf("%s.extra", maxLengthFQDN), len(maxLengthFQDN)),
    			},
    		},
    		"signerName can have a longer path if the domain component is less than the max length": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    In other words, when you combine file collections this way, the result always reflects what's currently in the source file collections, even if they change during the build.
    
    For example, imagine `collection` in the above example gains an extra file or two after `union` is created.
    As long as you use `union` after those files are added to `collection`, `union` will also contain those additional files.
    The same goes for the `different` file collection.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    // The finalizer goroutine is kicked off only when all spans are swept.
    // When the next GC starts, it sweeps all not-yet-swept spans (if any).
    
    // GC rate.
    // Next GC is after we've allocated an extra amount of memory proportional to
    // the amount already in use. The proportion is controlled by GOGC environment variable
    // (100 by default). If GOGC=100 and we're using 4M, we'll GC again when we get to 8M
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/runtime/mgcpacer.go

    	// gcAssistTimeSlack is the nanoseconds of mutator assist time that
    	// can accumulate on a P before updating gcController.assistTime.
    	gcAssistTimeSlack = 5000
    
    	// gcOverAssistWork determines how many extra units of scan work a GC
    	// assist does when an assist happens. This amortizes the cost of an
    	// assist by pre-paying for this many bytes of future allocations.
    	gcOverAssistWork = 64 << 10
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    				bad = true
    			}
    		}
    	}
    	if !bad {
    		var addr uintptr
    		tp, addr = tp.next(x + span.elemsize)
    		if addr == 0 {
    			return
    		}
    		println("runtime: extra pointer:", hex(addr))
    	}
    	print("runtime: hasHeader=", header != nil, " typ.Size_=", typ.Size_, " hasGCProg=", typ.Kind_&abi.KindGCProg != 0, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    // nolint: lll
    func TestServiceDiscoveryServiceUpdate(t *testing.T) {
    	store, sd, events := initServiceDiscovery(t)
    	// httpStaticOverlayUpdated is the same as httpStaticOverlay but with an extra endpoint added to test updates
    	httpStaticOverlayUpdated := func() *config.Config {
    		c := httpStaticOverlay.DeepCopy()
    		se := c.Spec.(*networking.ServiceEntry)
    		se.Endpoints = append(se.Endpoints, &networking.WorkloadEntry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top