Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 981 for RECORD (0.11 sec)

  1. internal/s3select/select.go

    	"github.com/minio/pkg/v3/env"
    	"github.com/minio/simdjson-go"
    	"github.com/pierrec/lz4"
    )
    
    type recordReader interface {
    	// Read a record.
    	// dst is optional but will be used if valid.
    	Read(dst sql.Record) (sql.Record, error)
    	Close() error
    }
    
    const (
    	csvFormat     = "csv"
    	jsonFormat    = "json"
    	parquetFormat = "parquet"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. src/log/slog/doc.go

    # Working with Records
    
    Sometimes a Handler will need to modify a Record
    before passing it on to another Handler or backend.
    A Record contains a mixture of simple public fields (e.g. Time, Level, Message)
    and hidden fields that refer to state (such as attributes) indirectly. This
    means that modifying a simple copy of a Record (e.g. by calling
    [Record.Add] or [Record.AddAttrs] to add attributes)
    may have unexpected effects on the original.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/server.go

    	// ReadRecords returns the content for the n records id through id+n-1.
    	ReadRecords(ctx context.Context, id, n int64) ([][]byte, error)
    
    	// Lookup looks up a record for the given module,
    	// returning the record ID.
    	Lookup(ctx context.Context, m module.Version) (int64, error)
    
    	// ReadTileData reads the content of tile t.
    	// It is only invoked for hash tiles (t.L ≥ 0).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/config/config.go

    	Authorization  apiserver.AuthorizationInfo
    
    	// the general kube client
    	Client *clientset.Clientset
    
    	// the rest config for the master
    	Kubeconfig *restclient.Config
    
    	EventBroadcaster record.EventBroadcaster
    	EventRecorder    record.EventRecorder
    }
    
    type completedConfig struct {
    	*Config
    }
    
    // CompletedConfig same as Config, just to swap private object.
    type CompletedConfig struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 31 09:32:21 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. internal/s3select/json/preader.go

    	dst   chan []jstream.KVS // result of block decode
    	err   error              // any error encountered will be set here
    }
    
    // Read - reads single record.
    // Once Read is called the previous record should no longer be referenced.
    func (r *PReader) Read(dst sql.Record) (sql.Record, error) {
    	// If we have have any records left, return these before any error.
    	for len(r.current) <= r.recordsRead {
    		if r.err != nil {
    			return nil, r.err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 05 04:57:35 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/PluginResolutionResult.java

            this.found = found;
            this.notFoundList = notFoundList;
        }
    
        /**
         * Record that the plugin was not found in some source of plugins.
         */
        public static PluginResolutionResult notFound() {
            return new PluginResolutionResult(null, ImmutableList.of());
        }
    
        /**
         * Record that the plugin was not found in some source of plugins.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/net/http/fcgi/fcgi_test.go

    	recType recType
    	reqId   uint16
    	content []byte
    	raw     []byte
    }{
    	{"single record", typeStdout, 1, nil,
    		[]byte{1, byte(typeStdout), 0, 1, 0, 0, 0, 0},
    	},
    	// this data will have to be split into two records
    	{"two records", typeStdin, 300, make([]byte, 66000),
    		bytes.Join([][]byte{
    			// header for the first record
    			{1, byte(typeStdin), 0x01, 0x2C, 0xFF, 0xFF, 1, 0},
    			make([]byte, 65536),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_pod_control_test.go

    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/tools/record"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/klog/v2/ktesting"
    	_ "k8s.io/kubernetes/pkg/apis/apps/install"
    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/utils/ptr"
    )
    
    func TestStatefulPodControlCreatesPods(t *testing.T) {
    	recorder := record.NewFakeRecorder(10)
    	set := newStatefulSet(3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaExtractionStrategy.java

         * methods defined by {@link org.gradle.model.internal.inspect.ValidationProblemCollector} to record problems with the type. The strategy can both provide a result and record problems, if
         * desired.
         */
        <T> void extract(ModelSchemaExtractionContext<T> extractionContext);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/container_manager_unsupported.go

    limitations under the License.
    */
    
    package cm
    
    import (
    	"fmt"
    
    	"k8s.io/mount-utils"
    
    	v1 "k8s.io/api/core/v1"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/tools/record"
    	internalapi "k8s.io/cri-api/pkg/apis"
    	"k8s.io/kubernetes/pkg/kubelet/cadvisor"
    	"k8s.io/kubernetes/pkg/kubelet/config"
    	"k8s.io/kubernetes/pkg/kubelet/status"
    )
    
    type unsupportedContainerManager struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 11 20:58:03 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top