Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 7,778 for creat (0.2 sec)

  1. callbacks/create.go

    				if i, ok := value.(BeforeCreateInterface); ok {
    					called = true
    					db.AddError(i.BeforeCreate(tx))
    				}
    			}
    			return called
    		})
    	}
    }
    
    // Create create hook
    func Create(config *Config) func(db *gorm.DB) {
    	supportReturning := utils.Contains(config.CreateClauses, "RETURNING")
    
    	return func(db *gorm.DB) {
    		if db.Error != nil {
    			return
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // See the full documentation at:
    // http://man7.org/linux/man-pages/man3/keyctl_get_keyring_ID.3.html
    func KeyctlGetKeyringID(id int, create bool) (ringid int, err error) {
    	createInt := 0
    	if create {
    		createInt = 1
    	}
    	return KeyctlInt(KEYCTL_GET_KEYRING_ID, id, createInt, 0, 0)
    }
    
    // KeyctlSetperm implements the KEYCTL_SETPERM command. The perm value is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. prow/buildx-create

      docker run --rm --privileged gcr.io/istio-testing/qemu-user-static --reset -p yes
    fi
    
    export DOCKER_CLI_EXPERIMENTAL=enabled
    if ! docker buildx ls | grep -q container-builder; then
      docker buildx create --driver-opt network=host,image=gcr.io/istio-testing/buildkit:v0.11.0 --name container-builder --buildkitd-flags="--debug"
      # Pre-warm the builder. If it fails, fetch logs, but continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 25 21:24:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/create.go

    	"k8s.io/apiserver/pkg/storage/names"
    	"k8s.io/apiserver/pkg/warning"
    )
    
    // RESTCreateStrategy defines the minimum validation, accepted input, and
    // name generation behavior to create an object that follows Kubernetes
    // API conventions.
    type RESTCreateStrategy interface {
    	runtime.ObjectTyper
    	// The name generator is used when the standard GenerateName field is set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/artifacts/kustomization/should-not-create.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: should-not-create-map
    data:
      altGreeting: "Good Morning!"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:29:27 UTC 2019
    - 131 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Creat(path string, mode uint32) (fd int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	runtime.EnterSyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-create-project.png

    teamcity-create-project.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sys   Chdir(path string) (err error) = SYS___CHDIR_A
    //sys	Chown(path string, uid int, gid int) (err error) = SYS___CHOWN_A
    //sys	Chmod(path string, mode uint32) (err error) = SYS___CHMOD_A
    //sys   Creat(path string, mode uint32) (fd int, err error) = SYS___CREAT_A
    //sys	Dup(oldfd int) (fd int, err error)
    //sys	Dup2(oldfd int, newfd int) (err error)
    //sys	Dup3(oldfd int, newfd int, flags int) (err error) = SYS_DUP3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-create-repository.png

    github-actions-create-repository.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 19:03:12 UTC 2024
    - 311.9K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    Michael Anthony Knyszek <******@****.***> 1716583527 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top