Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 286 for as_string (0.13 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProviderBase.kt

        }
    
        override fun doesPlatformSpecificPackageExist(packageFqName: FqName, platform: TargetPlatform): Boolean {
            when {
                platform.isJvm() -> {
                    val fqNameString = packageFqName.asString()
                    forEachNonKotlinPsiElementFinder(project) { finder ->
                        val psiPackage = finder.findPackage(fqNameString)
                        if (psiPackage != null) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/VirtualFileSystemTestSpec.groovy

            this.searchedPath = VfsRelativePath.of("${ABSOLUTE_PATH_PREFIX}/${relativeSearchedPath}").pathFromChild(VfsRelativePath.of(ABSOLUTE_PATH_PREFIX).asString)
            this.selectedChildPath = selectedChildPath
        }
    
        @Override
        String toString() {
            return "${searchedPath.asString} selects ${selectedChildPath ?: "no child"} of ${childPaths}"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/output-shapes.pbtxt

            shape {
            }
          }
        }
      }
    }
    node {
      name: "Const1"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_STRING
        }
      }
      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_STRING
            tensor_shape {
            }
            string_val: ""
          }
        }
      }
      attr {
        key: "_output_shapes"
        value {
          list {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 21 04:07:13 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScopeIdsFixture.groovy

                            "\${gradle.identityPath}": [
                                buildInvocation: services.get(${BuildInvocationScopeId.name}).id.asString(),
                                workspace: services.get(${WorkspaceScopeId.name}).id.asString(),
                                user: services.get(${UserScopeId.name}).id.asString()
                            ]
                        ]
                        outputJsonFile << groovy.json.JsonOutput.toJson(scopeIds) + '\\n'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/WrapperNode.java

        }
    
        @Override
        @Nonnull
        public Optional<RemoteRepository> getRepository() {
            return delegate.getRepository();
        }
    
        @Override
        @Nonnull
        public String asString() {
            return delegate.asString();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/internal/profile/encode.go

    		}
    	}
    	for _, f := range p.Function {
    		f.nameX = addString(strings, f.Name)
    		f.systemNameX = addString(strings, f.SystemName)
    		f.filenameX = addString(strings, f.Filename)
    	}
    
    	p.dropFramesX = addString(strings, p.DropFrames)
    	p.keepFramesX = addString(strings, p.KeepFrames)
    
    	if pt := p.PeriodType; pt != nil {
    		pt.typeX = addString(strings, pt.Type)
    		pt.unitX = addString(strings, pt.Unit)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/batch_use_same_function/saved_model.pbtxt

    meta_graphs: {
      meta_info_def: {
        tags: ["serve", "tpu"]
      }
      graph_def: {
        node: {
          name: "input0"
          op: "Placeholder"
          attr: {
            key: "dtype"
            value: {
              type: DT_STRING
            }
          }
        }
        node: {
          name: "input1"
          op: "Placeholder"
          attr: {
            key: "dtype"
            value: {
              type: DT_INT32
            }
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 09 16:20:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirTypeAliasSymbol.kt

            when (val symbolKind = symbolKind) {
                KaSymbolKind.LOCAL ->
                    throw CanNotCreateSymbolPointerForLocalLibraryDeclarationException(classId?.asString() ?: name.asString())
    
                KaSymbolKind.CLASS_MEMBER, KaSymbolKind.TOP_LEVEL -> KaFirClassLikeSymbolPointer(classId!!, KaTypeAliasSymbol::class)
                else -> throw UnsupportedSymbolKind(this::class, symbolKind)
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/admin/AccessTokenTests.java

            String response = checkPutMethod(requestBody, ITEM_ENDPOINT_SUFFIX).asString();
    
            // Test: access admin api using a new token
            String id = JsonPath.from(response).get("response.id");
            response = checkGetMethod(requestBody, ITEM_ENDPOINT_SUFFIX + "/" + id).asString();
            String token = JsonPath.from(response).get("response.setting.token");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPackageSymbol.kt

        private val project: Project,
        override val token: KaLifetimeToken
    ) : KaPackageSymbol(), KaLifetimeOwner {
        override val psi: PsiElement? by cached {
            JavaPsiFacade.getInstance(project).findPackage(fqName.asString())
                ?: KtPackage(PsiManager.getInstance(project), fqName, GlobalSearchScope.allScope(project)/*TODO*/)
        }
    
        override val origin: KaSymbolOrigin
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top