Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 263 for Eaccess (0.17 sec)

  1. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// data.
    ///
    /// We prefer to have these structures instead of passing `void*` into
    /// method signatures to have some type of type safety: for example, operations
    /// that are only valid on random access files have a `TF_RandomAccessFile`
    /// argument.
    ///
    /// Lifetime: The wrapper data structures are owned by core TensorFlow. The data
    /// pointed to by the `void*` members is always owned by the plugin. The plugin
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

        frame_start = frame_end + 1;
    
        // First, try the optimistic mode.
        bool success = false;
        if (enable_optimistic && !cur_frame_name.empty()) {
          TF_RETURN_IF_ERROR(
              PopulateFrame(sub_topo, /*use_optimistic_mode=*/true, &success));
        }
        if (!success) {
          // The optimistic mode does not converge.  Let's fall back to the
          // pessimistic mode.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    		return InvalidHandle, err
    	}
    	var access uint32
    	switch mode & (O_RDONLY | O_WRONLY | O_RDWR) {
    	case O_RDONLY:
    		access = GENERIC_READ
    	case O_WRONLY:
    		access = GENERIC_WRITE
    	case O_RDWR:
    		access = GENERIC_READ | GENERIC_WRITE
    	}
    	if mode&O_CREAT != 0 {
    		access |= GENERIC_WRITE
    	}
    	if mode&O_APPEND != 0 {
    		access &^= GENERIC_WRITE
    		access |= FILE_APPEND_DATA
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	// exceed Go's 48 bit limit, it's extremely unlikely in
    	// practice.
    	//
    	// On 32-bit platforms, we accept the full 32-bit address
    	// space because doing so is cheap.
    	// mips32 only has access to the low 2GB of virtual memory, so
    	// we further limit it to 31 bits.
    	//
    	// On ios/arm64, although 64-bit pointers are presumably
    	// available, pointers are truncated to 33 bits in iOS <14.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users.go

    		return
    	}
    
    	// Permission checks:
    	//
    	// 1. Any type of account (i.e. access keys (previously/still called service
    	// accounts), STS accounts, internal IDP accounts, etc) with the
    	// policy.UpdateServiceAccountAdminAction permission can update any service
    	// account.
    	//
    	// 2. We would like to let a user update their own access keys, however it
    	// is currently blocked pending a re-design. Users are still able to delete
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. cmd/iam-store.go

    	iamUserPolicyMap *xsync.MapOf[string, MappedPolicy]
    
    	// STS accounts are loaded on demand and not via the periodic IAM reload.
    	// map of STS access key to credentials
    	iamSTSAccountsMap map[string]UserIdentity
    	// map of STS access key to policy names
    	iamSTSPolicyMap *xsync.MapOf[string, MappedPolicy]
    
    	// map of group names to group info
    	iamGroupsMap map[string]GroupInfo
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func OpenProcessToken(h Handle, access uint32, token *Token) (err error) {
    	r1, _, e1 := Syscall(procOpenProcessToken.Addr(), 3, uintptr(h), uintptr(access), uintptr(unsafe.Pointer(token)))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func RegCloseKey(key Handle) (regerrno error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier.go

    	kubeLoadBalancerChain utiliptables.Chain = "KUBE-LOAD-BALANCER"
    
    	// kubeIPVSFilterChain filters external access to main netns
    	// https://github.com/kubernetes/kubernetes/issues/72236
    	kubeIPVSFilterChain utiliptables.Chain = "KUBE-IPVS-FILTER"
    
    	// kubeIPVSOutFilterChain filters access to load balancer services from node.
    	// https://github.com/kubernetes/kubernetes/issues/119656
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            run 'copy'
    
            then:
            file('dest').assertHasDescendants('bcd.txt', 'abc.txt.template')
            file('dest/abc.txt.template').text == 'test file with $attr'
        }
    
        def "access source name from file copy details"() {
            given:
            file('path/abc.txt').createFile() << 'content'
            file('path/bcd.txt').createFile()
            buildScript '''
                task copy(type: Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              },
              "resourceAttributes": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.authorization.v1.ResourceAttributes"
                  }
                ],
                "description": "ResourceAuthorizationAttributes describes information for a resource access request"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
Back to top