Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,766 for depend (0.16 sec)

  1. 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: Sun Mar 20 18:30:19 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. src/runtime/badlinkname_linux.go

    // As of Go 1.22, the symbols below are found to be pulled via
    // linkname in the wild. We provide a push linkname here, to
    // keep them accessible with pull linknames.
    // This may change in the future. Please do not depend on them
    // in new code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:47:42 UTC 2024
    - 506 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/internal_visibility_allowlist.bzl

    """Internal visibility rules."""
    
    def internal_visibility_allowlist():
        """Returns a list of the packages that can depend on internal targets."""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 05 00:16:30 UTC 2023
    - 163 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/tests/dependentComponentsReport.out

    > Task :dependentComponents
    
    ------------------------------------------------------------
    Root project 'cunit'
    ------------------------------------------------------------
    
    operators - Components that depend on native library 'operators'
    +--- operators:failingSharedLibrary
    +--- operators:failingStaticLibrary
    +--- operators:passingSharedLibrary
    \--- operators:passingStaticLibrary
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 512 bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/plugin/use/PluginDependencySpec.java

     * <p>
     * See {@link PluginDependenciesSpec} for more information about declaring plugin dependencies.
     * </p>
     */
    public interface PluginDependencySpec {
    
        /**
         * Specify the version of the plugin to depend on.
         *
         * <pre>
         * plugins {
         *     id "org.company.myplugin" version "1.0"
         * }
         * </pre>
         * <p>
         * By default, dependencies have no (i.e. {@code null}) version.
         * </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/go/types/typestring_test.go

    func TestTypeString(t *testing.T) {
    	// The Go command is needed for the importer to determine the locations of stdlib .a files.
    	testenv.MustHaveGoBuild(t)
    
    	var tests []testEntry
    	tests = append(tests, independentTestTypes...)
    	tests = append(tests, dependentTestTypes...)
    
    	for _, test := range tests {
    		src := `package p; import "io"; type _ io.Writer; type T ` + test.src
    		pkg, err := typecheck(src, nil, nil)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. build-logic/packaging/build.gradle.kts

        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":documentation")) {
            // TODO turn this around: move corresponding code to this project and let docs depend on it
            because("API metadata generation is part of the DSL guide")
        }
        implementation(project(":jvm"))
        implementation(project(":kotlin-dsl"))
    
        implementation(kotlin("gradle-plugin"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 704 bytes
    - Viewed (0)
  8. src/internal/bytealg/equal_generic.go

    // are the same length and contain the same bytes.
    // A nil argument is equivalent to an empty slice.
    //
    // Equal is equivalent to bytes.Equal.
    // It is provided here for convenience,
    // because some packages cannot depend on bytes.
    func Equal(a, b []byte) bool {
    	// Neither cmd/compile nor gccgo allocates for these string conversions.
    	// There is a test for this in package bytes.
    	return string(a) == string(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 00:56:36 UTC 2019
    - 628 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typestring_test.go

    func TestTypeString(t *testing.T) {
    	// The Go command is needed for the importer to determine the locations of stdlib .a files.
    	testenv.MustHaveGoBuild(t)
    
    	var tests []testEntry
    	tests = append(tests, independentTestTypes...)
    	tests = append(tests, dependentTestTypes...)
    
    	for _, test := range tests {
    		src := `package generic_p; import "io"; type _ io.Writer; type T ` + test.src
    		pkg, err := typecheck(src, nil, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/internal/bytealg/index_s390x.go

    	// The runtime sets HasVX when processing auxv records, and that happens
    	// to happen *before* running the init functions of packages that
    	// the runtime depends on.
    	// TODO: it would really be nicer for internal/cpu to figure out this
    	// flag by itself. Then we wouldn't need to depend on quirks of
    	// early startup initialization order.
    	if cpu.S390X.HasVX {
    		MaxLen = 64
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 04 19:49:44 UTC 2018
    - 1011 bytes
    - Viewed (0)
Back to top