Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for RECORD (0.12 sec)

  1. src/crypto/tls/conn.go

    			record = append(record, record[0])
    			record[0] = byte(recordTypeApplicationData)
    
    			n := len(payload) + 1 + c.Overhead()
    			record[3] = byte(n >> 8)
    			record[4] = byte(n)
    
    			record = c.Seal(record[:recordHeaderLen],
    				nonce, record[recordHeaderLen:], record[:recordHeaderLen])
    		} else {
    			additionalData := append(hc.scratchBuf[:0], hc.seq[:]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    }
    
    // Go interface to profile data.
    
    // A StackRecord describes a single execution stack.
    type StackRecord struct {
    	Stack0 [32]uintptr // stack trace for this record; ends at first 0 entry
    }
    
    // Stack returns the stack trace associated with the record,
    // a prefix of r.Stack0.
    func (r *StackRecord) Stack() []uintptr {
    	for i, v := range r.Stack0 {
    		if v == 0 {
    			return r.Stack0[0:i]
    		}
    	}
    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/crypto/tls/handshake_client_test.go

    			t.Fatal(err)
    		}
    		recordLen := int(header[3])<<8 | int(header[4])
    
    		record := make([]byte, recordLen)
    		if _, err := io.ReadFull(s, record[:]); err != nil {
    			t.Fatal(err)
    		}
    
    		c.Close()
    		s.Close()
    
    		var m clientHelloMsg
    		if !m.unmarshal(record) {
    			t.Errorf("unmarshaling ClientHello for %q failed", tt.in)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    	// Orphan deleted pods that still have a Job tracking finalizer to be removed
    	orphanQueue workqueue.TypedRateLimitingInterface[string]
    
    	broadcaster record.EventBroadcaster
    	recorder    record.EventRecorder
    
    	clock clock.WithTicker
    
    	// Store with information to compute the expotential backoff delay for pod
    	// recreation in case of pod failures.
    	podBackoffStore *backoffStore
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

        # instead of jsonPayload after extracting 'time', 'severity' and
        # 'stream' from the record.
        message ${record['log']}
        # If 'severity' is not set, assume stderr is ERROR and stdout is INFO.
        severity ${record['severity'] || if record['stream'] == 'stderr' then 'ERROR' else 'INFO' end}
      </record>
      tag ${if record['stream'] == 'stderr' then 'raw.stderr' else 'raw.stdout' end}
      remove_keys stream,log
    </match>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    	return !exists // already exists
    }
    
    // Removes the Special record of the given kind for the object p.
    // Returns the record if the record existed, nil otherwise.
    // The caller must FixAlloc_Free the result.
    func removespecial(p unsafe.Pointer, kind uint8) *special {
    	span := spanOfHeap(uintptr(p))
    	if span == nil {
    		throw("removespecial on invalid pointer")
    	}
    
    	// Ensure that the span is swept.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    may also be untyped, but not constant.
    
    Untyped expressions may eventually become fully typed (i.e., not untyped),
    typically when the value is assigned to a variable, or is used otherwise.
    The updateExprType method is used to record this final type and update
    the recorded types: the type-checked expression tree is again traversed down,
    and the new type is propagated as needed. Untyped constant expression values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server_test.go

    	}()
    
    	Server(s, testConfig).Handshake()
    	buf := <-bufChan
    
    	if len(buf) < 5+4 {
    		t.Fatalf("Server returned short message of length %d", len(buf))
    	}
    	// buf contains a TLS record, with a 5 byte record header and a 4 byte
    	// handshake header. The length of the ServerHello is taken from the
    	// handshake header.
    	serverHelloLen := int(buf[6])<<16 | int(buf[7])<<8 | int(buf[8])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    may also be untyped, but not constant.
    
    Untyped expressions may eventually become fully typed (i.e., not untyped),
    typically when the value is assigned to a variable, or is used otherwise.
    The updateExprType method is used to record this final type and update
    the recorded types: the type-checked expression tree is again traversed down,
    and the new type is propagated as needed. Untyped constant expression values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers_test.go

    	"google.golang.org/grpc/status"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/tools/record"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	containertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	"k8s.io/kubernetes/pkg/kubelet/util/queue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top