Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 134 for defs (0.1 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRoleUsageIntegrationTest.groovy

                        addResolutionAlternatives("anotherConf")
                        extendsFrom(deps)
                    }
                }
    
                repositories { maven { url "${mavenRepo.uri}" } }
    
                dependencies {
                    deps "org:foo:1.0"
                }
    
                task resolve {
                    configurations.testConf.files
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 01:42:49 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

        // considering accessing resource only. However, for branches under parallel
        // group, there should not be any control deps between them even side effect
        // analysis indicate some control deps. Therefore, we will mark parallel
        // group and branch information here so that `UpdateControlDependenciesPass`
        // can fetch the related information later.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. src/html/template/js_test.go

    		s     string
    	}{
    		// Statement terminators precede regexps.
    		{jsCtxRegexp, ";"},
    		// This is not airtight.
    		//     ({ valueOf: function () { return 1 } } / 2)
    		// is valid JavaScript but in practice, devs do not do this.
    		// A block followed by a statement starting with a RegExp is
    		// much more common:
    		//     while (x) {...} /foo/.test(x) || panic()
    		{jsCtxRegexp, "}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

            def projectDir = 'C:\\some\\agent\\workspace'
    
            expect:
            (line =~ KillLeakingJavaProcesses.generateLeakingProcessKillPattern(projectDir)).find()
        }
    
        def "matches daemon process started by performance test on Windows"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:00:39 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    +    char ut_host[UT_HOSTSIZE]
    +      __attribute_nonstring__;	/* Hostname for remote login.  */
         long int ut_time;
       };
     
    diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h
    index 30482a1..551d5fd 100644
    --- a/misc/sys/cdefs.h
    +++ b/misc/sys/cdefs.h
    @@ -391,6 +391,15 @@
     
     #include <bits/wordsize.h>
     
    +#if __GNUC_PREREQ (8, 0)
    +/* Describes a char array whose address can safely be passed as the first
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

        private Map<String, MavenProject> projectMap;
    
        /**
         * Sort a list of projects.
         * <ul>
         * <li>collect all the vertices for the projects that we want to build.</li>
         * <li>iterate through the deps of each project and if that dep is within
         * the set of projects we want to build then add an edge, otherwise throw
         * the edge away because that dependency is not within the set of projects
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    include::sample[dir="snippets/dependencyManagement/managingTransitiveDependencies-forceForConfiguration/groovy",files="build.gradle[tags=force-per-configuration]"]
    ====
    
    [[sec:excluding-transitive-deps]]
    == Excluding transitive dependencies
    
    While the previous section showed how you can enforce a certain version of a transitive dependency, this section covers _excludes_ as a way to remove a transitive dependency completely.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/buildid.go

    		// If it doesn't work, it doesn't work: reusing the test result is more
    		// important than reprinting diagnostic information.
    		if printOutput {
    			showStdout(b, c, a.Deps[0], "stdout")      // compile output
    			showStdout(b, c, a.Deps[0], "link-stdout") // link output
    		}
    
    		// Poison a.Target to catch uses later in the build.
    		a.Target = "DO NOT USE -  pseudo-cache Target"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    // 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.
    
    :maven-optional-deps: https://maven.apache.org/guides/introduction/introduction-to-optional-and-excludes-dependencies.html[Maven optional dependencies]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. pkg/controller/controller_utils.go

    	return r.SetExpectations(logger, controllerKey, adds, 0)
    }
    
    func (r *ControllerExpectations) ExpectDeletions(logger klog.Logger, controllerKey string, dels int) error {
    	return r.SetExpectations(logger, controllerKey, 0, dels)
    }
    
    // Decrements the expectation counts of the given controller.
    func (r *ControllerExpectations) LowerExpectations(logger klog.Logger, controllerKey string, add, del int) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
Back to top