Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 806 for exportId (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/model/push_context_test.go

    					Namespace: "foo",
    					ExportTo:  sets.New(visibility.Private),
    				},
    			},
    			expect: true,
    		},
    		{
    			name:        "service whose namespace is bar has exportTo map with private",
    			pushContext: &PushContext{},
    			service: &Service{
    				Attributes: ServiceAttributes{
    					Namespace: "bar",
    					ExportTo:  sets.New(visibility.Private),
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

                       "separated by ','"),
        llvm::cl::init("serve"));
    
    // NOLINTNEXTLINE
    opt<std::string> saved_model_exported_names(
        "tf-savedmodel-exported-names",
        llvm::cl::desc("Names to export from SavedModel, separated by ','. Empty "
                       "(the default) means export all."),
        llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> output_file_name("o", llvm::cl::desc("<output file>"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/importdecl0/importdecl0a.go

    import f2 "fmt"
    
    // reflect.flag must not be visible in this package
    type flag int
    type _ reflect.flag /* ERROR "name flag not exported by package reflect" */
    
    // imported package name may conflict with local objects
    type reflect /* ERROR "reflect already declared" */ int
    
    // dot-imported exported objects may conflict with local objects
    type Value /* ERROR "Value already declared through dot-import of package reflect" */ struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/ExternalDependency.java

         */
        @Nullable
        File getJavadoc();
    
        /**
         * Marks this dependency as exported.
         *
         * @return whether this dependency needs to be exported.
         * @since 2.5
         */
        boolean isExported();
    
        /**
         * Returns the Gradle module information for this dependency, or {@code null} if the dependency does not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top