Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,005 for Result (0.2 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/InMemoryCacheDecoratorFactoryTest.groovy

        def "caches result from backing cache and reuses for other instances with the same cache id"() {
            given:
            def cache = cacheFactory.decorator(100, true).decorate("path/fileSnapshots.bin", "fileSnapshots", target, crossProcessCacheAccess, asyncCacheAccess)
    
            when:
            def result = cache.getIfPresent("key")
    
            then:
            result == "result"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableTypedResolveResultTest.groovy

            result.result
    
            then:
            def e = thrown(RuntimeException)
            e == failure
        }
    
        def "can mark as successful after failed"() {
            given:
            def failure = new RuntimeException()
            result.failed(failure)
            result.resolved("result")
    
            expect:
            result.hasResult()
            result.successful
            result.failure == null
            result.result == "result"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildActionRunner.java

         */
        class Result {
            private final boolean hasResult;
            private final Object result;
            private final Throwable buildFailure;
            private final Throwable clientFailure;
            private static final Result NOTHING = new Result(false, null, null, null);
            private static final Result NULL = new Result(true, null, null, null);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/main/webapp/css/style.css

    :last-child.list-group-item {
    	border-radius: 0px;
    }
    
    #result ol li {
    	margin: 1em 0;
    }
    
    #result ol li:first-child {
    	margin-top: 0;
    }
    
    #result .title a:visited {
    	color: #014c8c;
    }
    
    #result .body {
    	display: flex;
    	align-items: flex-start;
    }
    
    #result .site cite {
    	color: #093;
    	font-style: normal;
    }
    
    #result .more {
    	display: none;
    }
    
    #result .info {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jun 02 11:39:35 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ChildMap.java

        Stream<Entry<T>> stream();
    
        <RESULT> RESULT withNode(VfsRelativePath targetPath, CaseSensitivity caseSensitivity, NodeHandler<T, RESULT> handler);
    
        interface NodeHandler<T, RESULT> {
            RESULT handleAsDescendantOfChild(VfsRelativePath pathInChild, T child);
            RESULT handleAsAncestorOfChild(String childPath, T child);
            RESULT handleExactMatchWithChild(T child);
            RESULT handleUnrelatedToAnyChild();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReaderTest.groovy

        }
    
        def "reads multiple lines"() {
            expect:
            def reader = new PreprocessingReader(new StringReader("""
    line 1
    
    line 2""".replace('\n', eol)))
            def result = new StringBuilder()
            reader.readNextLine(result)
            result.toString() == ""
    
            result.setLength(0)
            reader.readNextLine(result)
            result.toString() == "line 1"
    
            result.setLength(0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/reflect/DirectInstantiatorTest.groovy

            this.result = result
        }
    
        SomeTypeWithMultipleConstructors(Number result) {
            this.result = result
        }
    }
    
    class SomeTypeWithPrimitiveTypes {
        final Object result
    
        SomeTypeWithPrimitiveTypes(boolean result) {
            this.result = result
        }
    }
    
    class TypeWithAmbiguousConstructor {
        TypeWithAmbiguousConstructor(CharSequence param) {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/KuromojiCSVUtil.java

            String result = original;
    
            // Unquote
            if (result.indexOf('\"') >= 0) {
                final Matcher m = QUOTE_REPLACE_PATTERN.matcher(original);
                if (m.matches()) {
                    result = m.group(1);
                }
    
                // Unescape
                if (result.indexOf(ESCAPED_QUOTE) >= 0) {
                    result = result.replace(ESCAPED_QUOTE, "\"");
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. clause/order_by_test.go

    				},
    			},
    			"SELECT * FROM `users` ORDER BY FIELD(id, ?,?,?)",
    			[]interface{}{1, 2, 3},
    		},
    	}
    
    	for idx, result := range results {
    		t.Run(fmt.Sprintf("case #%v", idx), func(t *testing.T) {
    			checkBuildClauses(t, result.Clauses, result.Result, result.Vars)
    		})
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/WriteOnlyModelViewException.java

            StringBuilder result = new StringBuilder();
            result.append("Attempt to read");
            if (property != null) {
                result.append(" property '");
                result.append(property);
                result.append("'");
            }
            result.append(" from a write only view of model element '");
            result.append(path);
            result.append("'");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top