Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for _objects (0.15 sec)

  1. cmd/metrics-v2.go

    			jtype := toSnake(mj.JobType)
    			var objects, objectsFailed float64
    			var bucket string
    			switch madmin.BatchJobType(mj.JobType) {
    			case madmin.BatchJobReplicate:
    				objects = float64(mj.Replicate.Objects)
    				objectsFailed = float64(mj.Replicate.ObjectsFailed)
    				bucket = mj.Replicate.Bucket
    			case madmin.BatchJobKeyRotate:
    				objects = float64(mj.KeyRotate.Objects)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    				// Read last byte of object
    				fmt.Sprintf("bytes=-%d", 1),
    				// Read all but first byte of object
    				"bytes=1-",
    				// Read first half of object
    				fmt.Sprintf("bytes=%d-%d", 0, objLen/2),
    				// Read last half of object
    				fmt.Sprintf("bytes=-%d", objLen/2),
    				// Read middle half of object
    				fmt.Sprintf("bytes=%d-%d", objLen/4, objLen*3/4),
    				// Read 100MiB of the object from the beginning
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    		// do an additional verification whether object exists when object is deletemarker and request
    		// is from replication
    		if opts.CheckDMReplicationReady {
    			topts := opts
    			topts.VersionID = ""
    			goi, gerr := getObjectInfo(ctx, bucket, object, topts)
    			if gerr == nil || goi.VersionID != "" { // object layer returned more info because object is deleted
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    	tgtArns := cfg.FilterTargetArns(replication.ObjectOpts{
    		Name:     object,
    		SSEC:     ri.SSEC,
    		UserTags: ri.UserTags,
    	})
    	// Lock the object name before starting replication.
    	// Use separate lock that doesn't collide with regular objects.
    	lk := objectAPI.NewNSLock(bucket, "/[replicate]/"+object)
    	lkctx, err := lk.GetLock(ctx, globalOperationTimeout)
    	if err != nil {
    		sendEvent(eventArgs{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    			if err != nil {
    				return err
    			}
    			objects = append(objects, ofiles...)
    		}
    	}
    
    	// NOTE(rsc): On Windows, it is critically important that the
    	// gcc-compiled objects (cgoObjects) be listed after the ordinary
    	// objects in the archive. I do not know why this is.
    	// https://golang.org/issue/2601
    	objects = append(objects, cgoObjects...)
    
    	// Add system object files.
    	for _, syso := range p.SysoFiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	return nil
    }
    func (t *testRESTStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    func (t *testRESTStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	return nil
    }
    func (t *testRESTStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    		},
    	}
    
    	for i, test := range tests {
    		rows, err := printEvent(&test.event, test.options)
    		if err != nil {
    			t.Fatal(err)
    		}
    		for i := range rows {
    			rows[i].Object.Object = nil
    		}
    		if !reflect.DeepEqual(test.expected, rows) {
    			t.Errorf("%d mismatch: %s", i, cmp.Diff(test.expected, rows))
    		}
    	}
    }
    
    func TestPrintEventsResultSorted(t *testing.T) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            """
                class Resolve extends DefaultTask {
                    @Internal
                    final Property<ArtifactCollection> artifacts = project.objects.property(ArtifactCollection)
                    @Console
                    final Property<String> identifier = project.objects.property(String)
    
                    Resolve() {
                        outputs.upToDateWhen { false }
                    }
    
                    @Optional
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    // parallel thread will have its own state object.
    type relocSymState struct {
    	target *Target
    	ldr    *loader.Loader
    	err    *ErrorReporter
    	syms   *ArchSyms
    }
    
    // makeRelocSymState creates a relocSymState container object to
    // pass to relocsym(). If relocsym() calls happen in parallel,
    // each parallel thread should have its own state object.
    func (ctxt *Link) makeRelocSymState() *relocSymState {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	RunOnce(<-chan kubetypes.PodUpdate) ([]RunPodResult, error)
    }
    
    // Dependencies is a bin for things we might consider "injected dependencies" -- objects constructed
    // at runtime that are necessary for running the Kubelet. This is a temporary solution for grouping
    // these objects while we figure out a more comprehensive dependency injection story for the Kubelet.
    type Dependencies struct {
    	Options []Option
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top