Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 81 for IsExported (0.27 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IdeaModuleBuilderSupport.java

                .setFile(d.getLibraryFile())
                .setSource(d.getSourceFile())
                .setJavadoc(d.getJavadocFile())
                .setScope(new DefaultIdeaDependencyScope(d.getScope()))
                .setExported(d.isExported());
    
            if (d.getModuleVersion() != null) {
                defaultDependency.setGradleModuleVersion(new DefaultGradleModuleVersion(d.getModuleVersion()));
            }
            return defaultDependency;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 21:25:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/optimize_global_tensors.cc

      if (!global_tensor.getIsMutable()) {
        return false;
      }
      // An exported global tensor that is not already known to be immutable might
      // be externally mutated.
      if (IsExported(global_tensor)) {
        return false;
      }
    
      // A global tensor is immutable if the resource analyzer deems it so.
      for (auto& global_tensor_use : global_tensor_uses) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/dumper.go

    			// 	p.printf("\n")
    			// }
    		}
    
    		for i, n := 0, typ.NumField(); i < n; i++ {
    			// Exclude non-exported fields because their
    			// values cannot be accessed via reflection.
    			if name := typ.Field(i).Name; isExported(name) {
    				if first {
    					p.printf("\n")
    					first = false
    				}
    				p.printf("%s: ", name)
    				p.dump(x.Field(i), nil)
    				p.printf("\n")
    			}
    		}
    
    		p.indent--
    		p.printf("}")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 17:32:14 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseProjectDependency.java

         */
        String getPath();
    
        /**
         * Marks this dependency as exported.
         *
         * @return whether this dependency needs to be exported.
         * @since 2.5
         */
        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)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/BinaryInfo.java

            }
    
            public String getName() {
                return name;
            }
    
            public char getType() {
                return type;
            }
    
            public boolean isExported() {
                return exported;
            }
    
            public String toString() {
                return MoreObjects.toStringHelper(this).add("name", name).add("type", type).add("exported", exported).toString();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseClasspathContainer.java

         */
        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)
  7. platforms/documentation/docs/src/snippets/ide/idea/kotlin/build.gradle.kts

        })
    }
    // end::project-before-merged[]
    
    // tag::module-when-merged[]
    
    idea.module.iml {
        whenMerged(Action<Module> {
            dependencies.forEach {
                (it as ModuleDependency).isExported = true
            }
        })
    }
    // end::module-when-merged[]
    
    // tag::project-with-xml[]
    
    idea.project.ipr {
        withXml(Action<XmlProvider> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/go/token/token.go

    // IsKeyword returns true for tokens corresponding to keywords;
    // it returns false otherwise.
    func (tok Token) IsKeyword() bool { return keyword_beg < tok && tok < keyword_end }
    
    // IsExported reports whether name starts with an upper-case letter.
    func IsExported(name string) bool {
    	ch, _ := utf8.DecodeRuneInString(name)
    	return unicode.IsUpper(ch)
    }
    
    // IsKeyword reports whether name is a Go keyword, such as "func" or "return".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/deduplicate_bound_input_bindings.cc

      void runOnOperation() final;
    };
    
    void DedupBoundInputBindingPass::runOnOperation() {
      func::FuncOp func = getOperation();
      if (!mlir::tf_saved_model::IsExported(func)) return;
      llvm::SmallDenseMap<Attribute, unsigned, 8> unique_bound_inputs;
      llvm::BitVector arg_indices_to_erase(func.getNumArguments());
      for (unsigned i = 0, e = func.getNumArguments(); i < e; i++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 09:25:35 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/object.go

    	setScopePos(pos syntax.Pos)
    }
    
    func isExported(name string) bool {
    	ch, _ := utf8.DecodeRuneInString(name)
    	return unicode.IsUpper(ch)
    }
    
    // Id returns name if it is exported, otherwise it
    // returns the name qualified with the package path.
    func Id(pkg *Package, name string) string {
    	if isExported(name) {
    		return name
    	}
    	// unexported names need the package path for differentiation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top