Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 135 for Result (0.14 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            .matches(
                "[^\\[]+\\[status=PENDING, setFuture=\\[[^\\[]+\\[status=PENDING,"
                    + " info=\\[cause=\\[Someday...]]]]]");
        testFuture2.set("result string");
        assertThat(testFuture3.toString())
            .matches("[^\\[]+\\[status=SUCCESS, result=\\[java.lang.String@\\w+\\]\\]");
      }
    
      public void testToString_cancelled() throws Exception {
        assertThat(Futures.immediateCancelledFuture().toString())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                    try {
                        BuildActionResult result = actionExecuter.execute(action, buildActionParameters, buildRequestContext);
                        if (result.getException() != null) {
                            return new BuildResult(null, result.getException());
                        }
                        if (result.getFailure() != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

    TEST(LegalizeTFTest, RecordsStreamzForFailedLegalizeWithMlirBridge) {
      CellReader<int64_t> compilation_status(kCompilationStatusStreamzName);
    
      auto result = CompileMlirModule(
          kBadMlirModuleStr,
          ConfigProto::Experimental::MLIR_BRIDGE_ROLLOUT_UNSPECIFIED);
    
      EXPECT_FALSE(result.ok());
      EXPECT_EQ(compilation_status.Delta(kMlirCombinedMlirFailure), 1);
    }
    
    TEST(LegalizeTFTest, RecordsStreamzForSuccessWithCombinedBridge) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            original1 instanceof Serializable
    
            def recreated1 = recreate(original1)
            def result1 = new StringBuilder()
            recreated1.execute(result1)
    
            result1.toString() == "123"
    
            def original2 = cl.thing(123)
            def result2 = recreate(original2).call()
    
            result2 == "123"
        }
    
        def "class can include only serializable lambda"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                        result = res;
                    } else if (field.getType() == Node.class) {
                        result = res.getRoot();
                    } else if (field.getType() == List.class && field.getGenericType() instanceof ParameterizedType pt) {
                        Type t = pt.getActualTypeArguments()[0];
                        if (t == Node.class) {
                            result = res.getNodes();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

                    }
                    else -> {}
                }
            }
            return if (smartCastTypeToUse != null && result != null) {
                KaSmartCastedReceiverValue(result, smartCastTypeToUse.toKtType(analysisContext))
            } else {
                result
            }
        }
    
        private fun createSignature(symbol: KaSymbol, resultingDescriptor: CallableDescriptor): KaCallableSignature<*>? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                withBuildScriptIn(".", randomScriptContent())
    
                val result = buildForCacheInspection("help", "--build-cache", "--info", "-Dorg.gradle.internal.kotlin-script-caching-disabled=$scriptCachingDisabled")
    
                if (scriptCachingDisabled) {
                    result.assertNotOutput("Stored cache entry for Kotlin DSL script compilation")
                    result.assertOutputContains("Caching of Kotlin script compilation disabled by property")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. tests/joins_test.go

    		return results[i].PetID > results[j].PetID
    	})
    
    	sort.Slice(results, func(i, j int) bool {
    		return user.Pets[i].ID > user.Pets[j].ID
    	})
    
    	if len(results) != 2 || results[0].Name != user.Pets[0].Name || results[1].Name != user.Pets[1].Name {
    		t.Errorf("Should find all two pets with Join select, got %+v", results)
    	}
    }
    
    func TestJoinWithOmit(t *testing.T) {
    	user := *GetUser("joins_with_omit", Config{Pets: 2})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            .matches(
                "[^\\[]+\\[status=PENDING, setFuture=\\[[^\\[]+\\[status=PENDING,"
                    + " info=\\[cause=\\[Someday...]]]]]");
        testFuture2.set("result string");
        assertThat(testFuture3.toString())
            .matches("[^\\[]+\\[status=SUCCESS, result=\\[java.lang.String@\\w+\\]\\]");
      }
    
      public void testToString_cancelled() throws Exception {
        assertThat(Futures.immediateCancelledFuture().toString())
    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/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

            def storeOp = operations.only(ConfigurationCacheStoreBuildOperationType)
            with(storeOp.result) {
                cacheEntrySize > 0
            }
            with(loadOp.result) {
                cacheEntrySize == storeOp.result.cacheEntrySize
            }
            def buildInvocationId = loadOp.result.originBuildInvocationId
    
            when:
            inDirectory 'lib'
            configurationCacheRun 'assemble'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top