Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,269 for Result (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

                    nullify(artifact.getClassifier()),
                    handler);
    
            result.setFile(artifact.getFile());
            result.setResolved(artifact.getFile() != null);
    
            List<String> trail = new ArrayList<>(1);
            trail.add(result.getId());
            result.setDependencyTrail(trail);
    
            return result;
        }
    
        public static void toArtifacts(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ServiceLocatorTest.groovy

            def impl1 = stream("org.gradle.Impl1")
            def impl2 = stream("org.gradle.Impl2")
    
            when:
            def result = serviceLocator.getAll(CharSequence)
    
            then:
            result.size() == 2
            result[0] instanceof String
            result[1] instanceof StringBuilder
            1 * classLoader.getResources("META-INF/services/java.lang.CharSequence") >> Collections.enumeration([impl1, impl2])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

                    }
                }
    
                task askInt {
                    def result = handler.askUser { it.askIntQuestion("thing?", 2, 3) }
                    doLast {
                        println "result = " + result.get()
                    }
                }
    
                task selectOption {
                    def result = handler.askUser { it.selectOption("select thing", ["a", "b", "c"], "b") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterCategoriesOrTagsCoverageIntegrationTest.groovy

            then:
            DefaultTestExecutionResult result = new DefaultTestExecutionResult(testDirectory)
            result.assertTestClassesExecuted('SomeLocaleTests')
            result.testClass("SomeLocaleTests").assertTestCount(3, 0, 0)
            result.testClass("SomeLocaleTests").assertTestsExecuted(
                result.testCase('ok1(Locale)[1]', 'French'),
                result.testCase('ok1(Locale)[2]', 'German'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsPathMappingBhv.java

        }
    
        @Override
        protected <RESULT extends PathMapping> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) {
            try {
                final RESULT result = entityType.newInstance();
                result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy")));
                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

    //     propagate from result #a to result #r. Generalizing, the resource ID
    //     propagation (for results which are passthrough) looks like:
    //
    //     for r in (0, num_results) : result[r] = arg[r];
    //     repeat till no change {
    //       a = passthrough arg for result #r;
    //       result[r] += result[a];
    //     }
    //
    void ResourceAliasAnalysisInfo::AnalyzeWhileLoop(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. internal/s3select/sql/evaluate.go

    		}
    		if b {
    			return FromBool(true), nil
    		}
    		result = result || b
    	}
    	return FromBool(result), nil
    }
    
    func (e *AndCondition) evalNode(r Record, tableAlias string) (*Value, error) {
    	if len(e.Condition) == 1 {
    		// In this case, result does not have to be boolean
    		return e.Condition[0].evalNode(r, tableAlias)
    	}
    
    	// Compute AND of conditions
    	result := true
    	for _, ex := range e.Condition {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time_test.go

    		var result MicroTimeHolder
    		if err := yaml.Unmarshal([]byte(c.input), &result); err != nil {
    			t.Errorf("Failed to unmarshal input '%v': %v", c.input, err)
    		}
    		if result.T != c.result {
    			t.Errorf("Failed to unmarshal input '%v': expected %+v, got %+v", c.input, c.result, result)
    		}
    	}
    }
    
    func TestMicroTimeMarshalJSON(t *testing.T) {
    	cases := []struct {
    		input  MicroTime
    		result string
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java

                    }
                    result.addException(e);
                    throw new ArtifactDescriptorException(result);
                }
    
                Artifact relocatedArtifact = getRelocation(session, result, model);
                if (relocatedArtifact != null) {
                    if (withinSameGav(relocatedArtifact, a)) {
                        result.setArtifact(relocatedArtifact);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            assert result.executionReasons == expectedReasons
            return result
        }
    
        ExecutionEngine.Result upToDate(UnitOfWork unitOfWork) {
            def result = execute(unitOfWork)
            assert result.execution.get().outcome == UP_TO_DATE
            return result
        }
    
        ExecutionEngine.Result execute(UnitOfWork unitOfWork) {
            virtualFileSystem.invalidateAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
Back to top