Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,002 for continues (0.18 sec)

  1. src/syscall/syscall_openbsd_libc.go

    	// packages make use of syscall.Syscall with SYS_IOCTL since it is
    	// not well supported by golang.org/x/sys/unix. Reroute this system
    	// call number to the respective libc stub so that it continues to
    	// work for the time being. See #63900 for further details.
    	if trap == SYS_IOCTL {
    		return syscallX(abi.FuncPCABI0(libc_ioctl_trampoline), a1, a2, a3)
    	}
    	return 0, 0, ENOSYS
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

            1 * actionFactory1.createAction(!null, !null) >> { throw failure }
            1 * executionListener.onFailure(failure)
            0 * executionListener._
        }
    
        def "continues on failure to parse logging configuration"() {
            when:
            def commandLineExecution = factory.convert(["--logging=broken"])
            commandLineExecution.execute(executionListener)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/ExclusiveCacheAccessingWorkerTest.groovy

            then:
            result == 2
    
            when:
            cacheAccessWorker.stop()
    
            then:
            def e = thrown(RuntimeException)
            e == failure
        }
    
        def "continues on failed operations collecting only the first failure"() {
            given:
            def counter = 0
            def failure = new RuntimeException()
            start(cacheAccessWorker)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. hack/conformance/check_conformance_test_requirements.go

    	files, err := os.ReadDir(e2ePath)
    	if err != nil {
    		return fmt.Errorf("Failed to read dir %s: %w", e2ePath, err)
    	}
    	for _, file := range files {
    		if file.IsDir() {
    			continue
    		}
    		if !regGoFile.MatchString(file.Name()) {
    			continue
    		}
    		e2eFile := fmt.Sprintf("%s/%s", e2ePath, file.Name())
    		err = checkAllProviders(e2eFile)
    		if err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 29 06:30:57 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperLoggingIntegrationTest.groovy

            then:
            outputContains("Welcome to Gradle $wrapperExecuter.distribution.version.version!")
        }
    
        @Requires(UnitTestPreconditions.NotWindows)
        def "wrapper logs and continues when there is a problem setting permissions"() {
            given: "malformed distribution"
            // Repackage distribution with bin/gradle removed so permissions cannot be set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonCommandExecution.java

         * <p>May be null if no action has set the result yet.
         */
        public Object getResult() {
            return this.result;
        }
    
        /**
         * Continues (or starts) execution.
         * <p>
         * Each action should call this method if it determines that execution should continue.
         *
         * @return true if execution did occur, false if this execution has already occurred.
         */
        public boolean proceed() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java

     *
     * <p>The execution of tasks is done by one thread as long as there are tasks left in the queue.
     * When a task is {@linkplain Thread#interrupt interrupted}, execution of subsequent tasks
     * continues. See {@link QueueWorker#workOnQueue} for details.
     *
     * <p>{@code RuntimeException}s thrown by tasks are simply logged and the executor keeps trucking.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/SequentialExecutor.java

     *
     * <p>The execution of tasks is done by one thread as long as there are tasks left in the queue.
     * When a task is {@linkplain Thread#interrupt interrupted}, execution of subsequent tasks
     * continues. See {@link QueueWorker#workOnQueue} for details.
     *
     * <p>{@code RuntimeException}s thrown by tasks are simply logged and the executor keeps trucking.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. src/net/smtp/auth.go

    	// sent to the server.
    	// If it returns a non-nil error, the SMTP client aborts
    	// the authentication attempt and closes the connection.
    	Start(server *ServerInfo) (proto string, toServer []byte, err error)
    
    	// Next continues the authentication. The server has just sent
    	// the fromServer data. If more is true, the server expects a
    	// response, which Next should return as toServer; otherwise
    	// Next should return toServer == nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. cmd/bucket-listobjects-handlers.go

    // criteria to return a subset of the objects in a bucket.
    //
    // NOTE: It is recommended that this API to be used for application development.
    // MinIO continues to support ListObjectsV1 and V2 for supporting legacy tools.
    func (api objectAPIHandlers) ListObjectsV2MHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "ListObjectsV2M")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top