Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,289 for creat (0.08 sec)

  1. cmd/admin-handlers-users_test.go

    	defer cancel()
    
    	err := s.client.MakeBucket(ctx, "public", minio.MakeBucketOptions{})
    	if err != nil {
    		c.Fatalf("bucket creat error: %v", err)
    	}
    
    	err = s.client.MakeBucket(ctx, "private", minio.MakeBucketOptions{})
    	if err != nil {
    		c.Fatalf("bucket creat error: %v", err)
    	}
    
    	pubPolicyBytes := []byte(`{
     "Version": "2012-10-17",
     "Statement": [
      {
       "Effect": "Allow",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    func Chmod(path string, mode uint32) (err error) {
    	return Fchmodat(AT_FDCWD, path, mode, 0)
    }
    
    func Chown(path string, uid int, gid int) (err error) {
    	return Fchownat(AT_FDCWD, path, uid, gid, 0)
    }
    
    func Creat(path string, mode uint32) (fd int, err error) {
    	return Open(path, O_CREAT|O_WRONLY|O_TRUNC, mode)
    }
    
    //sys	utimes(path string, times *[2]Timeval) (err error)
    
    func Utimes(path string, tv []Timeval) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    //sys	Chown(path string, uid int, gid int) (err error)
    //sys	Chroot(path string) (err error)
    //sys	ClockGettime(clockid int32, time *Timespec) (err error)
    //sys	Close(fd int) (err error)
    //sys	Creat(path string, mode uint32) (fd int, err error)
    //sys	Dup(fd int) (nfd int, err error)
    //sys	Dup2(oldfd int, newfd int) (err error)
    //sys	Exit(code int)
    //sys	Faccessat(dirfd int, path string, mode uint32, flags int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux.go

    func Chmod(path string, mode uint32) (err error) {
    	return Fchmodat(_AT_FDCWD, path, mode, 0)
    }
    
    func Chown(path string, uid int, gid int) (err error) {
    	return Fchownat(_AT_FDCWD, path, uid, gid, 0)
    }
    
    func Creat(path string, mode uint32) (fd int, err error) {
    	return Open(path, O_CREAT|O_WRONLY|O_TRUNC, mode)
    }
    
    func EpollCreate(size int) (fd int, err error) {
    	if size <= 0 {
    		return -1, EINVAL
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. docs/es/docs/tutorial/first-steps.md

    ### Paso 2: crea un "instance" de `FastAPI`
    
    ```Python hl_lines="3"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Aquí la variable `app` será un instance de la clase `FastAPI`.
    
    Este será el punto de interacción principal para crear todo tu API.
    
    Esta `app` es la misma a la que nos referimos cuando usamos el comando de `uvicorn`:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    If not, follow these step to initialize a new Gradle project on GitHub.
    
    === Create a new GitHub repository for your project
    
    Via the GitHub user interface, create a new repository named `github-actions-gradle-sample`.
    
    image::ci-systems/github-actions-create-repository.png[Create new GitHub repository]
    
    === Clone the repository locally
    
    [listing.terminal.sample-command]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    =====
    
    == Step 2. Add another Subproject to the Build
    Imagine that our project is growing and requires a custom library to function.
    
    Let's create this imaginary `lib`.
    First, create a `lib` folder:
    
    [source,text]
    ----
    mkdir lib
    ----
    
    [source,text]
    ----
    cd lib
    ----
    
    Create a file called `build.gradle(.kts)` and add the following lines to it:
    
    [.multi-language-sample]
    =====
    .lib/build.gradle.kts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching_test.go

    				}},
    			},
    			attrs:         admission.NewAttributesRecord(nil, nil, gvk("autoscaling", "v1", "Scale"), "ns", "name", gvr("extensions", "v1beta1", "deployments"), "", admission.Create, &metav1.CreateOptions{}, false, nil),
    			expectMatches: false,
    		},
    		{
    			name: "treat empty ResourceRules as match",
    			criteria: &v1.MatchResources{
    				NamespaceSelector: &metav1.LabelSelector{},
    				ObjectSelector:    &metav1.LabelSelector{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top