Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 141 for linkname (0.88 sec)

  1. schema/schema.go

    			}
    		}
    	}
    
    	for _, field := range schema.Fields {
    		if field.DBName == "" && field.DataType != "" {
    			field.DBName = namer.ColumnName(schema.Table, field.Name)
    		}
    
    		bindName := field.BindName()
    		if field.DBName != "" {
    			// nonexistence or shortest path or first appear prioritized if has permission
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/go/types/stdlib_test.go

    		"directive2.go",  // tests compiler rejection of bad directive placement - ignore
    		"embedfunc.go",   // tests //go:embed
    		"embedvers.go",   // tests //go:embed
    		"linkname2.go",   // go/types doesn't check validity of //go:xxx directives
    		"linkname3.go",   // go/types doesn't check validity of //go:xxx directives
    	)
    }
    
    func TestStdFixed(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/stdlib_test.go

    		"directive2.go",  // tests compiler rejection of bad directive placement - ignore
    		"embedfunc.go",   // tests //go:embed
    		"embedvers.go",   // tests //go:embed
    		"linkname2.go",   // types2 doesn't check validity of //go:xxx directives
    		"linkname3.go",   // types2 doesn't check validity of //go:xxx directives
    	)
    }
    
    func TestStdFixed(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/certs.go

    		// get the cobra.Command skeleton for this command
    		cmd := &cobra.Command{
    			Use:   handler.Name,
    			Short: fmt.Sprintf("Renew the %s", handler.LongName),
    			Long:  fmt.Sprintf(genericCertRenewLongDesc, handler.LongName),
    		}
    		addRenewFlags(cmd, flags)
    		// get the implementation of renewing this certificate
    		renewalFunc := func(handler *renewal.CertificateRenewHandler) func() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/certs.go

    	phase := workflow.Phase{
    		Name:  certSpec.Name,
    		Short: fmt.Sprintf("Generate the %s", certSpec.LongName),
    		Long: fmt.Sprintf(
    			genericLongDesc,
    			certSpec.LongName,
    			certSpec.BaseName,
    			getSANDescription(certSpec),
    		),
    		Run:          run,
    		InheritFlags: getCertPhaseFlags(certSpec.Name),
    	}
    	return phase
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go

    func UnsafeGuessKindToResource(kind schema.GroupVersionKind) ( /*plural*/ schema.GroupVersionResource /*singular*/, schema.GroupVersionResource) {
    	kindName := kind.Kind
    	if len(kindName) == 0 {
    		return schema.GroupVersionResource{}, schema.GroupVersionResource{}
    	}
    	singularName := strings.ToLower(kindName)
    	singular := kind.GroupVersion().WithResource(singularName)
    
    	for _, skip := range unpluralizedSuffixes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 01:55:47 UTC 2021
    - 16.1K bytes
    - Viewed (0)
  7. src/runtime/syscall_windows.go

    	KeepAlive(filename)
    	if handle != 0 {
    		err = 0
    	}
    	return
    }
    
    // golang.org/x/sys linknames syscall.loadlibrary
    // (in addition to standard package syscall).
    // Do not remove or change the type signature.
    //
    //go:linkname syscall_loadlibrary syscall.loadlibrary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/testing/testvolumespec.go

    // GetTestVolumeSpec returns a test volume spec
    func GetTestVolumeSpec(volumeName string, diskName v1.UniqueVolumeName) *volume.Spec {
    	return &volume.Spec{
    		Volume: &v1.Volume{
    			Name: volumeName,
    			VolumeSource: v1.VolumeSource{
    				GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    					PDName:   string(diskName),
    					FSType:   "fake",
    					ReadOnly: false,
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 17 08:48:30 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi.go

    	FilterVolume: func(vol *v1.Volume) (string, bool) {
    		if vol.AzureDisk != nil {
    			return vol.AzureDisk.DiskName, true
    		}
    		return "", false
    	},
    
    	FilterPersistentVolume: func(pv *v1.PersistentVolume) (string, bool) {
    		if pv.Spec.AzureDisk != nil {
    			return pv.Spec.AzureDisk.DiskName, true
    		}
    		return "", false
    	},
    
    	MatchProvisioner: func(sc *storage.StorageClass) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.ReplicaSet.yaml

          - awsElasticBlockStore:
              fsType: fsTypeValue
              partition: 3
              readOnly: true
              volumeID: volumeIDValue
            azureDisk:
              cachingMode: cachingModeValue
              diskName: diskNameValue
              diskURI: diskURIValue
              fsType: fsTypeValue
              kind: kindValue
              readOnly: true
            azureFile:
              readOnly: true
              secretName: secretNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.2K bytes
    - Viewed (0)
Back to top