Home
last modified time | relevance | path

Searched refs:resourceAttributes (Results 1 – 25 of 356) sorted by relevance

12345678910>>...15

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/tests/org.eclipse.team.tests.core/src/org/eclipse/team/tests/core/regression/
H A DPessimisticRepositoryProvider.java98 ResourceAttributes resourceAttributes = resource.getResourceAttributes(); in setReadOnly() local
99 if (resourceAttributes != null) { in setReadOnly()
100 resourceAttributes.setReadOnly(readOnly); in setReadOnly()
101 resource.setResourceAttributes(resourceAttributes); in setReadOnly()
106 ResourceAttributes resourceAttributes = resource.getResourceAttributes(); in isReadOnly() local
107 if (resourceAttributes != null) { in isReadOnly()
108 return resourceAttributes.isReadOnly(); in isReadOnly()
H A DBug_217673.java58 ResourceAttributes resourceAttributes = resource in isReadOnly() local
60 return resourceAttributes.isReadOnly(); in isReadOnly()
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/CloudHealthcare/
H A DQueryAccessibleDataRequest.php23 public $resourceAttributes; variable in Google_Service_CloudHealthcare_QueryAccessibleDataRequest
47 public function setResourceAttributes($resourceAttributes) argument
49 $this->resourceAttributes = $resourceAttributes;
53 return $this->resourceAttributes;
H A DEvaluateUserConsentsRequest.php25 public $resourceAttributes; variable in Google_Service_CloudHealthcare_EvaluateUserConsentsRequest
67 public function setResourceAttributes($resourceAttributes) argument
69 $this->resourceAttributes = $resourceAttributes;
73 return $this->resourceAttributes;
H A DGoogleCloudHealthcareV1ConsentPolicy.php43 public function setResourceAttributes($resourceAttributes) argument
45 $this->resourceAttributes = $resourceAttributes;
52 return $this->resourceAttributes;
H A DUserDataMapping.php64 public function setResourceAttributes($resourceAttributes) argument
66 $this->resourceAttributes = $resourceAttributes;
73 return $this->resourceAttributes;
/dports/sysutils/hfsexplorer/hfsexplorer-hfsexplorer-0.23.1/src/java/org/catacombae/hfsexplorer/types/resff/
H A DReferenceListEntry.java45 private final byte[] resourceAttributes = new byte[1]; field in ReferenceListEntry
52 System.arraycopy(data, offset+4, resourceAttributes, 0, 1); in ReferenceListEntry()
64 public byte getResourceAttributes() { return Util.readByteBE(resourceAttributes); } in getResourceAttributes()
97 …System.arraycopy(this.resourceAttributes, 0, result, offset, this.resourceAttributes.length); offs… in getBytes()
H A DReferenceListEntry.struct4 UInt8 resourceAttributes; // Resource attributes
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/ServiceControl/
H A DAuthorizationInfo.php53 …ion setResourceAttributes(Google_Service_ServiceControl_ServicecontrolResource $resourceAttributes) argument
55 $this->resourceAttributes = $resourceAttributes;
62 return $this->resourceAttributes;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/ServiceControl/
H A DAuthorizationInfo.php53 …ion setResourceAttributes(Google_Service_ServiceControl_ServicecontrolResource $resourceAttributes) argument
55 $this->resourceAttributes = $resourceAttributes;
62 return $this->resourceAttributes;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/internal/core/refactoring/resource/undostates/
H A DAbstractResourceUndoState.java44 private ResourceAttributes resourceAttributes; field in AbstractResourceUndoState
63 resourceAttributes= resource.getResourceAttributes(); in AbstractResourceUndoState()
66 if (resourceAttributes != null) { in AbstractResourceUndoState()
113 if (resourceAttributes != null) { in restoreResourceAttributes()
114 resource.setResourceAttributes(resourceAttributes); in restoreResourceAttributes()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/model/
H A DTestPessimisticProvider.java83 ResourceAttributes resourceAttributes = resource.getResourceAttributes(); in getFileModificationValidator2()
84 if (resourceAttributes != null) { in getFileModificationValidator2()
85 resourceAttributes.setReadOnly(readOnly); in getFileModificationValidator2()
86 resource.setResourceAttributes(resourceAttributes); in getFileModificationValidator2()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/resource/
H A DResources.java186 ResourceAttributes resourceAttributes = resource.getResourceAttributes(); in isReadOnly() local
187 if (resourceAttributes == null) // not supported on this platform for this resource in isReadOnly()
189 return resourceAttributes.isReadOnly(); in isReadOnly()
193 ResourceAttributes resourceAttributes = resource.getResourceAttributes(); in setReadOnly() local
194 if (resourceAttributes == null) // not supported on this platform for this resource in setReadOnly()
197 resourceAttributes.setReadOnly(readOnly); in setReadOnly()
199 resource.setResourceAttributes(resourceAttributes); in setReadOnly()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/core extension/org/eclipse/jdt/internal/corext/util/
H A DResources.java226 ResourceAttributes resourceAttributes = resource.getResourceAttributes(); in isReadOnly() local
227 if (resourceAttributes == null) // not supported on this platform for this resource in isReadOnly()
229 return resourceAttributes.isReadOnly(); in isReadOnly()
233 ResourceAttributes resourceAttributes = resource.getResourceAttributes(); in setReadOnly() local
234 if (resourceAttributes == null) // not supported on this platform for this resource in setReadOnly()
237 resourceAttributes.setReadOnly(readOnly); in setReadOnly()
239 resource.setResourceAttributes(resourceAttributes); in setReadOnly()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/undo/
H A DAbstractResourceDescription.java43 ResourceAttributes resourceAttributes; field in AbstractResourceDescription
66 resourceAttributes = resource.getResourceAttributes(); in AbstractResourceDescription()
114 if (resourceAttributes != null) { in restoreResourceAttributes()
115 resource.setResourceAttributes(resourceAttributes); in restoreResourceAttributes()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/
H A DSymlinkDecorator.java70 ResourceAttributes resourceAttributes = resource.getResourceAttributes(); in decorate() local
71 if (resourceAttributes != null && resourceAttributes.isSymbolicLink()) { in decorate()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/infra/
H A DRefactoringTestRepositoryProvider.java97 ResourceAttributes resourceAttributes = resource.getResourceAttributes(); in makeWritable()
98 if (resourceAttributes != null) { in makeWritable()
99 resourceAttributes.setReadOnly(false); in makeWritable()
100 resource.setResourceAttributes(resourceAttributes); in makeWritable()
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/apis/authorization/validation/
H A Dvalidation.go31 …butes"), spec.NonResourceAttributes, `cannot be specified in combination with resourceAttributes`))
34 …ec.NonResourceAttributes, `exactly one of nonResourceAttributes or resourceAttributes must be spec…
48 …butes"), spec.NonResourceAttributes, `cannot be specified in combination with resourceAttributes`))
51 …ec.NonResourceAttributes, `exactly one of nonResourceAttributes or resourceAttributes must be spec…
/dports/textproc/libwpd010/libwpd-0.10.3/src/lib/
H A DWP3Resource.cpp33 … unsigned char resourceAttributes, const librevenge::RVNGBinaryData &resourceData) : in WP3Resource() argument
37 m_resourceAttributes(resourceAttributes), in WP3Resource()
H A DWP3ResourceFork.cpp70 unsigned char resourceAttributes = readU8(input, encryption); in WP3ResourceFork() local
103 …ared<WP3Resource>(resourceType, resourceReferenceID, resourceName, resourceAttributes, resourceDat… in WP3ResourceFork()
106 …attributes 0x%.2x\n", resourceType, resourceReferenceID, resourceName.cstr(), resourceAttributes)); in WP3ResourceFork()
H A DWP3Resource.h41 unsigned char resourceAttributes, const librevenge::RVNGBinaryData &resourceData);
/dports/www/grafana8/grafana-8.3.6/vendor/go.opentelemetry.io/collector/processor/filterprocessor/
H A Dfilter_processor_test.go46 resourceAttributes map[string]pdata.AttributeValue member
81 resourceAttributes: map[string]pdata.AttributeValue{
92 resourceAttributes: map[string]pdata.AttributeValue{
98 resourceAttributes: map[string]pdata.AttributeValue{
352 rm.Resource().Attributes().InitFromMap(mwr.resourceAttributes)
H A Dfilter_processor.go170 resourceAttributes := resource.Attributes()
173 matches := fmp.includeAttribute.Match(resourceAttributes)
180 matches := fmp.excludeAttribute.Match(resourceAttributes)
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/kubernetes/molecule/default/tasks/
H A Daccess_review.yml11 resourceAttributes:
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/kubernetes/core/molecule/default/tasks/
H A Daccess_review.yml11 resourceAttributes:

12345678910>>...15