Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 631 for Succeeded (0.11 sec)

  1. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultTestOutputResult.java

        private final int destination;
        private final String message;
    
        public DefaultTestOutputResult(long startTime, long endTime, int destination, String message) {
            super(startTime, endTime, "succeeded");
            this.destination = destination;
            this.message = message;
        }
    
        @Override
        public int getDestination() {
            return destination;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleState.java

     */
    
    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) {
            this.terminal = terminal;
        }
    
        public boolean isTerminal() {
            return terminal;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1007 bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h

      /// 2) `TF_FAILED_PRECONDITION` if the read from the remote filesystem
      /// succeeded,
      ///    but the read returned a partial block, and the LRU cache contained a
      ///    block at a higher offset (indicating that the partial block should have
      ///    been a full block).
      /// 3) `TF_OUT_OF_RANGE` if the read from the remote filesystem succeeded, but
      ///    the file contents do not extend past `offset` and thus nothing was
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 04:46:34 UTC 2020
    - 10.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_metadata_utils_test.cc

      mlir::tf_device::ClusterFuncOp cluster_func_op = cluster_func_ops.front();
    
      tensorflow::tpu::TPUCompileMetadataProto compile_metadata;
    
      ASSERT_TRUE(mlir::succeeded(SetMetadataProtoFromClusterFuncOp(
          cluster_func_op,
          /*num_replicas=*/1, /*num_cores_per_replica=*/1, {}, &compile_metadata)));
    
      tensorflow::tpu::TPUCompileMetadataProto expected_compile_metadata;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 12 04:22:33 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. src/net/lookup_test.go

    		var dnsErr *DNSError
    		if errors.As(err, &dnsErr) {
    			succeeded := true
    			if !dnsErr.IsNotFound {
    				succeeded = false
    				t.Logf("%v: IsNotFound is set to false", prefix)
    			}
    
    			if dnsErr.Err != errNoSuchHost.Error() {
    				succeeded = false
    				t.Logf("%v: error message is not equal to: %v", prefix, errNoSuchHost.Error())
    			}
    
    			if succeeded {
    				return
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. test/fixedbugs/issue31419.go

    	go f() // get itab in a loop
    
    	var i I
    	for k := 0; k < 10000; k++ {
    		i, ok = e.(I) // read the cached itab
    		if ok {
    			println("iteration", k, "i =", i, "&t =", &t)
    			panic("conversion succeeded")
    		}
    	}
    	<-ch
    }
    
    func f() {
    	for i := 0; i < 10000; i++ {
    		f1()
    	}
    	ch <- 1
    }
    
    func f1() {
    	defer func() {
    		err := recover()
    		if err == nil {
    			panic("did not panic")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 18:59:57 UTC 2019
    - 948 bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/ExecutionListener.java

    /**
     * Allows an execution action to provide status information to the execution context.
     *
     * <p>Note: if the action does not call {@link #onFailure(Throwable)}, then the execution is assumed to have
     * succeeded.</p>
     */
    public interface ExecutionListener {
        /**
         * Reports a failure of the execution. Note that it is the caller's responsibility to perform any logging of the
         * failure.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. docs/releasing.md

          "s/version = \".*\"/version = \"$NEXT_VERSION\"/g" \
          build.gradle.kts
        git commit -am "Prepare next development version."
        git push
        ```
    
    7. Confirm the [GitHub Actions][github_actions] publish job succeeded.
    
    [github_actions]: https://github.com/square/okhttp/actions
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Dec 26 22:07:16 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	if err != nil {
    		span.AddEvent("Txn call failed", attribute.String("err", err.Error()))
    		return err
    	}
    	span.AddEvent("Txn call succeeded")
    
    	if !txnResp.Succeeded {
    		return storage.NewKeyExistsError(preparedKey, 0)
    	}
    
    	if out != nil {
    		putResp := txnResp.Responses[0].GetResponsePut()
    		err = decode(s.codec, s.versioner, data, out, putResp.Header.Revision)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue52127.go

    		write("b", i, `package p
    var
    var
    var
    var
    var
    `)
    	}
    
    	cmd := exec.Command(args[0], args[1:]...)
    	output, err := cmd.CombinedOutput()
    	if err == nil {
    		panic("compile succeeded unexpectedly")
    	}
    	if !bytes.Contains(output, []byte("syntax error:")) {
    		panic(fmt.Sprintf(`missing "syntax error" in compiler output; got: 
    %s`, output))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top