Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 221 for explainTo (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    ====
    
    And that's it! Now we have:
    
    - added a variant which provides instrumented jars
    - explained that this variant is a substitute for the runtime
    - explained that the consumer needs this variant _only for test runtime_
    
    Gradle therefore offers a powerful mechanism to select the right variants based on preferences and compatibility.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

              - Value: 'triangle' selects variant: 'blueTriangleElements'""")
            and: "Helpful resolutions are provided"
            assertSuggestsReviewingAlgorithm()
            assertSuggestsViewingDocs("Ambiguity errors are explained in more detail at https://docs.gradle.org/${GradleVersion.current().version}/userguide/variant_model.html#sub:variant-ambiguity.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

                }
                if (terminateAfter > 0) {
                    builder.setTerminateAfter(terminateAfter);
                }
            }
    
            public void setExplain(boolean explain) {
                this.explain = explain;
            }
    
            public void setMinScore(float minScore) {
                this.minScore = minScore;
            }
    
            public void setPreference(String preference) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java

                }
                if (terminateAfter > 0) {
                    builder.setTerminateAfter(terminateAfter);
                }
            }
    
            public void setExplain(boolean explain) {
                this.explain = explain;
            }
    
            public void setMinScore(float minScore) {
                this.minScore = minScore;
            }
    
            public void setPreference(String preference) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java

                }
                if (terminateAfter > 0) {
                    builder.setTerminateAfter(terminateAfter);
                }
            }
    
            public void setExplain(boolean explain) {
                this.explain = explain;
            }
    
            public void setMinScore(float minScore) {
                this.minScore = minScore;
            }
    
            public void setPreference(String preference) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    To provide the missing information to Gradle, you can define <<component_metadata_rules.adoc#sec:component_metadata_rules,component metadata rules>> as explained in the following.
    
    [[sec:align_bom_platform]]
    === Align versions of modules using a published BOM
    
    .A dependency version alignment rule
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java

        }
    
        @Override
        public ActionFuture<ExplainResponse> explain(final ExplainRequest request) {
            return client.explain(request);
        }
    
        @Override
        public void explain(final ExplainRequest request, final ActionListener<ExplainResponse> listener) {
            client.explain(request, listener);
        }
    
        @Override
        public ClearScrollRequestBuilder prepareClearScroll() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. tests/sql_builder_test.go

    func (ageFloat) String() string {
    	return "age"
    }
    
    func TestExplainSQL(t *testing.T) {
    	user := *GetUser("explain-sql", Config{})
    	dryRunDB := DB.Session(&gorm.Session{DryRun: true})
    
    	stmt := dryRunDB.Model(&user).Where("id = ?", 1).Updates(map[string]interface{}{"age": ageInt(8)}).Statement
    	sql := DB.Dialector.Explain(stmt.SQL.String(), stmt.Vars...)
    	if !regexp.MustCompile(`.*age.*=8,`).MatchString(sql) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

        }
    
        def "is unavailable when no language tools can be found and building any language"() {
            def compilerMissing = Stub(CommandLineToolSearchResult) {
                isAvailable() >> false
                explain(_) >> { DiagnosticsVisitor visitor -> visitor.node("c compiler not found") }
            }
    
            given:
            platform.operatingSystem >> dummyOs
            platform.architecture >> dummyArch
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    You can also replace much of Gradle’s logging with your own by registering various event listeners.
    One example of a <<logging.adoc#sec:changing_what_gradle_logs,custom event logger is explained in the logging documentation>>.
    You can also <<logging.adoc#sec:external_tools,control logging from external tools>>, making them more verbose to debug their execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top