Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 491 for Generating (0.13 sec)

  1. platforms/documentation/docs/src/snippets/webApplication/quickstart/groovy/src/main/java/org/gradle/sample/Greeter.java

    import java.io.InputStream;
    import org.apache.log4j.LogManager;
    import org.apache.commons.io.IOUtils;
    
    public class Greeter {
        public String getGreeting() throws Exception {
            LogManager.getRootLogger().info("generating greeting.");
            InputStream greetingStr = getClass().getResourceAsStream("/greeting.txt");
            try {
                return IOUtils.toString(greetingStr).trim();
            }
            finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 503 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/bestPractices/taskDefinition/groovy/build.gradle

    }
    
    tasks.register('allDocs') {
        group = JavaBasePlugin.DOCUMENTATION_GROUP
        description = 'Generates all documentation for this project.'
        dependsOn generateHtmlDocs
    
        doLast {
            logger.quiet('Generating all documentation...')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 558 bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/certcontroller.go

    	log.Infof("Generating K8S-signed cert for %v using signer %v", s.dnsNames, signerName)
    	certChain, keyPEM, _, err = chiron.GenKeyCertK8sCA(s.kubeClient.Kube(),
    		strings.Join(s.dnsNames, ","), "", signerName, true, SelfSignedCACertTTL.Get())
    	if err != nil {
    		return fmt.Errorf("failed generating key and cert by kubernetes: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            thumbnailTaskQueue = new LinkedBlockingQueue<>(thumbnailTaskQueueSize);
            generating = !Constants.TRUE.equalsIgnoreCase(System.getProperty("fess.thumbnail.process"));
            thumbnailQueueThread = new Thread((Runnable) () -> {
                final List<Tuple3<String, String, String>> taskList = new ArrayList<>();
                while (generating) {
                    try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. test_docs.sh

    # https://squidfunk.github.io/mkdocs-material/
    # It requires Python to run.
    # Install the packages with the following command:
    # pip install mkdocs mkdocs-material mkdocs-redirects
    
    set -ex
    
    # Test generating the javadoc jars
    ./gradlew publishToMavenLocal -DRELEASE_SIGNING_ENABLED=false
    
    # Generate the API docs
    ./gradlew dokkaHtmlMultiModule
    
    mv ./build/dokka/htmlMultiModule docs/4.x
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:52:16 UTC 2024
    - 718 bytes
    - Viewed (0)
  6. test/fixedbugs/bug341.go

    // run
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Used to panic because 8g was generating incorrect
    // code for converting a negative float to a uint64.
    
    package main
    
    func main() {
    	var x float32 = -2.5
    
    	_ = uint64(x)
    	_ = float32(0)
    }
    /*
    panic: runtime error: floating point error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 459 bytes
    - Viewed (0)
  7. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * A {@link org.gradle.api.Plugin} for generating parsers from Antlr grammars.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 742 bytes
    - Viewed (0)
  8. security/pkg/pki/testdata/README.md

    # Generating ECC certificate for unit test
    
    In general, we prefer to generate certs by running `security/tools/generate_cert/main.go`
    
    ## ECC root certificate
    
    ```bash
    go run main.go -ec-sig-alg ECDSA -ca true
    ```
    
    ## ECC client certificate signed by root certificate
    
    ```bash
    go run main.go -ec-sig-alg ECDSA -san watt -signer-cert ../../pkg/pki/testdata/ec-root-cert.pem -signer-priv ../../pkg/pki/testdata/ec-root-key.pem -mode signer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 25 06:24:06 UTC 2021
    - 442 bytes
    - Viewed (0)
  9. test/fixedbugs/bug446.go

    func (r T) Method1() int { return a }
    func (r T) Method2() int { return b }
    
    // dummy1 and dummy2 must be initialized after a and b.
    var dummy1 = T(0).Method1()
    var dummy2 = T.Method2(0)
    
    // Use a function call to force generating code.
    var a = identity(1)
    var b = identity(2)
    
    func identity(a int) int { return a }
    
    func main() {
    	if dummy1 != 1 {
    		panic("dummy1 != 1")
    	}
    	if dummy2 != 2 {
    		panic("dummy2 != 2")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 30 07:14:49 UTC 2012
    - 699 bytes
    - Viewed (0)
  10. test/fixedbugs/bug442.go

    // run
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Used to crash generating hash and == functions for struct
    // with leading _ field.  Issue 3607.
    
    package main
    
    type T struct {
    	_ int
    	X interface{}
    	_ string
    	Y float64
    }
    
    func main() {
    	m := map[T]int{}
    	m[T{X: 1, Y: 2}] = 1
    	m[T{X: 2, Y: 3}] = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 509 bytes
    - Viewed (0)
Back to top