Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,964 for importing (0.22 sec)

  1. docs/en/docs/tutorial/bigger-applications.md

    ### Avoid name collisions
    
    We are importing the submodule `items` directly, instead of importing just its variable `router`.
    
    This is because we also have another variable named `router` in the submodule `users`.
    
    If we had imported one after the other, like:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/httproute_test.go

    						Number:   8080,
    						Protocol: "HTTP",
    						Name:     "foo",
    					},
    					Hosts: []string{"default/bookinfo.com", "not-default/test.com"},
    				},
    				{
    					// Wildcard egress importing from all namespaces
    					Hosts: []string{"*/*"},
    				},
    			},
    		},
    	}
    	sidecarConfigWithWildcard := &config.Config{
    		Meta: config.Meta{
    			Name:             "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

        }
    
        private void wireRealm(ClassRealm classRealm, List<String> parentImports, Map<String, ClassLoader> foreignImports) {
            if (foreignImports != null && !foreignImports.isEmpty()) {
                logger.debug("Importing foreign packages into class realm {}", classRealm.getId());
    
                for (Map.Entry<String, ClassLoader> entry : foreignImports.entrySet()) {
                    ClassLoader importedRealm = entry.getValue();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

    """Defines utilities involving SavedModel."""
    from typing import Collection, Dict, Mapping, Optional, Sequence
    
    from absl import logging
    
    # pylint: disable=g-importing-member
    from google.protobuf.any_pb2 import Any
    # pylint: enable=g-importing-member
    from tensorflow.core.framework import graph_pb2
    from tensorflow.core.protobuf import meta_graph_pb2
    from tensorflow.core.protobuf import saver_pb2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. buildscripts/minio-iam-ldap-upgrade-import-test.sh

    	mc idp ldap policy entities old-minio
    
    	mc admin cluster iam export old-minio
    	set +x
    
    	mc admin service stop old-minio
    }
    
    import_iam_content_in_new_minio() {
    	echo "Importing IAM content in new minio instance."
    	# Assume current minio binary exists.
    	MINIO_CI_CD=1 ./minio server /tmp/data/{1...4} &
    	sleep 5
    
    	set -x
    	mc alias set new-minio http://localhost:9000 minioadmin minioadmin
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    Your build script may contain statements like: `"ant clean compile".execute()`.footnote:[In Groovy you can execute Strings.]
    
    Gradle's Ant integration allows you to migrate your build from Ant to Gradle smoothly:
    
    1. Begin by importing your existing Ant build.
    2. Then, transition your dependency declarations from the Ant script to your build file.
    3. Finally, move your tasks to your build file or replace them with Gradle's plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/internal/bisect/bisect.go

    // Trivial error implementation, here to avoid importing errors.
    
    // parseError is a trivial error implementation,
    // defined here to avoid importing errors.
    type parseError struct{ text string }
    
    func (e *parseError) Error() string { return e.text }
    
    // FNV-1a implementation. See Go's hash/fnv/fnv.go.
    // Copied here for simplicity (can handle integers more directly)
    // and to avoid importing hash/fnv.
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/passes.h

    /// legalize_tf_with_tf2xla.cc for details). By default, TF2XLA fallback is not
    /// used.
    /// Note: This is a module pass because when legalizing with TF2XLA fallback,
    /// functions are imported into the module. Importing functions into a
    /// module is not thread safe.
    std::unique_ptr<OperationPass<ModuleOp>> createLegalizeTFPass(
        bool legalize_chlo = true,
        std::optional<StringRef> tf2xla_fallback_device_type = std::nullopt,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/first-steps.md

    <font color="#3465A4">INFO    </font> Importing from <font color="#75507B">/home/user/code/</font><font color="#AD7FA8">awesomeapp</font>
    
     ╭─ <font color="#8AE234"><b>Python module file</b></font> ─╮
     │                      │
     │  🐍 main.py          │
     │                      │
     ╰──────────────────────╯
    
    <font color="#3465A4">INFO    </font> Importing module <font color="#4E9A06">main</font>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 12K bytes
    - Viewed (1)
  10. src/mime/type.go

    	// Case-insensitive lookup.
    	// Optimistically assume a short ASCII extension and be
    	// allocation-free in that case.
    	var buf [10]byte
    	lower := buf[:0]
    	const utf8RuneSelf = 0x80 // from utf8 package, but not importing it.
    	for i := 0; i < len(ext); i++ {
    		c := ext[i]
    		if c >= utf8RuneSelf {
    			// Slow path.
    			si, _ := mimeTypesLower.Load(strings.ToLower(ext))
    			s, _ := si.(string)
    			return s
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top