Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,052 for exportId (0.24 sec)

  1. src/go/doc/testdata/testing.0.golden

    FILENAMES
    	testdata/benchmark.go
    	testdata/example.go
    	testdata/testing.go
    
    FUNCTIONS
    	// An internal function but exported because it is cross-package; ...
    	func Main(matchString func(pat, str string) (bool, error), tests []InternalTest, benchmarks []InternalBenchmark, examples []InternalExample)
    
    	// An internal function but exported because it is cross-package; ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  2. 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)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseClasspathContainer.java

         *
         * @return The path of this container. Does not return null.
         */
        String getPath();
    
        /**
         * Marks this container as exported.
         *
         * @return whether this container needs to be exported.
         */
        boolean isExported();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common.py

      Args:
        create_module_fn: A callable taking no arguments, which returns the
          `tf.Module` to be converted and printed.
        exported_names: A set of exported names for the MLIR converter (default is
          "export all").
        show_debug_info: If true, shows debug locations in the resulting MLIR.
      """
      if exported_names is None:
        exported_names = []
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 23:49:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/go/doc/testdata/f.go

    package f
    
    // ----------------------------------------------------------------------------
    // Factory functions for non-exported types must not get lost.
    
    type private struct{}
    
    // Exported must always be visible. Was issue 2824.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 486 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/object.go

    //
    // Objects are ordered nil before non-nil, exported before
    // non-exported, then by name, and finally (for non-exported
    // functions) by package path.
    func (a *object) less(b *object) bool {
    	if a == b {
    		return false
    	}
    
    	// Nil before non-nil.
    	if a == nil {
    		return true
    	}
    	if b == nil {
    		return false
    	}
    
    	// Exported functions before non-exported.
    	ea := isExported(a.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseProjectDependency.java

        private final String path;
    
        public DefaultEclipseProjectDependency(String path, boolean exported, List<DefaultClasspathAttribute> attributes, List<DefaultAccessRule> accessRules) {
            super(exported, attributes, accessRules);
            this.path = path;
        }
    
        public String getPath() {
            return path;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultClassLoaderScopeTest.groovy

            scope.localClassLoader.is scope.exportClassLoader
        }
    
        def "can export more than one classpath"() {
            when:
            file("export/1/foo") << "foo"
            file("export/2/bar") << "bar"
            scope.
                export(classPath("export/1")).
                export(classPath("export/2")).
                lock()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops_invalid.mlir

      func.func @f() attributes { tf_saved_model.exported_names = ["f"] } {
        // expected-error@+1 {{exported function cannot be internally referenced}}
        "some_dialect.some_call"() { callee = @g } : () -> ()
        func.return
      }
    
      // expected-note@+1 {{references this exported function}}
      func.func @g() attributes { tf_saved_model.exported_names = ["g"] } {
        func.return
      }
    
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 19 13:38:14 UTC 2022
    - 14.1K bytes
    - Viewed (0)
  10. src/go/doc/testdata/testing.2.golden

    FILENAMES
    	testdata/benchmark.go
    	testdata/example.go
    	testdata/testing.go
    
    FUNCTIONS
    	// An internal function but exported because it is cross-package; ...
    	func Main(matchString func(pat, str string) (bool, error), tests []InternalTest, benchmarks []InternalBenchmark, examples []InternalExample)
    
    	// An internal function but exported because it is cross-package; ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
Back to top