Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Subobject (0.21 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    func (so *Subobject) print(ps *printState) {
    	ps.print(so.SubExpr)
    	ps.writeString(".<")
    	ps.print(so.Type)
    	ps.writeString(fmt.Sprintf(" at offset %d>", so.Offset))
    }
    
    func (so *Subobject) Traverse(fn func(AST) bool) {
    	if fn(so) {
    		so.Type.Traverse(fn)
    		so.SubExpr.Traverse(fn)
    	}
    }
    
    func (so *Subobject) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(so) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    				Type:           api.EventTypeWarning,
    				ObjectMeta:     metav1.ObjectMeta{Name: "event2"},
    			},
    			options: printers.GenerateOptions{Wide: true},
    			// Columns: Last Seen, Type, Reason, Object, Subobject, Message, First Seen, Count, Name
    			expected: []metav1.TableRow{{Cells: []interface{}{"2d", "Warning", "Event Reason", "deployment/Deployment Name", "spec.containers{foo}", "kubelet, Node1", "Message Data", "3d", int64(6), "event2"}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    		{Name: "Reason", Type: "string", Description: apiv1.Event{}.SwaggerDoc()["reason"]},
    		{Name: "Object", Type: "string", Description: apiv1.Event{}.SwaggerDoc()["involvedObject"]},
    		{Name: "Subobject", Type: "string", Priority: 1, Description: apiv1.Event{}.InvolvedObject.SwaggerDoc()["fieldPath"]},
    		{Name: "Source", Type: "string", Priority: 1, Description: apiv1.Event{}.SwaggerDoc()["source"]},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    		}
    	}
    }
    
    // Wrapper for calling PutObject API handler tests using streaming signature v4 for both Erasure multiple disks and FS single drive setup.
    func TestAPIPutObjectStreamSigV4Handler(t *testing.T) {
    	defer DetectTestLeak(t)()
    	ExecExtendedObjectLayerAPITest(t, testAPIPutObjectStreamSigV4Handler, []string{"PutObject"})
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. cmd/object-handlers.go

    		metadata[xhttp.AmzObjectTagging] = objTags
    	}
    
    	var (
    		md5hex              = clientETag.String()
    		sha256hex           = ""
    		rd        io.Reader = r.Body
    		s3Err     APIErrorCode
    		putObject = objectAPI.PutObject
    	)
    
    	// Check if put is allowed
    	if s3Err = isPutActionAllowed(ctx, rAuthType, bucket, object, r, policy.PutObjectAction); s3Err != ErrNone {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    	if objInfo.isMultipart() {
    		rinfo.Err = replicateObjectWithMultipart(ctx, c, tgt.Bucket, object, r, objInfo, putOpts)
    	} else {
    		_, rinfo.Err = c.PutObject(ctx, tgt.Bucket, object, r, size, "", "", putOpts)
    	}
    	if rinfo.Err != nil {
    		if minio.ToErrorResponse(rinfo.Err).Code != "PreconditionFailed" {
    			rinfo.ReplicationStatus = replication.Failed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top