Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,766 for depend (0.17 sec)

  1. src/cmd/go/testdata/script/mod_edit_no_modcache.txt

    # 'go mod edit' opportunistically locks the side-lock file in the module cache,
    # for compatibility with older versions of the 'go' command.
    # It does not otherwise depend on the module cache, so it should not
    # fail if the module cache directory cannot be created.
    
    [root] skip
    
    mkdir $WORK/readonly
    chmod 0555 $WORK/readonly
    env GOPATH=$WORK/readonly/nonexist
    
    go mod edit -go=1.17
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 21 14:10:22 UTC 2021
    - 419 bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Function.java

       *
       * <p><b>Warning: do not depend</b> on the behavior of this method.
       *
       * <p>Historically, {@code Function} instances in this library have implemented this method to
       * recognize certain cases where distinct {@code Function} instances would in fact behave
       * identically. However, as code migrates to {@code java.util.function}, that behavior will
       * disappear. It is best not to depend on it.
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-jvm-test-fixtures/src/main/java/org/gradle/api/plugins/JavaTestFixturesPlugin.java

            DependencyHandler dependencies = project.getDependencies();
    
            // Test fixtures depend on the project.
            feature.getApiConfiguration().getDependencies().add(dependencies.create(project));
    
            // The tests depend on the test fixtures.
            SourceSet testSourceSet = JavaPluginHelper.getDefaultTestSuite(project).getSources();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. src/crypto/internal/randutil/randutil.go

    import (
    	"io"
    	"sync"
    )
    
    var (
    	closedChanOnce sync.Once
    	closedChan     chan struct{}
    )
    
    // MaybeReadByte reads a single byte from r with ~50% probability. This is used
    // to ensure that callers do not depend on non-guaranteed behaviour, e.g.
    // assuming that rsa.GenerateKey is deterministic w.r.t. a given random stream.
    //
    // This does not affect tests that pass a stream of fixed bytes as the random
    // source (e.g. a zeroReader).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 07 15:09:25 UTC 2018
    - 927 bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/TestFailureMapper.java

    import java.lang.reflect.Method;
    import java.util.List;
    
    /**
     * A mapper that maps a {@link Throwable} thrown during test execution into a {@link TestFailure}.
     * <p>
     * Implementors of this class should not depend on classes outside the standard library, as there is no guarantee that they will be on the test VM's classpath.
     * Instead, they should rely completely on reflection.
     */
    @NonNullApi
    public abstract class TestFailureMapper {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:48:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/initialization/definition/InjectedPluginDependencies.java

     *
     * @since 4.6
     */
    public interface InjectedPluginDependencies {
        /**
         * Add a dependency on the plugin with the given id.
         *
         * @param id the id of the plugin to depend on
         *
         * @return a mutable injected plugin dependency that can be used to further refine the dependency
         */
        InjectedPluginDependency id(String id);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 01 21:30:02 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_file_basics.adoc

    Every Gradle build comprises at least one _build script_.
    
    In the build file, two types of dependencies can be added:
    
    1. The libraries and/or plugins on which Gradle and the build script depend.
    2. The libraries on which the project sources (i.e., source code) depend.
    
    [[sec:build_script]]
    == Build scripts
    
    The build script is either a `build.gradle` file written in Groovy or a `build.gradle.kts` file in Kotlin.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

          # it, and print that list for debugging. Not really clear if this is
          # helpful since the only examples I've seen are enormous.
          bazel query "rdeps(kind(py_test, $(cat $BATS_TEST_TMPDIR/deps)), $dep, 1)"
        done < $BATS_TEST_TMPDIR/missing_deps
        exit 1
      fi
    }
    
    # The Python package is not allowed to depend on any CUDA packages.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/cache/GeneralCompileCaches.java

    import org.gradle.internal.hash.HashCode;
    
    /**
     * The build scoped compile caches.
     *
     * NOTE: This class cannot be renamed because it used to leak onto the public API
     * and some community plugins still depend on it in their byte code.
     */
    public interface GeneralCompileCaches {
        Cache<HashCode, ClassSetAnalysisData> getClassSetAnalysisCache();
        Cache<HashCode, ClassAnalysis> getClassAnalysisCache();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/doc.go

    limitations under the License.
    */
    
    // Package genericclioptions contains flags which can be added to your command, bound, completed, and produce
    // useful helper functions.  Nothing in this package can depend on kube/kube
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 837 bytes
    - Viewed (0)
Back to top