Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 107 for recordLine (0.38 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/AbstractDevelocityInputIgnoringServiceIntegrationTest.groovy

            // TODO(mlopatkin) Accessing the value source in the background job should not make it an input,
            //  so the configuration should be loaded from the cache. A naive solution of gating the input
            //  recording will break the other test as only the first value source read is broadcasted to
            //  listeners.
            configurationCache.assertStateStored() // TODO: replace with .assertStateLoaded() once the above is implemented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 16:27:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    // conventions.
    func NewStack(name string, depth int) *StackCounter {
    	return counter.NewStack(name, depth)
    }
    
    // Open prepares telemetry counters for recording to the file system.
    //
    // If the telemetry mode is "off", Open is a no-op. Otherwise, it opens the
    // counter file on disk and starts to mmap telemetry counters to the file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. pkg/controller/util/node/controller_utils.go

    	logger := klog.FromContext(ctx)
    	ref := &v1.ObjectReference{
    		APIVersion: "v1",
    		Kind:       "Node",
    		Name:       nodeName,
    		UID:        types.UID(nodeUID),
    		Namespace:  "",
    	}
    	logger.V(2).Info("Recording event message for node", "event", event, "node", klog.KRef("", nodeName))
    	recorder.Eventf(ref, eventtype, reason, "Node %s event: %s", nodeName, event)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/help.go

    		n += n0
    		if err != nil {
    			return n, err
    		}
    		if b == '\n' {
    			c.wroteSlashes = false
    		}
    	}
    	return len(p), nil
    }
    
    // An errWriter wraps a writer, recording whether a write error occurred.
    type errWriter struct {
    	w   io.Writer
    	err error
    }
    
    func (w *errWriter) Write(b []byte) (int, error) {
    	n, err := w.w.Write(b)
    	if err != nil {
    		w.err = err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. internal/http/response-recorder.go

    	LogAllBody bool
    
    	TimeToFirstByte time.Duration
    	StartTime       time.Time
    	// number of bytes written
    	bytesWritten int
    	// number of bytes of response headers written
    	headerBytesWritten int
    	// Internal recording buffer
    	headers bytes.Buffer
    	body    bytes.Buffer
    	// Indicate if headers are written in the log
    	headersLogged bool
    }
    
    // Hijack - hijacks the underlying connection
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 00:13:19 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/ztunnelserver.go

    }
    
    func (c *connMgr) addConn(conn *ZtunnelConnection) {
    	log.Debug("ztunnel connected")
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	c.connectionSet[conn] = struct{}{}
    	c.latestConn = conn
    	ztunnelConnected.RecordInt(int64(len(c.connectionSet)))
    }
    
    func (c *connMgr) LatestConn() *ZtunnelConnection {
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	return c.latestConn
    }
    
    func (c *connMgr) deleteConn(conn *ZtunnelConnection) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. pilot/pkg/xds/monitoring.go

    }
    
    func recordPushTriggers(reasons model.ReasonStats) {
    	for r, cnt := range reasons {
    		t, f := triggerMetric[r]
    		if f {
    			t.RecordInt(int64(cnt))
    		} else {
    			pushTriggers.With(typeTag.Value(string(r))).Increment()
    		}
    	}
    }
    
    func isUnexpectedError(err error) bool {
    	s, ok := status.FromError(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storagemigration/v1alpha1/types.go

    	// "Running", users can use this token to check the progress of the
    	// migration.
    	// +optional
    	ContinueToken string `json:"continueToken,omitempty" protobuf:"bytes,2,opt,name=continueToken"`
    	// TODO: consider recording the storage version hash when the migration
    	// is created. It can avoid races.
    }
    
    // The names of the group, the version, and the resource.
    type GroupVersionResource struct {
    	// The name of the group.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/alias.go

    	if check != nil {
    		check.needsCleanup(a)
    	}
    
    	return a
    }
    
    // newAliasInstance creates a new alias instance for the given origin and type
    // arguments, recording pos as the position of its synthetic object (for error
    // reporting).
    func (check *Checker) newAliasInstance(pos syntax.Pos, orig *Alias, targs []Type, ctxt *Context) *Alias {
    	assert(len(targs) > 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/snapshot.go

    				Size:     image.SizeBytes,
    				NumNodes: imageExistenceMap[name].Len(),
    			}
    		}
    	}
    	return imageStates
    }
    
    // createImageExistenceMap returns a map recording on which nodes the images exist, keyed by the images' names.
    func createImageExistenceMap(nodes []*v1.Node) map[string]sets.Set[string] {
    	imageExistenceMap := make(map[string]sets.Set[string])
    	for _, node := range nodes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top