Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for IsRead (0.13 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KotlinFirReferenceContributor.kt

                        ReferenceAccess.WRITE -> arrayOf(KaFirSimpleNameReference(nameReferenceExpression, isRead = false))
                        ReferenceAccess.READ_WRITE -> arrayOf(
                            KaFirSimpleNameReference(nameReferenceExpression, isRead = true),
                            KaFirSimpleNameReference(nameReferenceExpression, isRead = false),
                        )
                    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultConfigurableUserClassFilePermissions.java

        @Inject
        public DefaultConfigurableUserClassFilePermissions(int unixNumeric) {
            setRead(isRead(unixNumeric));
            setWrite(isWrite(unixNumeric));
            setExecute(isExecute(unixNumeric));
        }
    
        @Override
        public void unix(String unixSymbolic) {
            setRead(isRead(unixSymbolic));
            setWrite(isWrite(unixSymbolic));
            setExecute(isExecute(unixSymbolic));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractUserClassFilePermissions.java

         */
        protected int toUnixNumeric() {
            return (getRead() ? 4 : 0) + (getWrite() ? 2 : 0) + (getExecute() ? 1 : 0);
        }
    
        protected static boolean isRead(int unixNumeric) {
            return (unixNumeric & 4) >> 2 == 1;
        }
    
        protected static boolean isRead(String unixSymbolic) {
            char symbol = unixSymbolic.charAt(0);
            if (symbol == 'r') {
                return true;
            } else if (symbol == '-') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirSimpleNameReference.kt

    import org.jetbrains.kotlin.fir.psi
    import org.jetbrains.kotlin.idea.references.KtSimpleNameReference
    import org.jetbrains.kotlin.psi.*
    
    internal class KaFirSimpleNameReference(
        expression: KtSimpleNameExpression,
        val isRead: Boolean,
    ) : KtSimpleNameReference(expression), KaFirReference {
    
        private val isAnnotationCall: Boolean
            get() {
                val ktUserType = expression.parent as? KtUserType ?: return false
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultUserClassFilePermissions.java

        private final boolean read;
        private final boolean write;
        private final boolean execute;
    
        public DefaultUserClassFilePermissions(int unixNumeric) {
            read = isRead(unixNumeric);
            write = isWrite(unixNumeric);
            execute = isExecute(unixNumeric);
        }
    
        @Override
        public boolean getRead() {
            return read;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/crypto/tls/cipher_suites.go

    	return false
    }
    
    func cipherRC4(key, iv []byte, isRead bool) any {
    	cipher, _ := rc4.NewCipher(key)
    	return cipher
    }
    
    func cipher3DES(key, iv []byte, isRead bool) any {
    	block, _ := des.NewTripleDESCipher(key)
    	if isRead {
    		return cipher.NewCBCDecrypter(block, iv)
    	}
    	return cipher.NewCBCEncrypter(block, iv)
    }
    
    func cipherAES(key, iv []byte, isRead bool) any {
    	block, _ := aes.NewCipher(key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultConfigurableFilePermissionsTest.java

            }
        }
    
        private static String toUnixSymbolic(int unitNumeric) {
            return String.format("%s%s%s", isRead(unitNumeric) ? "r" : "-", isWrite(unitNumeric) ? "w" : "-", isExecute(unitNumeric) ? "x" : "-");
        }
    
        private static boolean isRead(int unixNumeric) {
            return (unixNumeric & 4) >> 2 == 1;
        }
    
        private static boolean isWrite(int unixNumeric) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      bool IsAlloc() const { return effects_.test(kAlloc); }
      bool IsFree() const { return effects_.test(kFree); }
      bool IsRead() const { return effects_.test(kRead); }
      bool IsWrite() const { return effects_.test(kWrite); }
      bool IsAllocOnly() const { return IsAlloc() && effects_.count() == 1; }
      bool IsReadOnly() const { return IsRead() && effects_.count() == 1; }
      ResourceId GetResourceId() const { return resource_id_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. src/net/http/server.go

    // running.
    func (cw *chunkWriter) writeHeader(p []byte) {
    	if cw.wroteHeader {
    		return
    	}
    	cw.wroteHeader = true
    
    	w := cw.res
    	keepAlivesEnabled := w.conn.server.doKeepAlives()
    	isHEAD := w.req.Method == "HEAD"
    
    	// header is written out to w.conn.buf below. Depending on the
    	// state of the handler, we either own the map or not. If we
    	// don't own it, the exclude map is created lazily for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    		}
    	} else if len(clens) > 1 {
    		// TODO: care? unlike http/1, it won't mess up our framing, so it's
    		// more safe smuggling-wise to ignore.
    	} else if f.StreamEnded() && !cs.isHead {
    		res.ContentLength = 0
    	}
    
    	if cs.isHead {
    		res.Body = http2noBody
    		return res, nil
    	}
    
    	if f.StreamEnded() {
    		if res.ContentLength > 0 {
    			res.Body = http2missingBody{}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top