Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 209 for IsString (0.27 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/TestReferenceResolveResultRenderer.kt

                else -> return nonLocalFqName.asString()
            }
            val container = (symbol as? KaSymbolWithKind)?.getContainingSymbol() ?: return null
            val parents = generateSequence(container) { it.getContainingSymbol() }.toList().asReversed()
            return "<local>: " + parents.joinToString(separator = ".") { (it as? KaNamedSymbol)?.name?.asString() ?: "<no name>" }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri May 31 19:52:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor_test.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.h"
    
    #include <cstring>
    #include <initializer_list>
    
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

                    printer.append(value.callableId?.asSingleFqName()?.render())
                }
    
                is KaConstantAnnotationValue -> {
                    printer.append(value.constantValue.constantValueKind.asString)
                        .append("(")
                        .append(value.constantValue.value.toString())
                        .append(")")
                }
    
                is KaUnsupportedAnnotationValue -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                ConstantValueKind.String -> CompileTimeType.STRING
    
                else -> CompileTimeType.ANY
            }
        }
    
        // Unary operators
        private fun FirLiteralExpression.evaluate(function: FirSimpleFunction): FirLiteralExpression? {
            if (value == null) return null
            (value as? String)?.let { opr ->
                evalUnaryOp(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/sym/symkind.go

    // rel-ro sections using relROMap.
    var ReadOnly = []SymKind{
    	STYPE,
    	SSTRING,
    	SGOSTRING,
    	SGOFUNC,
    	SGCBITS,
    	SRODATA,
    	SFUNCTAB,
    }
    
    // RelROMap describes the transformation of read-only symbols to rel-ro
    // symbols.
    var RelROMap = map[SymKind]SymKind{
    	STYPE:     STYPERELRO,
    	SSTRING:   SSTRINGRELRO,
    	SGOSTRING: SGOSTRINGRELRO,
    	SGOFUNC:   SGOFUNCRELRO,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

            return actionExecution.empty ? null : Iterables.getOnlyElement(actionExecution)
        }
    
        String buildCacheKeyFor(String identity) {
            def execution = transformExecutions.find { it.details.identity == identity }
            def snapshotExecution = snapshotInputsOperation(execution).result
            return snapshotExecution.hash as String
        }
    
        void enableIdentityCache() {
            // So we don't get a daemon from another test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. src/syscall/syscall_plan9.go

    }
    
    //sys	bind(name string, old string, flag int) (err error)
    
    func Bind(name string, old string, flag int) (err error) {
    	if fixwd(name, old) {
    		defer runtime.UnlockOSThread()
    	}
    	return bind(name, old, flag)
    }
    
    //sys	mount(fd int, afd int, old string, flag int, aname string) (err error)
    
    func Mount(fd int, afd int, old string, flag int, aname string) (err error) {
    	if fixwd(old) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                is KtModule -> renderKtModule(value, printer)
                // Other custom values
                is Name -> printer.append(value.asString())
                is FqName -> printer.append(value.asString())
                is ClassId -> printer.append(value.asString())
                is DeprecationInfo -> renderDeprecationInfo(value, printer)
                is Visibility -> printer.append(value::class.java.simpleName)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

        }
    
        @Override
        public String asString() {
            String nodeString = super.asString();
    
            if (!verbose) {
                return nodeString;
            }
    
            org.eclipse.aether.graph.DependencyNode node = getDependencyNode();
    
            List<String> details = new ArrayList<>();
    
            org.eclipse.aether.graph.DependencyNode winner =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/NtlmAuthenticator.groovy

                connections[HttpConnection.currentConnection] = connectionAuth
            }
    
            if (connectionAuth.failed) {
                httpResponse.setHeader(HttpHeader.WWW_AUTHENTICATE.asString(), "basic realm=\"" + _loginService.getName() + '"')
                httpResponse.sendError(HttpServletResponse.SC_UNAUTHORIZED)
                return Authentication.SEND_CONTINUE
            } else if (connectionAuth.user != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top