Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for sesame (0.11 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc_pread pread "libc.so"
    //go:cgo_import_dynamic libc_pwrite pwrite "libc.so"
    //go:cgo_import_dynamic libc_read read "libc.so"
    //go:cgo_import_dynamic libc_readlink readlink "libc.so"
    //go:cgo_import_dynamic libc_rename rename "libc.so"
    //go:cgo_import_dynamic libc_renameat renameat "libc.so"
    //go:cgo_import_dynamic libc_rmdir rmdir "libc.so"
    //go:cgo_import_dynamic libc_lseek lseek "libc.so"
    //go:cgo_import_dynamic libc_select select "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    	return
    }
    
    var libc_readlinkat_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_readlinkat readlinkat "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Rename(from string, to string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(from)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(to)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go

    }
    
    var libc_readlinkat_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_readlinkat readlinkat "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Rename(from string, to string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(from)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(to)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    // that recorded the context, but only when the context is known to be
    // valid and unchanging. The traceback function may also be called
    // deeper in the call stack on the same thread that recorded the
    // context. The traceback function may be called multiple times with
    // the same Context value; it will usually be appropriate to cache the
    // result, if possible, the first time this is called for a specific
    // context value.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

     
    ## Changes by Kind
    
    ### Deprecation
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go

    }
    
    var libc_readlinkat_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_readlinkat readlinkat "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Rename(from string, to string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(from)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(to)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    }
    
    func generatePod(ip, name, namespace, saName, node string, labels map[string]string, annotations map[string]string) *corev1.Pod {
    	automount := false
    	return &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        name,
    			Labels:      labels,
    			Annotations: annotations,
    			Namespace:   namespace,
    		},
    		Spec: corev1.PodSpec{
    			ServiceAccountName:           saName,
    			NodeName:                     node,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      # To join GCE instances to AD, we need to shorten their names, as NetBIOS name
      # must be <= 15 characters, and GKE generated names are longer than that.
      # To perform the join in an automated way, it's preferable to apply the rename
      # and domain join in the GCESysprep step. However, after sysprep is complete
      # and the machine restarts, kubelet bootstrapping should not use the shortened
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DN_BAD_PARTIAL           = 0x00400000        // This devnode's log_confs do not have same resources
    	DN_NT_ENUMERATOR         = 0x00800000        // This devnode's is an NT enumerator
    	DN_NT_DRIVER             = 0x01000000        // This devnode's is an NT driver
    	DN_NEEDS_LOCKING         = 0x02000000        // Devnode need lock resume processing
    	DN_ARM_WAKEUP            = 0x04000000        // Devnode can be the wakeup device
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Gradle introduced additional task and artifact transform validation warnings in the Gradle 7.x series.
    Those warnings are now errors in Gradle 8.0 and will fail the build.
    
    Warnings that became errors:
    
    - An input file collection that can't be resolved.
    - An input or output file or directory that cannot be read.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top