Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for dependency_b (0.17 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            when:
            succeeds 'dependencyInsight', '--configuration', 'lockedConf', '--dependency', 'foo'
    
            then:
            outputContains """org:foo:1.1 FAILED
       Selection reasons:
          - By constraint: Dependency locking
       Failures:
          - Dependency lock state out of date:
              - Resolved 'org:foo:1.1' which is not part of the dependency lock state
    
    org:foo:1.1 FAILED
    \\--- lockedConf
    
    org:foo:1.+ -> 1.1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

              <description>Default dependency information for projects that inherit from this one. The
                dependencies in this section are not immediately resolved. Instead, when a POM derived
                from this one declares a dependency described by a matching groupId and artifactId, the
                version and other values from this section are used for that dependency if they were not
                already specified.</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        For example, the following while loop body has a `%barrier` at the end.
        Although there is no data/control dependency between `tf.AssignVariableOp`
        for `%arg0` to `tf.AssignVariableOp` for `%arg1` across any iteration, the
        while loop body has a control barrier (`%barrier`) at the end which forces
        a dependency and the two assign variable ops must wait for each other to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

        def "workspace id of project transforms is unique per build with included builds"() {
            // The setup here is in a way that the project path of the project dependency in the same build
            // is the same as the buildTreePath of the substituted project dependency in the included build.
            // This way we test that you can't do special handling for "local" project dependencies when calculating
            // a transform workspace.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // module cache.
    //
    // To add a dependency for a package or upgrade it to its latest version:
    //
    //	go get example.com/pkg
    //
    // To upgrade or downgrade a package to a specific version:
    //
    //	go get example.com/pkg@v1.2.3
    //
    // To remove a dependency on a module and downgrade modules that require it:
    //
    //	go get example.com/mod@none
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	// Note that this flag change applies even when running vet as
    	// a dependency of vetting a package outside std.
    	// (Otherwise we'd have to introduce a whole separate
    	// space of "vet fmt as a dependency of a std top-level vet"
    	// versus "vet fmt as a dependency of a non-std top-level vet".)
    	// This is OK as long as the packages that are farther down the
    	// dependency tree turn on *more* analysis, as here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	Standard      bool                  `json:",omitempty"` // is this package part of the standard Go library?
    	DepOnly       bool                  `json:",omitempty"` // package is only as a dependency, not explicitly listed
    	BinaryOnly    bool                  `json:",omitempty"` // package cannot be recompiled
    	Incomplete    bool                  `json:",omitempty"` // was there an error loading this package or dependencies?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    	return ds.closeErr
    }
    
    // depSet is a finalCloser's outstanding dependencies
    type depSet map[any]bool // set of true bools
    
    // The finalCloser interface is used by (*DB).addDep and related
    // dependency reference counting.
    type finalCloser interface {
    	// finalClose is called when the reference count of an object
    	// goes to zero. (*DB).mu is not held while calling it.
    	finalClose() error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

       * upon deserialization. An instance of this class is fit for use by the writeReplace of
       * LocalManualCache.
       *
       * <p>Unfortunately, readResolve() doesn't get called when a circular dependency is present, so
       * the proxy must be able to behave as the cache itself.
       */
      static class ManualSerializationProxy<K, V> extends ForwardingCache<K, V>
          implements Serializable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

       * upon deserialization. An instance of this class is fit for use by the writeReplace of
       * LocalManualCache.
       *
       * <p>Unfortunately, readResolve() doesn't get called when a circular dependency is present, so
       * the proxy must be able to behave as the cache itself.
       */
      static class ManualSerializationProxy<K, V> extends ForwardingCache<K, V>
          implements Serializable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top