Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 631 for Succeeded (0.2 sec)

  1. src/runtime/runtime-gdb_unix_test.go

    		t.Fatalf("erroring signaling child: %v", err)
    	}
    
    	err = cmd.Wait()
    	t.Logf("child output:\n%s", output.String())
    	if err == nil {
    		t.Fatalf("Wait succeeded, want SIGABRT")
    	}
    	ee, ok := err.(*exec.ExitError)
    	if !ok {
    		t.Fatalf("Wait err got %T %v, want exec.ExitError", ee, ee)
    	}
    	ws, ok := ee.Sys().(syscall.WaitStatus)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/reflect/abi.go

    	}
    	return nil, ptr
    }
    
    // regAssign attempts to reserve argument registers for a value of
    // type t, stored at some offset.
    //
    // It returns whether or not the assignment succeeded, but
    // leaves any changes it made to a.steps behind, so the caller
    // must undo that work by adjusting a.steps if it fails.
    //
    // This method along with the assign* methods represent the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/create.go

    		if err != nil {
    			span.AddEvent("limitedReadBody failed", attribute.Int("len", len(body)), attribute.String("err", err.Error()))
    			scope.err(err, w, req)
    			return
    		}
    		span.AddEvent("limitedReadBody succeeded", attribute.Int("len", len(body)))
    
    		options := &metav1.CreateOptions{}
    		values := req.URL.Query()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildControllers.java

                    complete.countDown();
                });
            }
    
            awaitCompletion(complete);
    
            // Collect the failures in deterministic order
            ExecutionResult<Void> result = ExecutionResult.succeeded();
            for (BuildController buildController : controllers.values()) {
                result = result.withFailures(results.get(buildController));
            }
            return result;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 23 10:37:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. buildscripts/disable-root.sh

    ./mc ready minioadm
    
    ./mc ls minioadm/
    
    ./mc admin config set minioadm/ api root_access=off
    
    sleep 3s # let things settle a little
    
    ./mc ls minioadm/
    if [ $? -eq 0 ]; then
    	echo "listing succeeded, 'minioadmin' was not disabled"
    	exit 1
    fi
    
    set -e
    
    killall -9 minio
    
    export MINIO_API_ROOT_ACCESS=on
    for ((i = 0; i < $((nr_servers)); i++)); do
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. pkg/apis/batch/zz_generated.deepcopy.go

    func (in *UncountedTerminatedPods) DeepCopyInto(out *UncountedTerminatedPods) {
    	*out = *in
    	if in.Succeeded != nil {
    		in, out := &in.Succeeded, &out.Succeeded
    		*out = make([]types.UID, len(*in))
    		copy(*out, *in)
    	}
    	if in.Failed != nil {
    		in, out := &in.Failed, &out.Failed
    		*out = make([]types.UID, len(*in))
    		copy(*out, *in)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. pkg/test/framework/components/gcemetadata/kube.go

    		if err != nil {
    			err = fmt.Errorf("gcemetadata deployment failed: %v", err)
    			scopes.Framework.Infof("=== FAILED: Deploy GCE Metadata Server ===")
    			_ = c.Close()
    		} else {
    			scopes.Framework.Info("=== SUCCEEDED: Deploy GCE Metadata Server ===")
    		}
    	}()
    
    	c.ns, err = namespace.New(ctx, namespace.Config{
    		Prefix: ns,
    	})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.cc

          parser.parseOptionalAttrDict(op_attrs) ||
          parser.parseOptionalAttrDict(op_func_attrs))
        return mlir::failure();
    
      int64_t num_results = 0;
      if (succeeded(parser.parseOptionalColon())) {
        mlir::IntegerAttr attr;
        mlir::NamedAttrList attrs;
        if (failed(parser.parseAttribute(attr, "num_results", attrs)))
          return mlir::failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. pkg/test/framework/components/jwt/kube.go

    	defer func() {
    		if err != nil {
    			scopes.Framework.Error("=== FAILED: Deploy JWT server ===")
    			scopes.Framework.Error(err)
    		} else {
    			scopes.Framework.Infof("=== SUCCEEDED: Deploy JWT server in %v ===", time.Since(start))
    		}
    	}()
    
    	// Create the namespace, if unspecified.
    	if ns == nil {
    		ns, err = namespace.New(ctx, namespace.Config{
    			Prefix: "jwt",
    			Inject: true,
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 22 23:45:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. pkg/test/echo/proto/echo.proto

      // Server name (SNI) to present in TLS connections. If not set, Host will be used for http requests.
      string serverName = 20;
      // Expected response determines what string to look for in the response to validate TCP requests succeeded.
      // If not set, defaults to "StatusCode=200"
      google.protobuf.StringValue expectedResponse = 21;
      // If set, a new connection will be made to the server for each individual request. If false, an attempt
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top