Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 814 for exportId (0.13 sec)

  1. src/go/importer/importer.go

    // for the compilers "gc" and "gccgo", or for importing directly
    // from the source if the compiler argument is "source". In this
    // latter case, importing may fail under circumstances where the
    // exported API is not entirely defined in pure Go source code
    // (if the package API depends on cgo-defined entities, the type
    // checker won't have access to those).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExports.java

        }
    
        /**
         * Returns artifacts exported by Maven core and core extensions. Artifacts are identified by their
         * groupId:artifactId string key.
         */
        public Set<String> getExportedArtifacts() {
            return artifacts;
        }
    
        /**
         * Returns packages exported by Maven core and core extensions.
         */
        public Map<String, ClassLoader> getExportedPackages() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. hack/golangci-strict.yaml

          path-except: cmd/kubeadm
    
        # The following issues were deemed "might be worth fixing, needs to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. hack/golangci-hints.yaml

          path-except: cmd/kubeadm
    
    linters:
      disable-all: false
      enable: # please keep this alphabetized
        - forbidigo
        - ginkgolinter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ModuleLibraryTest.groovy

        def shouldNotExportDependencies() {
            expect:
            !(createModuleLibraryWithScope("COMPILE").exported)
            !(createModuleLibraryWithScope("RUNTIME").exported)
            !(createModuleLibraryWithScope("").exported)
            !(createModuleLibraryWithScope(null).exported)
            !(createModuleLibraryWithScope("TEST").exported)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        objects in the module are exported, and under what names. The names
        are derived from the object's path in the SavedObjectGraph. For example,
        a Python `tf.Module` with an exported function "foo" will result in an MLIR
        module where the function has an exported name "foo". If the `tf.Module`
        contains a subobject "self.bar" which itself has an exported function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/BinaryInfo.java

        class Symbol {
            private final char type;
            private final String name;
            private final boolean exported;
    
            public Symbol(String name, char type, boolean exported) {
                this.type = type;
                this.name = name;
                this.exported = exported;
            }
    
            public String getName() {
                return name;
            }
    
            public char getType() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScope.java

         * <p>
         * Contains exported classes of the parent scope and all local and exported additions to this scope.
         * It is strongly preferable to only call this after {@link #lock() locking} the scope as it allows the structure to be optimized.
         */
        ClassLoader getLocalClassLoader();
    
        /**
         * The classloader for use by child nodes.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseExternalDependency.java

        private DefaultEclipseExternalDependency(File file, File javadoc, File source, ModuleVersionIdentifier identifier, boolean exported, List<DefaultClasspathAttribute> attributes, List<DefaultAccessRule> accessRules, boolean resolved, String attemptedSelector) {
            super(exported, attributes, accessRules);
            this.file = file;
            this.javadoc = javadoc;
            this.source = source;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. hack/golangci.yaml

          path-except: cmd/kubeadm
    
        # The following issues were deemed "might be worth fixing, needs to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top