Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 278 for mode_ (0.05 sec)

  1. src/net/http/fs_test.go

    func TestFileServerNotDirError(t *testing.T) {
    	run(t, func(t *testing.T, mode testMode) {
    		t.Run("Dir", func(t *testing.T) {
    			testFileServerNotDirError(t, mode, func(path string) FileSystem { return Dir(path) })
    		})
    		t.Run("FS", func(t *testing.T) {
    			testFileServerNotDirError(t, mode, func(path string) FileSystem { return FS(os.DirFS(path)) })
    		})
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  2. tests/query_test.go

    	var simpleUser2 SimpleUser
    	if err := DB.Model(&User{}).Select("id").First(&simpleUser2, user.ID).Error; err != nil {
    		t.Fatalf("Failed to query smaller user, got error %v", err)
    	}
    
    	AssertObjEqual(t, user, simpleUser2, "ID")
    
    	var simpleUsers []SimpleUser
    	if err := DB.Model(&User{}).Select("id").Find(&simpleUsers, user.ID).Error; err != nil || len(simpleUsers) != 1 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      bool deletePods = 7;
    
      // The label key to apply to a broken pod when the controller is in labelPods mode.
      string brokenPodLabelKey = 8;
    
      // The label value to apply to a broken pod when the controller is in labelPods mode.
      string brokenPodLabelValue = 9;
    
      // The name of the init container to use for the repairPods mode.
      string initContainerName = 10;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	// create dswp
    	mode := v1.PersistentVolumeFilesystem
    	pv := &v1.PersistentVolume{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "dswp-test-volume-name",
    		},
    		Spec: v1.PersistentVolumeSpec{
    			ClaimRef:   &v1.ObjectReference{Namespace: "ns", Name: "file-bound"},
    			VolumeMode: &mode,
    		},
    	}
    	pvc := &v1.PersistentVolumeClaim{
    		Spec: v1.PersistentVolumeClaimSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [IMPORTANT]
    ====
    Initialization scripts and script plugins do not have type-safe model accessors.
    These limitations will be removed in a future Gradle release.
    ====
    
    The set of type-safe model accessors available is calculated right before evaluating the script body, immediately after the `plugins {}` block.
    Any model elements contributed after that point do not work with type-safe model accessors.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    func Mkdir(path string, mode uint32) (err error) {
    	return Mkdirat(AT_FDCWD, path, mode)
    }
    
    func Mknod(path string, mode uint32, dev int) (err error) {
    	return Mknodat(AT_FDCWD, path, mode, dev)
    }
    
    func Open(path string, mode int, perm uint32) (fd int, err error) {
    	return openat(AT_FDCWD, path, mode|O_LARGEFILE, perm)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func get_MkdiratAddr() *(func(dirfd int, path string, mode uint32) (err error))
    
    var Mkdirat = enter_Mkdirat
    
    func enter_Mkdirat(dirfd int, path string, mode uint32) (err error) {
    	funcref := get_MkdiratAddr()
    	if funcptrtest(GetZosLibVec()+SYS___MKDIRAT_A<<4, "") == 0 {
    		*funcref = impl_Mkdirat
    	} else {
    		*funcref = error_Mkdirat
    	}
    	return (*funcref)(dirfd, path, mode)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.platform.base.binary.BaseBinarySpec.create(java.lang.Class, java.lang.Class, org.gradle.platform.base.internal.ComponentSpecIdentifier, org.gradle.model.internal.core.MutableModelNode, org.gradle.model.internal.core.MutableModelNode, org.gradle.internal.reflect.Instantiator, org.gradle.model.internal.core.NamedEntityInstantiator, org.gradle.api.internal.CollectionCallbackActionDecorator, org.gradle.api.internal.collections.DomainObjectCollectionFactory)> has arguments/return...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Access(path string, mode uint32) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	_, _, e1 := syscall_syscall(libc_access_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(mode), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_access_trampoline_addr uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  10. tests/migrate_test.go

    	}
    }
    
    func TestMigrateTable(t *testing.T) {
    	type TableStruct struct {
    		gorm.Model
    		Name string
    	}
    
    	DB.Migrator().DropTable(&TableStruct{})
    	DB.AutoMigrate(&TableStruct{})
    
    	if !DB.Migrator().HasTable(&TableStruct{}) {
    		t.Fatalf("should found created table")
    	}
    
    	type NewTableStruct struct {
    		gorm.Model
    		Name string
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
Back to top