Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,536 for Eaccess (0.17 sec)

  1. pkg/volume/csi/csi_client_test.go

    		volumeData         VolumeStatsOptions
    		success            bool
    	}{
    		{
    			name:               "when nodeVolumeStats=on, VolumeID=on, DeviceMountPath=on, VolumeCondition=on",
    			volumeStatsSet:     true,
    			volumeConditionSet: true,
    			volumeData: VolumeStatsOptions{
    				VolumeSpec:      spec,
    				VolumeID:        "volume1",
    				DeviceMountPath: "/foo/bar",
    			},
    			success: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. src/syscall/security_windows.go

    // process executed on behalf of the user has a copy of the token.
    // The token identifies the user, the user's groups, and the user's
    // privileges. The system uses the token to control access to securable
    // objects and to control the ability of the user to perform various
    // system-related operations on the local computer.
    type Token Handle
    
    // OpenCurrentProcessToken opens the access token
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AggregateFuture.java

      /**
       * The input futures. After {@link #init}, this field is read only by {@link #afterDone()} (to
       * propagate cancellation) and {@link #toString()}. To access the futures' <i>values</i>, {@code
       * AggregateFuture} attaches listeners that hold references to one or more inputs. And in the case
       * of {@link CombinedFuture}, the user-supplied callback usually has its own references to inputs.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. docs/bucket/replication/setup_3site_replication.sh

    echo "Verifying ETag for all objects"
    ./s3-check-md5 -versions -access-key minio -secret-key minio123 -endpoint http://127.0.0.1:9001/ -bucket bucket
    ./s3-check-md5 -versions -access-key minio -secret-key minio123 -endpoint http://127.0.0.1:9002/ -bucket bucket
    ./s3-check-md5 -versions -access-key minio -secret-key minio123 -endpoint http://127.0.0.1:9003/ -bucket bucket
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    // The remote service is expected to fill the SubjectAccessReviewStatus field to either allow or
    // disallow access. A permissive response would return:
    //
    //	{
    //	  "apiVersion": "authorization.k8s.io/v1beta1",
    //	  "kind": "SubjectAccessReview",
    //	  "status": {
    //	    "allowed": true
    //	  }
    //	}
    //
    // To disallow access, the remote service would return:
    //
    //	{
    //	  "apiVersion": "authorization.k8s.io/v1beta1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

      /**
       * The input futures. After {@link #init}, this field is read only by {@link #afterDone()} (to
       * propagate cancellation) and {@link #toString()}. To access the futures' <i>values</i>, {@code
       * AggregateFuture} attaches listeners that hold references to one or more inputs. And in the case
       * of {@link CombinedFuture}, the user-supplied callback usually has its own references to inputs.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

            public FieldVisitor visitField(int access, String name, String desc, String signature, Object value) {
                if (((access & PUBLIC_STATIC_FINAL) == PUBLIC_STATIC_FINAL) && Type.getDescriptor(String.class).equals(desc)) {
                    missingStaticStringConstantGetters.put("get" + name, name);
                }
                if (((access & Opcodes.ACC_PRIVATE) > 0) && !isStatic(access) && Type.getDescriptor(boolean.class).equals(desc)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/accesslog.go

    		return cal
    	}
    
    	// We need to build access log. This is needed either on first access or when mesh config changes.
    	lal := model.FileAccessLogFromMeshConfig(mesh.AccessLogFile, mesh)
    	// We add ResponseFlagFilter here, as we want to get listener access logs only on scenarios where we might
    	// not get filter Access Logs like in cases like NR to upstream.
    	lal.Filter = addAccessLogFilter()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

      context_->Ref();
    
      device_mgr_ = CreateDeviceMgr(device_type_);
      if (!device_mgr_) return failure();
    
      // Type of params_.device is DeviceBase* so store it as Device* to access
      // derived class method.
      device_ = device_mgr_->ListDevices().front();
      params_.device = device_;
      params_.resource_manager = device_->resource_manager();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. docs/sts/ldap.md

    ## API Request Parameters
    
    ### LDAPUsername
    
    Is AD/LDAP username to login. Application must ask user for this value to successfully obtain rotating access credentials from AssumeRoleWithLDAPIdentity.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top