Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for pvs2 (0.04 sec)

  1. association.go

    					tx.Where(clause.Eq{Column: ref.ForeignKey.DBName, Value: ref.PrimaryValue})
    				}
    			}
    
    			if _, pvs := schema.GetIdentityFieldValuesMap(association.DB.Statement.Context, reflectValue, primaryFields); len(pvs) > 0 {
    				column, values := schema.ToQueryValues(rel.FieldSchema.Table, foreignKeys, pvs)
    				if association.Unscope {
    					association.Error = tx.Where(clause.IN{Column: column, Values: values}).Delete(modelValue).Error
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    	XXLOR VS1, VS2, VS3             // f0611490
    	XXLORC VS1, VS2, VS3            // f0611550
    	XXLORQ VS1, VS2, VS3            // f0611490
    	XXLXOR VS1, VS2, VS3            // f06114d0
    	XXSEL VS1, VS2, VS3, VS4        // f08110f0
    	XXSEL VS33, VS34, VS35, VS36    // f08110ff
    	XXSEL V1, V2, V3, V4            // f08110ff
    	XXMRGHW VS1, VS2, VS3           // f0611090
    	XXMRGLW VS1, VS2, VS3           // f0611190
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. callbacks/preload.go

    		if len(foreignValues) == 0 {
    			return nil
    		}
    	}
    
    	// nested preload
    	for p, pvs := range preloads {
    		tx = tx.Preload(p, pvs...)
    	}
    
    	reflectResults := rel.FieldSchema.MakeSlice().Elem()
    	column, values := schema.ToQueryValues(clause.CurrentTable, relForeignKeys, foreignValues)
    
    	if len(values) != 0 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. src/cmd/cover/cover.go

    // Tests are TestHtmlUnformatted and TestLineDup.
    // We use a map to avoid duplicates.
    
    // pos2 is a pair of token.Position values, used as a map key type.
    type pos2 struct {
    	p1, p2 token.Position
    }
    
    // seenPos2 tracks whether we have seen a token.Position pair.
    var seenPos2 = make(map[pos2]bool)
    
    // dedup takes a token.Position pair and returns a pair that does not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/types.go

    	// mountOptions controls the mountOptions for dynamically provisioned PersistentVolumes of this storage class.
    	// e.g. ["ro", "soft"]. Not validated -
    	// mount of the PVs will simply fail if one is invalid.
    	// +optional
    	// +listType=atomic
    	MountOptions []string `json:"mountOptions,omitempty" protobuf:"bytes,5,opt,name=mountOptions"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_generator.go

    	VerifyControllerAttachedVolumeOpName string = "verify_controller_attached_volume"
    )
    
    // InTreeToCSITranslator contains methods required to check migratable status
    // and perform translations from InTree PVs and Inline to CSI
    type InTreeToCSITranslator interface {
    	IsPVMigratable(pv *v1.PersistentVolume) bool
    	IsInlineMigratable(vol *v1.Volume) bool
    	IsMigratableIntreePluginByName(inTreePluginName string) bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	fx.AssertEmpty(t, 0)
    
    	// create vs1 in nsA
    	createVirtualService(controller, "vs1", nsA, map[string]string{}, t)
    
    	// create vs1 in nsB
    	createVirtualService(controller, "vs2", nsB, map[string]string{}, t)
    
    	// expand namespaces to nsA and nsB with selectors (expect events svc3 and a full push event for nsB selected)
    	updateMeshConfig(
    		&meshconfig.MeshConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// persistent volumes at the same time.
    	//
    	// +optional
    	Ephemeral *EphemeralVolumeSource
    }
    
    // PersistentVolumeSource is similar to VolumeSource but meant for the administrator who creates PVs.
    // Exactly one of its members must be set.
    type PersistentVolumeSource struct {
    	// GCEPersistentDisk represents a GCE Disk resource that is attached to a
    	// kubelet's host machine and then exposed to the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - For statically provisioned PVs, if their volume source is of CSI type or they have a migrated annotation, when they are deleted, the PersistentVolume controller won't change their phase to the Failed state. With this patch, the external provisioner can remove the finalizer in the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    - The `volume_zone` plugin will consider `beta` labels as `GA` labels during the scheduling
      process. Therefore, if the values of the labels are the same, PVs with `beta` labels
      can also be scheduled to nodes with `GA` labels. ([#118923](https://github.com/kubernetes/kubernetes/pull/118923), [@AxeZhan](https://github.com/AxeZhan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top