Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 172 for Readonly (0.22 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Parameter.java

         *
         * @return <code>true</code> if the user should not be allowed to configure the parameter directly
         */
        boolean readonly() default false;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java

            case 3:
                return SmbConstants.TYPE_NAMED_PIPE;
            }
            return SmbConstants.TYPE_SHARE;
        }
    
    
        @Override
        public int getAttributes () {
            return SmbConstants.ATTR_READONLY | SmbConstants.ATTR_DIRECTORY;
        }
    
    
        @Override
        public long createTime () {
            return 0L;
        }
    
    
        @Override
        public long lastModified () {
            return 0L;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Feb 17 09:30:57 GMT 2019
    - 3.1K bytes
    - Viewed (0)
  3. helm/minio/templates/deployment.yaml

              volumeMounts:
                - name: minio-user
                  mountPath: "/tmp/credentials"
                  readOnly: true
                - name: export
                  mountPath: {{ .Values.mountPath }}
                  {{- if and .Values.persistence.enabled .Values.persistence.subPath }}
                  subPath: "{{ .Values.persistence.subPath }}"
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Mar 03 17:50:39 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    } catch( SmbAuthException sae ) {
                        if(( dest.attributes & ATTR_READONLY ) != 0 ) {
                                                    /* Remove READONLY and try again
                                                     */
                            dest.setPathInformation( dest.attributes & ~ATTR_READONLY, 0L, 0L );
                            dest.open( SmbFile.O_CREAT | SmbFile.O_WRONLY | SmbFile.O_TRUNC,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  5. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

          if (ib.hasNext()) {
            add(ib.next())
          }
        }
      }
    }
    
    // TODO check read only options for creating lists
    public fun <T> List<T>.readOnly() = this.toList()
    
    // TODO check read only options for creating lists
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11K bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

    
    /**
     * The logical branch.
     * For non-merge-queue branches this is the same as {@link #buildBranch}.
     * For merge-queue branches, this is the base branch.
     *
     * For example, for the merge queue branch "gh-readonly-queue/master/pr-12345-1a2b3c4d" the logical branch is "master".
     */
    val Project.logicalBranch: Provider<String>
        get() = buildBranch.map(::toMergeQueueBaseBranch)
    
    
    val Project.buildCommitId: Provider<String>
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 01 01:23:31 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  7. manifests/charts/istio-cni/templates/daemonset.yaml

                  name: cni-bin-dir
                {{- if or .Values.cni.repair.repairPods .Values.cni.ambient.enabled }}
                - mountPath: /host/proc
                  name: cni-host-procfs
                  readOnly: true
                {{- end }}
                - mountPath: /host/etc/cni/net.d
                  name: cni-net-dir
                - mountPath: /var/run/istio-cni
                  name: cni-socket-dir
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  8. api/go1.8.txt

    pkg database/sql/driver, type TxOptions struct
    pkg database/sql/driver, type TxOptions struct, Isolation IsolationLevel
    pkg database/sql/driver, type TxOptions struct, ReadOnly bool
    pkg database/sql, func Named(string, interface{}) NamedArg
    pkg database/sql, method (*ColumnType) DatabaseTypeName() string
    pkg database/sql, method (*ColumnType) DecimalSize() (int64, int64, bool)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Dec 21 05:25:57 GMT 2016
    - 16.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // `/foo` would not allow `/food` or `/etc/foo`
      optional string pathPrefix = 1;
    
      // when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.
      // +optional
      optional bool readOnly = 2;
    }
    
    // Eviction evicts a pod from its node subject to certain policies and safety constraints.
    // This is a subresource of Pod.  A request to cause such an eviction is
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        @Override
        public void setReadOnly () throws SmbException {
            setAttributes(getAttributes() | ATTR_READONLY);
        }
    
    
        @Override
        public void setReadWrite () throws SmbException {
            setAttributes(getAttributes() & ~ATTR_READONLY);
        }
    
    
        /**
         * Returns a {@link java.net.URL} for this <code>SmbFile</code>. The
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top