Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for docletpath (0.16 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

        public List<File> getDocletpath() {
            return docletpath.getValue();
        }
    
        @Override
        public void setDocletpath(List<File> docletpath) {
            this.docletpath.setValue(docletpath);
        }
    
        @Override
        public MinimalJavadocOptions docletpath(File... docletpath) {
            this.docletpath.getValue().addAll(Arrays.asList(docletpath));
            return this;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/MinimalJavadocOptions.java

        MinimalJavadocOptions doclet(String docletClass);
    
        @Classpath
        List<File> getDocletpath();
    
        void setDocletpath(List<File> docletpath);
    
        MinimalJavadocOptions docletpath(File... docletpath);
    
        @Nullable @Optional @Input
        String getSource();
    
        void setSource(@Nullable String source);
    
        MinimalJavadocOptions source(String source);
    
        @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/basic/groovy/build.gradle

    dependencies {
        asciidoclet 'org.asciidoctor:asciidoclet:1.+'
    }
    
    tasks.register('configureJavadoc') {
        doLast {
            javadoc {
                options.doclet = 'org.asciidoctor.Asciidoclet'
                options.docletpath = configurations.asciidoclet.files.toList()
            }
        }
    }
    
    javadoc {
        dependsOn configureJavadoc
    }
    // end::using-custom-doclet[]
    
    
    // tag::skip-tests-condition[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/basic/kotlin/build.gradle.kts

    dependencies {
        asciidoclet("org.asciidoctor:asciidoclet:1.+")
    }
    
    tasks.register("configureJavadoc") {
        doLast {
            tasks.javadoc {
                options.doclet = "org.asciidoctor.Asciidoclet"
                options.docletpath = asciidoclet.files.toList()
            }
        }
    }
    
    tasks.javadoc {
        dependsOn("configureJavadoc")
    }
    // end::using-custom-doclet[]
    
    
    // tag::skip-tests-condition[]
    tasks.test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

     *   //jaxDoclet "some.interesting:Dependency:1.0"
     * }
     *
     * task generateRestApiDocs(type: Javadoc) {
     *   source = sourceSets.main.allJava
     *   destinationDir = reporting.file("rest-api-docs")
     *   options.docletpath = configurations.jaxDoclet.files.asType(List)
     *   options.doclet = "com.lunatech.doclets.jax.jaxrs.JAXRSDoclet"
     *   options.addStringOption("jaxrscontext", "http://localhost:8080/myapp")
     * }
     * </pre>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

        }
    
        @Test
        public void testFluentDocletClasspath() {
            final File[] docletClasspathValue = new File[]{new File("doclet.jar"), new File("doclet-dep.jar")};
            assertEquals(options, options.docletpath(docletClasspathValue));
            assertArrayEquals(docletClasspathValue, options.getDocletpath().toArray());
        }
    
        @Test
        public void testFluentSource() {
            final String sourceValue = "1.5";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. pkg/kubelet/pluginmanager/cache/desired_state_of_world_test.go

    		t.Fatalf("Desired state of world length should be one but it's %d", len(dswPlugins))
    	}
    	if dswPlugins[0].SocketPath != socketPath {
    		t.Fatalf("Expected\n%s\nin desired state of world, but got\n%v\n", socketPath, dswPlugins[0])
    	}
    
    	// Check PluginExists returns true
    	if !dsw.PluginExists(socketPath) {
    		t.Fatalf("PluginExists returns false for the newly added plugin")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. pkg/kubelet/pluginmanager/cache/actual_state_of_world.go

    	}
    	asw.socketFileToInfo[pluginInfo.SocketPath] = pluginInfo
    	return nil
    }
    
    func (asw *actualStateOfWorld) RemovePlugin(socketPath string) {
    	asw.Lock()
    	defer asw.Unlock()
    
    	delete(asw.socketFileToInfo, socketPath)
    }
    
    func (asw *actualStateOfWorld) GetRegisteredPlugins() []PluginInfo {
    	asw.RLock()
    	defer asw.RUnlock()
    
    	currentPlugins := []PluginInfo{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 21:20:24 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  9. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher_test.go

    	}
    }
    
    func waitForUnregistration(
    	t *testing.T,
    	socketPath string,
    	dsw cache.DesiredStateOfWorld) {
    	err := retryWithExponentialBackOff(
    		time.Duration(500*time.Millisecond),
    		func() (bool, error) {
    			if !dsw.PluginExists(socketPath) {
    				return true, nil
    			}
    			return false, nil
    		},
    	)
    
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go

    	socketPath string,
    	timestamp time.Time,
    	pluginHandlers map[string]cache.PluginHandler,
    	actualStateOfWorldUpdater ActualStateOfWorldUpdater) func() error {
    
    	registerPluginFunc := func() error {
    		client, conn, err := dial(socketPath, dialTimeoutDuration)
    		if err != nil {
    			return fmt.Errorf("RegisterPlugin error -- dial failed at socket %s, err: %v", socketPath, err)
    		}
    		defer conn.Close()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top