Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 351 for extar (0.18 sec)

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

    	flagTmpdir     = flag.String("tmpdir", "", "use `directory` for temporary files")
    
    	flagExtld      quoted.Flag
    	flagExtldflags quoted.Flag
    	flagExtar      = flag.String("extar", "", "archive program for buildmode=c-archive")
    
    	flagCaptureHostObjs = flag.String("capturehostobjs", "", "capture host object files loaded during internal linking to specified dir")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	}
    	if ldflags := BuildLdflags.String(); ldflags != "" {
    		// https://go.dev/issue/52372: only include ldflags if -trimpath is not set,
    		// since it can include system paths through various linker flags (notably
    		// -extar, -extld, and -extldflags).
    		//
    		// TODO: since we control cmd/link, in theory we can parse ldflags to
    		// determine whether they may refer to system paths. If we do that, we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/extra-data-types.md

    Nayeon Kim <******@****.***> 1718333110 +0900
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 02:45:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. pkg/controlplane/instance.go

    		c.ControlPlane.Complete(),
    		&c.Extra,
    	}
    
    	serviceIPRange, apiServerServiceIP, err := options.ServiceIPRange(cfg.Extra.ServiceIPRange)
    	if err != nil {
    		klog.Fatalf("Error determining service IP ranges: %v", err)
    	}
    	if cfg.Extra.ServiceIPRange.IP == nil {
    		cfg.Extra.ServiceIPRange = serviceIPRange
    	}
    	if cfg.Extra.APIServerServiceIP == nil {
    		cfg.Extra.APIServerServiceIP = apiServerServiceIP
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    			}
    			debugPrintf("releaseLock %s: reset havePtr (extra=%d)\n", c.name, state.extra())
    
    			// Optimization: only bother loading a new pointer
    			// if we have a value to add to it.
    			c.ptr = counterPtr{nil, nil}
    			if state.extra() != 0 {
    				c.ptr = c.file.lookup(c.name)
    				debugPrintf("releaseLock %s: ptr=%v\n", c.name, c.ptr)
    			}
    		}
    
    		if extra := state.extra(); extra != 0 && c.ptr.count != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/runtime/cpuprof.go

    		osyield()
    	}
    
    	if cpuprof.numExtra+1+len(stk) < len(cpuprof.extra) {
    		i := cpuprof.numExtra
    		cpuprof.extra[i] = uintptr(1 + len(stk))
    		copy(cpuprof.extra[i+1:], stk)
    		cpuprof.numExtra += 1 + len(stk)
    	} else {
    		cpuprof.lostExtra++
    	}
    
    	prof.signalLock.Store(0)
    }
    
    // addExtra adds the "extra" profiling events,
    // queued by addNonGo, to the profile log.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/crypto/tls/ticket.go

    		!unmarshalCertificate(&s, &cert) {
    		return nil, errors.New("tls: invalid session encoding")
    	}
    	for !extra.Empty() {
    		var e []byte
    		if !readUint24LengthPrefixed(&extra, &e) {
    			return nil, errors.New("tls: invalid session encoding")
    		}
    		ss.Extra = append(ss.Extra, e)
    	}
    	switch extMasterSecret {
    	case 0:
    		ss.extMasterSecret = false
    	case 1:
    		ss.extMasterSecret = true
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "duplicate extra mapping key",
    			in: api.ClaimMappings{
    				Username: api.PrefixedClaimOrExpression{Expression: "claims.username"},
    				Groups:   api.PrefixedClaimOrExpression{Expression: "claims.groups"},
    				Extra: []api.ExtraMapping{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                    configurations {
                        foo.attributes { $freeDebug; attribute(extra, 'extra') }
                        foo2.attributes { $freeDebug; attribute(extra, 'extra 2') }
                        bar.attributes { $freeRelease; attribute(extra, 'extra') }
                        bar2.attributes { $freeRelease; attribute(extra, 'extra 2') }
                    }
                    task fooJar(type: Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  10. src/internal/trace/oldtrace.go

    // descriptive error for invalid events.
    func (it *oldTraceConverter) next() (Event, error) {
    	if len(it.extra) > 0 {
    		ev := it.extra[0]
    		it.extra = it.extra[1:]
    
    		if len(it.extra) == 0 {
    			it.extra = it.extraArr[:0]
    		}
    		// Two events aren't allowed to fall on the same timestamp in the new API,
    		// but this may happen when we produce EvGoStatus events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top