Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 970 for Starting (0.56 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

         * @since 6.1
         */
        Provider<String> environmentVariable(Provider<String> variableName);
    
        /**
         * Creates a {@link Provider} whose value is a name-to-value map of the environment variables with the names starting with the given prefix.
         * The prefix comparison is case-sensitive. The returned map is immutable.
         *
         * @param variableNamePrefix The prefix of the environment variable names
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/OffsetInFileLocation.java

        /**
         * The global offset from the beginning of the file.
         *
         * @return the zero-indexed the offset
         */
        int getOffset();
    
        /**
         * The content of the content starting from {@link #getOffset()}.
         *
         * @return the length
         */
        int getLength();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ObjectArraysTest.java

        assertTrue(Arrays.equals(reference, target));
        assertTrue(Arrays.equals(reference, target));
    
        Object[] expectedArray1 = expectModify ? reference : starting;
        Object[] expectedArray2 = expectModify ? target : starting;
        assertTrue(Arrays.equals(expectedArray1, array1));
        assertTrue(Arrays.equals(expectedArray2, array2));
      }
    
      public void testPrependZeroElements() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

                }
    
                if (logger.isDebugEnabled()) {
                    logger.debug("Starting Job {}. scriptType: {}, script: {}", id, scriptType, script);
                } else if (scheduledJob.isLoggingEnabled() && logger.isInfoEnabled()) {
                    logger.info("Starting Job {}.", id);
                }
    
                final Object ret = jobExecutor.execute(Constants.DEFAULT_SCRIPT, script);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/custom-logger-init.gradle

        }
    
        public void afterExecute(Task task, TaskState state) {
            logger.info("LOGGER: executed task $task.path")
        }
    
        public void beforeActions(Task task) {
            logger.info("LOGGER: task $task.path starting work")
        }
    
        public void afterActions(Task task) {
            logger.info("LOGGER: task $task.path completed work")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/internal/syscall/windows/symlink_windows.go

    import "syscall"
    
    const (
    	ERROR_INVALID_PARAMETER syscall.Errno = 87
    
    	FILE_SUPPORTS_OBJECT_IDS      = 0x00010000
    	FILE_SUPPORTS_OPEN_BY_FILE_ID = 0x01000000
    
    	// symlink support for CreateSymbolicLink() starting with Windows 10 (1703, v10.0.14972)
    	SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE = 0x2
    
    	// FileInformationClass values
    	FileBasicInfo                  = 0    // FILE_BASIC_INFO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 19:06:55 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/testprog/many-start-stop.go

    // Copyright 2023 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.
    
    // Tests simply starting and stopping tracing multiple times.
    //
    // This is useful for finding bugs in trace state reset.
    
    //go:build ignore
    
    package main
    
    import (
    	"bytes"
    	"log"
    	"os"
    	"runtime"
    	"runtime/trace"
    )
    
    func main() {
    	// Trace a few times.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 786 bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleState.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal;
    
    public enum ExecHandleState {
        INIT(false),
        STARTING(false),
        STARTED(false),
        ABORTED(true),
        FAILED(true),
        DETACHED(true),
        SUCCEEDED(true);
    
        private final boolean terminal;
    
        ExecHandleState(boolean terminal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1007 bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonHealthLoggingIntegrationTest.groovy

        def "health information is present in build log"() {
            when:
            def result = succeeds("help", "--info")
    
            then:
            result.output ==~ /(?s).*Starting build in new daemon \[memory: [0-9].*/
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1018 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/SimpleAction.java

    import org.gradle.tooling.BuildController;
    
    public class SimpleAction implements BuildAction<String> {
        @Override
        public String execute(BuildController controller) {
            System.out.println("starting action");
            return "Action result";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 960 bytes
    - Viewed (0)
Back to top