Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,248 for abort2 (0.35 sec)

  1. src/runtime/testdata/testprog/abort.go

    package main
    
    import _ "unsafe" // for go:linkname
    
    func init() {
    	register("Abort", Abort)
    }
    
    //go:linkname runtimeAbort runtime.abort
    func runtimeAbort()
    
    func Abort() {
    	defer func() {
    		recover()
    		panic("BAD: recovered from abort")
    	}()
    	runtimeAbort()
    	println("BAD: after abort")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 08 22:55:55 UTC 2018
    - 449 bytes
    - Viewed (0)
  2. samples/bookinfo/networking/virtual-service-ratings-test-abort.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ratings
    spec:
      hosts:
      - ratings
      http:
      - match:
        - headers:
            end-user:
              exact: jason
        fault:
          abort:
            percentage:
              value: 100.0
            httpStatus: 500
        route:
        - destination:
            host: ratings
            subset: v1
      - route:
        - destination:
            host: ratings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 22 12:35:03 UTC 2018
    - 423 bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

        }
    
        void "can abort after process has been aborted"() {
            given:
            def execHandle = handle().args(args(SlowApp.class)).build()
            execHandle.start()
            execHandle.abort()
    
            when:
            execHandle.abort()
    
            then:
            execHandle.state == ExecHandleState.ABORTED
    
            and:
            execHandle.waitForFinish().exitValue != 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  4. pkg/envoy/agent.go

    			log.Infof("Graceful termination period complete, terminating remaining proxies.")
    			a.abortCh <- errAbort
    		}
    	}
    	status := <-a.statusCh
    	if status.err == errAbort {
    		log.Infof("Envoy aborted normally")
    	} else {
    		log.Warnf("Envoy aborted abnormally")
    	}
    	log.Warnf("Aborted proxy instance")
    }
    
    func (a *Agent) activeProxyConnections() (int, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. releasenotes/notes/abort-with-grpc-status-code.yaml

    Suchith J N <******@****.***> 1654534202 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 16:50:02 UTC 2022
    - 158 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java

        private final boolean abort;
    
        public DataStoreCrawlingException(final String url, final String message, final Exception e) {
            this(url, message, e, false);
        }
    
        public DataStoreCrawlingException(final String url, final String message, final Exception e, final boolean abort) {
            super(message, e);
            this.url = url;
            this.abort = abort;
        }
    
        public String getUrl() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. hack/cherry_pick_pull.sh

      echo
      make-a-pr
      cleanbranch=""
      exit 0
    fi
    
    echo
    echo "+++ I'm about to do the following to push to GitHub (and I'm assuming ${FORK_REMOTE} is your personal fork):"
    echo
    echo "  git push ${FORK_REMOTE} ${NEWBRANCHUNIQ}:${NEWBRANCH}"
    echo
    read -p "+++ Proceed (anything other than 'y' aborts the cherry-pick)? [y/n] " -r
    if ! [[ "${REPLY}" =~ ^[yY]$ ]]; then
      echo "Aborting." >&2
      exit 1
    fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 26 03:51:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcess.java

            }
        }
    
        @Override
        public void stopNow() {
            lock.lock();
            try {
                aborted = true;
                if (connection != null) {
                    connection.abort();
                }
            } finally {
                lock.unlock();
    
                // cleanup() will abort the process as desired
                cleanup();
            }
        }
    
        public void setExecHandle(ExecHandle execHandle) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

            'returns uncritical error'      | false | 'expectGetUnauthorized' | 'assertDependencyMetaDataUnauthorizedError'
    
            abortDescriptor = abort ? 'aborts' : 'does not abort'
        }
    
        def "fails build and aborts repository search if HTTP connection #reason when resolving artifact for found module"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

                         const char* file, int line, DeathTest** test);
      DeathTest();
      virtual ~DeathTest() { }
    
      // A helper class that aborts a death test when it's deleted.
      class ReturnSentinel {
       public:
        explicit ReturnSentinel(DeathTest* test) : test_(test) { }
        ~ReturnSentinel() { test_->Abort(TEST_ENCOUNTERED_RETURN_STATEMENT); }
       private:
        DeathTest* const test_;
        GTEST_DISALLOW_COPY_AND_ASSIGN_(ReturnSentinel);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top