Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for module2 (0.08 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

    from tensorflow.python.framework import dtypes
    from tensorflow.python.framework import ops
    from tensorflow.python.framework import tensor_spec
    from tensorflow.python.framework import test_util
    from tensorflow.python.module import module
    from tensorflow.python.ops import math_ops
    from tensorflow.python.ops import nn_ops
    from tensorflow.python.platform import test
    from tensorflow.python.saved_model import load
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [source,kotlin]
    ----
    dependencies {
        implementation(module("org:foo:1.0") {
            dependency("org:bar:1.0")
            module("org:baz:1.0") {
                dependency("com:example:1.0")
            }
        })
    }
    ----
    ======
    [.multi-language-sample]
    ======
    .build.gradle
    [source,groovy]
    ----
    dependencies {
        implementation module("org:foo:1.0") {
            dependency "org:bar:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

        continue to work as they always have, but we're moving everything to the new
        OkHttp 3 API. The `okhttp-apache` and `okhttp-urlconnection` modules should
        be only be used to accelerate a transition to OkHttp's request/response API.
        These deprecated modules will be dropped in an upcoming OkHttp 3.x release.
    
     *  **Canceling batches of calls is now the application's responsibility.**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    In order to use S3 backed artifact repositories, you previously had to add `--add-modules java.xml.bind` to `org.gradle.jvmargs` when running on Java 9 and above.
    
    Since Java 11 no longer contains the `java.xml.bind` module, Gradle now bundles JAXB 2.3.1 (`com.sun.xml.bind:jaxb-impl`) and uses it on Java 9 and above.
    
    Please remove the `--add-modules java.xml.bind` option from `org.gradle.jvmargs`, if set.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    
    In fact, the above sample will work for all `com.android.*` plugins that are provided by the specified module. That's because the packaged module contains the details of which plugin ID maps to which plugin implementation class, using the properties-file mechanism described in the <<custom_plugins#sec:custom_plugins_standalone_project,Writing Custom Plugins>> chapter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    				if err != nil {
    					return err
    				}
    				t.checkExpectedOutput(out)
    			}
    		}
    		return nil
    
    	case "runindir":
    		// Make a shallow copy of t.goDirName() in its own module and GOPATH, and
    		// run "go run ." in it. The module path (and hence import path prefix) of
    		// the copy is equal to the basename of the source directory.
    		//
    		// It's used when test a requires a full 'go build' in order to compile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/helpers.go

    	emptyDirMessageFmt = "Usage of EmptyDir volume %q exceeds the limit %q. "
    	// inodes, number. internal to this module, used to account for local disk inode consumption.
    	resourceInodes v1.ResourceName = "inodes"
    	// resourcePids, number. internal to this module, used to account for local pid consumption.
    	resourcePids v1.ResourceName = "pids"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    // have been annotated with the //go:wasmimport directive.  The aux sym
    // contains the information necessary for the linker to add a WebAssembly
    // import statement.
    // (https://webassembly.github.io/spec/core/syntax/modules.html#imports)
    func (l *Loader) WasmImportSym(fnSymIdx Sym) (Sym, bool) {
    	if l.SymType(fnSymIdx) != sym.STEXT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. src/reflect/type.go

    	}
    
    	return false
    }
    
    // typelinks is implemented in package runtime.
    // It returns a slice of the sections in each module,
    // and a slice of *rtype offsets in each module.
    //
    // The types in each module are sorted by string. That is, the first
    // two linked types of the first module are:
    //
    //	d0 := sections[0]
    //	t1 := (*rtype)(add(d0, offset[0][0]))
    //	t2 := (*rtype)(add(d0, offset[0][1]))
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                    if (d.version != null && buildScriptBuilder.useVersionCatalog) {
                        String versionCatalogRef = buildScriptBuilder.buildContentGenerationContext.getVersionCatalogDependencyRegistry().registerLibrary(d.module, d.version);
                        statementGroup.add(new DepSpec(configuration, null, versionCatalogRef, true));
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
Back to top