Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 814 for exportId (0.18 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleDependency.java

        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        @Override
        public void addToNode(Node parentNode) {
            Map<String, Object> attributes = new LinkedHashMap<>();
            attributes.put("type", "module");
            attributes.put("module-name", name);
            if (exported) {
                attributes.put("exported", "");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/doc/doc_test.go

    	{
    		"type",
    		[]string{"-src", p, `ExportedType`},
    		[]string{
    			`Comment about exported type`, // Include comment.
    			`type ExportedType struct`,    // Type definition.
    			`Comment before exported field`,
    			`ExportedField.*Comment on line with exported field`,
    			`ExportedEmbeddedType.*Comment on line with exported embedded field`,
    			`unexportedType.*Comment on line with unexported embedded field`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaSingleEntryLibraryDependency.java

            this.javadoc = javadoc;
            return this;
        }
    
        public boolean getExported() {
            return exported;
        }
    
        public DefaultIdeaSingleEntryLibraryDependency setExported(Boolean exported) {
            this.exported = exported;
            return this;
        }
    
        public IdeaDependencyScope getScope() {
            return scope;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

        public DefaultClassRealmManager(
                CoreRealm coreRealm, List<ClassRealmManagerDelegate> delegates, CoreExports exports) {
            this.world = coreRealm.getClassWorld();
            this.containerRealm = coreRealm.getRealm();
            this.delegates = delegates;
    
            Map<String, ClassLoader> foreignImports = exports.getExportedPackages();
    
            this.mavenApiRealm = createRealm(
                    API_REALMID,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaModuleDependency.java

        }
    
        public String getTargetModuleName() {
            return targetModuleName;
        }
    
        public boolean getExported() {
            return exported;
        }
    
        public DefaultIdeaModuleDependency setExported(boolean exported) {
            this.exported = exported;
            return this;
        }
    
        @Override
        public String toString() {
            return "DefaultIdeaModuleDependency{"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. pilot/pkg/model/virtualservice.go

    				}
    				// make sure that the delegate is visible to root virtual service's namespace
    				exportTo := delegatesExportToMap[types.NamespacedName{Namespace: delegateNamespace, Name: delegate.Name}]
    				if !exportTo.Contains(visibility.Public) && !exportTo.Contains(visibility.Instance(root.Namespace)) {
    					log.Warnf("delegate virtual service %s/%s of %s/%s is not exported to %s",
    						delegateNamespace, delegate.Name, root.Namespace, root.Name, root.Namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

        public void setScope(String scope) {
            this.scope = scope;
        }
    
        /**
         * Whether the library is exported to dependent modules.
         */
        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        @Override
        public void addToNode(Node parentNode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/README.md

    ## List of metrics exposed by MinIO
    
    - MinIO exports Prometheus compatible data by default as an authorized endpoint at `/minio/v2/metrics/cluster`. 
    - MinIO exports Prometheus compatible data by default which is bucket centric as an authorized endpoint at `/minio/v2/metrics/bucket`.
    - MinIO exports Prometheus compatible data by default which is node centric as an authorized endpoint at `/minio/v2/metrics/node`.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DaemonJavaCompiler.java

                // In JDK 9 and above the compiler internal classes are bundled with the rest of the JDK, but we need to export it to gain access.
                javaForkOptions.jvmArgs(
                    "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED",
                    "--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED"
                );
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ModuleDependencyTest.groovy

        }
    
        def shouldNotExportDependencies() {
            expect:
            !(new ModuleDependency("a", "COMPILE").exported)
            !(new ModuleDependency("a", "RUNTIME").exported)
            !(new ModuleDependency("a", "").exported)
            !(new ModuleDependency("a", null).exported)
            !(new ModuleDependency("a", "TEST").exported)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top