Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 678 for STARTING (0.1 sec)

  1. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJvmVersionDetector.java

            if(parentFolder == null || !parentFolder.exists()) {
                Exception cause = new NoSuchFileException(javaCommand);
                throw new ExecException("A problem occurred starting process 'command '" + javaCommand + "''", cause);
            }
            return getVersionFromJavaHome(parentFolder.getParentFile());
        }
    
        private int getVersionFromJavaHome(File javaHome) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/initialization/Environment.java

        /**
         * Common interface for tracked access to system properties and environment variables.
         */
        interface Properties {
            /**
             * Selects the properties that have a name longer than and starting with the given prefix.
             *
             * The returned map keys still contain the prefix.
             *
             * @return a map containing only the properties whose name start with the given prefix.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. docs/bucket/replication/test_del_marker_proxying.sh

    	rm -rf /tmp/siteb
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    
    # Start MinIO instances
    echo -n "Starting MinIO instances ..."
    minio server --address ":9001" --console-address ":10000" /tmp/sitea/{1...4}/disk{1...4} /tmp/sitea/{5...8}/disk{1...4} >/tmp/sitea_1.log 2>&1 &
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 11:38:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/go/types/typeparam.go

    // respective 64 bit atomic instructions are not available
    // on all platforms.
    var lastID atomic.Uint32
    
    // nextID returns a value increasing monotonically by 1 with
    // each call, starting with 1. It may be called concurrently.
    func nextID() uint64 { return uint64(lastID.Add(1)) }
    
    // A TypeParam represents a type parameter type.
    type TypeParam struct {
    	check *Checker  // for lazy type bound completion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInstallation.groovy

            this.mvn = findMvnExecutable(home)
        }
    
        static File findMvnExecutable(File home) {
            def bin = new File(home, "bin")
            if (IS_WINDOWS) {
                // Maven moved from .bat to .cmd starting with 3.3.1 (3.3.0 was canceled)
                def bat = new File(bin, "mvn.bat")
                return bat.isFile() ? bat : new File(bin, "mvn.cmd")
            }
            return new File(bin, "mvn")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/server-workers.md

    Let's check back those deployment concepts from before:
    
    * Security - HTTPS
    * Running on startup
    * Restarts
    * **Replication (the number of processes running)**
    * Memory
    * Previous steps before starting
    
    Up to this point, with all the tutorials in the docs, you have probably been running a **server program** like Uvicorn, running a **single process**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. docs/en/docs/project-generation.md

    # Full Stack FastAPI Template
    
    Templates, while typically come with a specific setup, are designed to be flexible and customizable. This allows you to modify and adapt them to your project's requirements, making them an excellent starting point. 🏁
    
    You can use this template to get started, as it includes a lot of the initial set up, security, database and some API endpoints already done for you.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 21 21:12:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/EmbeddedKotlinOutputNormalizer.groovy

                : output
        }
    
        private String normalizeKotlinOutput(String output) {
            PATTERN.matcher(output)
                .replaceAll("")
                .with {
                    // remove starting empty line
                    it.startsWith('\n')
                        ? it.substring(1)
                        : it
                }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirectorTest.groovy

            1 * redir.redirectStandardOutputTo({ it.dest == TestOutputEvent.Destination.StdOut })
    
            then:
            1 * redir.start()
            0 * _
        }
    
        def "disallows starting redirecting if test owner not provided"() {
            when: redirector.startRedirecting()
            then: thrown(AssertionError)
        }
    
        def "allows setting output owner"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/os/exec_test.go

    		// N.B. On Windows, StartProcess requires exactly 3 Files. Pass
    		// in a dummy pipe to avoid irrelevant output on the test stdout.
    		Files: []*os.File{r, w, w},
    	})
    	if err != nil {
    		t.Fatalf("starting test process: %v", err)
    	}
    	if err := p.Release(); err != nil {
    		t.Fatalf("first Release: got err %v, want nil", err)
    	}
    
    	err = p.Release()
    
    	// We want EINVAL from a second Release call only on Windows.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top