Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 165 for tracking (0.34 sec)

  1. src/internal/trace/summary.go

    	// Used to correctly identify and clean up after syscalls (blocking or otherwise).
    	syscallingP map[ProcID]GoID
    	syscallingG map[GoID]ProcID
    
    	// rangesP is used for optimistic tracking of P-based ranges for goroutines.
    	//
    	// It's a best-effort mapping of an active range on a P to the goroutine we think
    	// is associated with it.
    	rangesP map[rangeP]GoID
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/named.go

    // finished). It is critical that we keep track of state, so that Named types
    // are constructed exactly once and so that we do not access their details too
    // soon.
    //
    // We achieve this by tracking state with an atomic state variable, and
    // guarding potentially concurrent calculations with a mutex. At any point in
    // time this state variable determines which data on N may be accessed. As
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/tracing.go

    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: meshID,
    				},
    			},
    		},
    		{
    			Tag: "istio.namespace",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: namespace,
    				},
    			},
    		},
    		{
    			Tag: "istio.cluster_id",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	if equal && certsRenewMgr != nil {
    		fmt.Printf("[upgrade/staticpods] Restarting the %s static pod and backing up its manifest to %q\n",
    			component, backupManifestPath)
    	} else {
    		fmt.Printf("[upgrade/staticpods] Moving new manifest to %q and backing up old manifest to %q\n",
    			currentManifestPath, backupManifestPath)
    	}
    
    	// Move the old manifest into the old-manifests directory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/go/types/named.go

    // finished). It is critical that we keep track of state, so that Named types
    // are constructed exactly once and so that we do not access their details too
    // soon.
    //
    // We achieve this by tracking state with an atomic state variable, and
    // guarding potentially concurrent calculations with a mutex. At any point in
    // time this state variable determines which data on N may be accessed. As
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// +optional
    	AcceptedNames CustomResourceDefinitionNames `json:"acceptedNames" protobuf:"bytes,2,opt,name=acceptedNames"`
    
    	// storedVersions lists all versions of CustomResources that were ever persisted. Tracking these
    	// versions allows a migration path for stored versions in etcd. The field is mutable
    	// so a migration controller can finish a migration to another version (ensuring
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. src/go/types/decl.go

    			// With Go1.23, the default behavior is to use Alias nodes,
    			// reflected by check.enableAlias. Signal non-default behavior.
    			//
    			// TODO(gri) Testing runs tests in both modes. Do we need to exclude
    			//           tracking of non-default behavior for tests?
    			gotypesalias.IncNonDefault()
    
    			if !versionErr && tparam0 != nil {
    				check.error(tdecl, UnsupportedFeature, "generic type alias requires GODEBUG=gotypesalias=1 or unset")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. cmd/xl-storage-disk-id-check.go

    	// - missing format.json (unformatted drive)
    	// - format.json is valid but invalid 'uuid'
    	if err = p.checkDiskStale(); err != nil {
    		return ctx, done, err
    	}
    
    	// Disallow recursive tracking to avoid deadlocks.
    	if ctx.Value(healthDiskCtxKey{}) != nil {
    		done = p.updateStorageMetrics(s, paths...)
    		return ctx, done, nil
    	}
    
    	if contextCanceled(ctx) {
    		return ctx, done, ctx.Err()
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. src/internal/trace/event.go

    //
    // Note that for thread state transitions this always refers to the
    // state before the transition. For example, if a thread is just
    // starting to run, then this will return NoThread.
    //
    // Note: tracking thread state is not currently supported, so this
    // will always return a valid thread ID. However thread state transitions
    // may be tracked in the future, and callers must be robust to this
    // possibility.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. pkg/apis/batch/types.go

    	// 1.27+, one release after JobTrackingWithFinalizers graduates to GA, the
    	// apiserver and job controller will ignore this annotation and they will
    	// always track jobs using finalizers.
    	JobTrackingFinalizer = labelPrefix + "job-tracking"
    	// LegacyJobName and LegacyControllerUid are legacy labels that were set using unprefixed labels.
    	LegacyJobNameLabel       = "job-name"
    	LegacyControllerUidLabel = "controller-uid"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top