Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 145 for defeats (0.2 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            when:
            withBuildCache().run(first, second)
            then:
            firstOutput.assertExists()
            secondOutput.assertExists()
            // Only the first task can be cached since the second detects the overlap
            assertTaskOutputCached(first)
            assertTaskOutputNotCached(second)
    
            when:
            cleanBuildDir()
            withBuildCache().run(first, second)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesDuringTheBuildFileSystemWatchingIntegrationTest.groovy

                task waitForUserChanges {
                    doLast {
                        ${server.callFromBuild("userInput")}
                    }
                }
            """
        }
    
        def "detects input file change just before the task is executed"() {
            def inputFile = file("input.txt")
            buildFile << """
                def inputFile = file("input.txt")
                def outputFile = file("build/output.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. ci/official/utilities/code_check_full.bats

        cat <<EOF
    Please rename files so there are no repeats. For example, README.md and
    Readme.md would be the same file on Windows. In this test, you would get a
    warning for "readme.md" because it makes everything lowercase. There are
    repeats of these filename(s) with different casing:
    EOF
        find . | tr '[A-Z]' '[a-z]' | sort | uniq -d | tee $BATS_FILE_TMPDIR/repeats
        [[ ! -s $BATS_FILE_TMPDIR/repeats ]]
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. src/net/http/cookiejar/jar.go

    	host, err := canonicalHost(u.Host)
    	if err != nil {
    		return
    	}
    	key := jarKey(host, j.psList)
    	defPath := defaultPath(u.Path)
    
    	j.mu.Lock()
    	defer j.mu.Unlock()
    
    	submap := j.entries[key]
    
    	modified := false
    	for _, cookie := range cookies {
    		e, remove, err := j.newEntry(cookie, now, defPath, host)
    		if err != nil {
    			continue
    		}
    		id := e.id()
    		if remove {
    			if submap != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/Maven3CompatDependenciesValidator.java

    import org.apache.maven.plugin.PluginValidationManager;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    
    /**
     * Detects Maven3 plugins using maven-compat Maven2 compatibility layer.
     *
     * @since 3.9.3
     */
    @Singleton
    @Named
    class Maven3CompatDependenciesValidator extends AbstractMavenPluginDependenciesValidator {
    
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 09:51:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

                                   "' required for output list '",
                                   output_arg.name(), "' isn't an integer");
          int64_t repeats = mlir::cast<IntegerAttr>(repeats_attr).getInt();
    
          if (!output_arg.type_attr().empty()) {
            // Same type repeated "repeats" times.
            Attribute attr = attrs_[output_arg.type_attr()];
            if (!attr)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

    import org.gradle.test.fixtures.file.TestFile
    
    import javax.inject.Inject
    
    abstract class AbstractPluginValidationIntegrationSpec extends AbstractIntegrationSpec implements ValidationMessageChecker {
    
        def "detects missing annotations on Java properties"() {
            javaTaskSource << """
                import org.gradle.api.*;
                import org.gradle.api.tasks.*;
                import org.gradle.work.*;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                error(missingAnnotationConfig { type('MyTask').property('tree.right.nonAnnotated').missingInputOrOutput() }, 'validation_problems', 'missing_annotation'),
            ])
        }
    
        def "detects problems with file inputs"() {
            file("input.txt").text = "input"
            file("input").createDir()
    
            javaTaskSource << """
                import org.gradle.api.*;
                import org.gradle.api.file.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    		}
    	}
    }
    
    // checkCopyLocksReturnStmt detects lock copy in return statement
    func checkCopyLocksReturnStmt(pass *analysis.Pass, rs *ast.ReturnStmt) {
    	for _, x := range rs.Results {
    		if path := lockPathRhs(pass, x); path != nil {
    			pass.ReportRangef(x, "return copies lock value: %v", path)
    		}
    	}
    }
    
    // checkCopyLocksCallExpr detects lock copy in the arguments to a function call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. docs/es/docs/tutorial/cookie-params.md

        ```
    
    ## Declarar parámetros de `Cookie`
    
    Luego declara los parámetros de cookie usando la misma estructura que con `Path` y `Query`.
    
    El primer valor es el valor por defecto, puedes pasar todos los parámetros adicionales de validación o anotación:
    
    === "Python 3.10+"
    
        ```Python hl_lines="9"
        {!> ../../../docs_src/cookie_params/tutorial001_an_py310.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 19:30:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top