Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 307 for tokstring (0.13 sec)

  1. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

            .isEqualTo(InetAddresses.forString("127.0.0.1"));
    
        // ::1 special case
        assertThat(InetAddresses.getCoercedIPv4Address(InetAddresses.forString("::1")))
            .isEqualTo(InetAddresses.forString("127.0.0.1"));
    
        // :: special case
        assertThat(InetAddresses.getCoercedIPv4Address(InetAddresses.forString("::")))
            .isEqualTo(InetAddresses.forString("0.0.0.0"));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

                                           std::to_string(operand_index));
    
      if (defining_op && matchPattern(defining_op, m_Constant(&const_attr))) {
        tensorflow::Tensor tensor;
        auto status = tensorflow::ConvertToTensor(const_attr, &tensor);
        if (!status.ok()) {
          op->emitRemark() << "skipping legalization due to failed const conversion"
                           << status.ToString();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionOutput.kt

        receiver?.toString()?.plus(".").orEmpty() + buildString {
            if (function is DataConstructor) {
                val fqn = when (val ref = function.dataClass) {
                    is DataTypeRef.Name -> ref.fqName.toString()
                    is DataTypeRef.Type -> (ref.dataType as? DataClass)?.name?.qualifiedName
                        ?: ref.dataType.toString()
                }
                append(fqn)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/test/groovy/org/gradle/api/JavaVersionSpec.groovy

            JavaVersion.VERSION_1_6.toString() == "1.6"
            JavaVersion.VERSION_1_7.toString() == "1.7"
            JavaVersion.VERSION_1_8.toString() == "1.8"
            JavaVersion.VERSION_1_9.toString() == "9"
            JavaVersion.VERSION_1_10.toString() == "10"
            JavaVersion.VERSION_11.toString() == "11"
            JavaVersion.VERSION_12.toString() == "12"
            JavaVersion.VERSION_13.toString() == "13"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

                    .setStandardError(new TeeOutputStream(error, System.err))
                    .get()
                OutputScrapingExecutionResult.from(output.toString(), error.toString())
            }
            return model
        }
    
        void fetchModelFails(Class type = SomeToolingModel.class) {
            failure = toolingApiExecutor.runFailingBuildWithToolingConnection { connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

            return OutputScrapingExecutionResult.from(stdout.toString(), stderr.toString())
        }
    
        ExecutionFailure getFailure() {
            return OutputScrapingExecutionFailure.from(stdout.toString(), stderr.toString())
        }
    
        def validateOutput() {
            def assertion = new ResultAssertion(0, [], false, shouldCheckForDeprecationWarnings(), true)
            assertion.validate(stdout.toString(), "stdout")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            def toolchain = queryService.findMatchingToolchain(filter)
    
            then:
            toolchain.languageVersion == JavaVersion.toVersion(versionToFind)
            toolchain.javaHome.toString() == systemSpecificAbsolutePath(expectedPath)
    
            where:
            versionToFind | expectedPath
            9             | "/path/9"
            12            | "/path/12"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

            def toolchain = queryService.findMatchingToolchain(filter).get()
    
            then:
            toolchain.languageVersion == versionToFind
            toolchain.getInstallationPath().toString() == systemSpecificAbsolutePath(expectedPath)
    
            where:
            versionToFind              | expectedPath
            JavaLanguageVersion.of(9)  | "/path/9"
            JavaLanguageVersion.of(12) | "/path/12"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        // Two futures should not have the same toString, to avoid people asserting on it
        assertThat(SettableFuture.create().toString()).isNotEqualTo(SettableFuture.create().toString());
      }
    
      public void testToString_oom() throws Exception {
        SettableFuture<Object> future = SettableFuture.create();
        future.set(
            new Object() {
              @Override
              public String toString() {
                throw new OutOfMemoryError();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collectors.java

            }
    
            @Override
            public int size() {
                return Iterables.size(value);
            }
    
            @Override
            public String toString() {
                return value.toString();
            }
        }
    
        public static class ElementsFromCollectionProvider<T> implements ProvidedCollector<T> {
            private final ProviderInternal<? extends Iterable<? extends T>> provider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top