Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 668 for detective (0.28 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

            getJvmArgumentProviders().add(new PerformanceTestJvmArgumentsProvider())
            getOutputs().doNotCacheIf("baselines contain version 'flakiness-detection-commit', 'last' or 'nightly'", { containsSpecialVersions() })
            getOutputs().doNotCacheIf("flakiness detection", { flakinessDetection })
            getOutputs().upToDateWhen { !containsSpecialVersions() && !flakinessDetection }
    
            projectName.set(project.name)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/MacroDirective.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.model.cpp;
    
    import javax.annotation.Nullable;
    
    /**
     * Represent a macro directive.
     *
     * @since 4.10
     */
    public interface MacroDirective {
        /**
         * Returns the name of the macro.
         */
        String getName();
    
        /**
         * Returns the value of the macro, if any.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 962 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/developingPlugins/reactingToBuildFeatures/groovy/buildSrc/src/main/java/MyPlugin.java

            MyReport myReport = new MyReport();
            myReport.setConfigurationCacheUsage(configCacheUsage);
    
            boolean isolatedProjectsActive = buildFeatures.getIsolatedProjects().getActive() // <3>
                .get(); // the active state is always defined
            if (!isolatedProjectsActive) {
                myOptionalPluginLogicIncompatibleWithIsolatedProjects();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/fuzz_race.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package roundtrip
    
    // in race-detection mode, lower the number of iterations to keep reasonable runtimes in CI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 741 bytes
    - Viewed (0)
  5. src/main/java/jcifs/FileNotifyInformation.java

         * The operating system detects a change in file size only when the file is written to the disk. For operating
         * systems that use extensive caching, detection occurs only when the cache is sufficiently flushed.s
         */
        public static final int FILE_NOTIFY_CHANGE_SIZE = 0x00000008;
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  6. src/go/printer/comment.go

    				Slash: slash,
    				Text:  c.Text,
    			})
    		}
    	}
    	return out
    }
    
    // isDirective reports whether c is a comment directive.
    // See go.dev/issue/37974.
    // This code is also in go/ast.
    func isDirective(c string) bool {
    	// "//line " is a line directive.
    	// "//extern " is for gccgo.
    	// "//export " is for cgo.
    	// (The // has been removed.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 07:35:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/TestFrameworkDetector.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.testing.detection;
    
    import org.gradle.api.internal.file.RelativeFile;
    import org.gradle.api.internal.tasks.testing.TestClassProcessor;
    
    import java.io.File;
    import java.util.List;
    
    public interface TestFrameworkDetector {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/resolve/extensions/KtResolveExtensionTestSupport.kt

    import org.jetbrains.kotlin.test.services.impl.TestModuleStructureImpl
    
    object KtResolveExtensionTestSupport {
        object Directives : SimpleDirectivesContainer() {
            val WITH_RESOLVE_EXTENSION by directive(
                "Enable resolve extension for this module",
                DirectiveApplicability.Module,
            )
    
            val RESOLVE_EXTENSION_PACKAGE by valueDirective(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. hack/pin-dependency.sh

        echo "Download failed: ${error}" >&2
        exit 1
    fi
    echo "Resolved to ${replacement}@${rev}"
    
    # Add the require directive
    echo "Running: go mod edit -require ${dep}@${rev}"
    go mod edit -require "${dep}@${rev}"
    
    # Add the replace directive
    if [ "${replacement}" != "${dep}" ]; then
      echo "Running: go mod edit -replace ${dep}=${replacement}@${rev}"
      go mod edit -replace "${dep}=${replacement}@${rev}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go

    //go:build gc
    
    package cpu
    
    // haveAsmFunctions reports whether the other functions in this file can
    // be safely called.
    func haveAsmFunctions() bool { return true }
    
    // The following feature detection functions are defined in cpu_s390x.s.
    // They are likely to be expensive to call so the results should be cached.
    func stfle() facilityList
    func kmQuery() queryResult
    func kmcQuery() queryResult
    func kmctrQuery() queryResult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 674 bytes
    - Viewed (0)
Back to top