Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for unsuccessful (0.21 sec)

  1. pkg/volume/plugins.go

    			},
    		},
    	}
    	return pod
    }
    
    // Check validity of recycle pod template
    // List of checks:
    // - at least one volume is defined in the recycle pod template
    // If successful, returns nil
    // if unsuccessful, returns an error.
    func ValidateRecyclerPodTemplate(pod *v1.Pod) error {
    	if len(pod.Spec.Volumes) < 1 {
    		return fmt.Errorf("does not contain any volume(s)")
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  2. src/os/exec/exec.go

    		// set it to nil to prevent awaitGoroutines from blocking on it.
    		c.goroutineErr = nil
    	}
    
    	resultc <- ctxResult{err: err}
    }
    
    // An ExitError reports an unsuccessful exit by a command.
    type ExitError struct {
    	*os.ProcessState
    
    	// Stderr holds a subset of the standard error output from the
    	// Cmd.Output method if standard error was not otherwise being
    	// collected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. src/os/exec/exec_test.go

    		if ee, ok := err.(*exec.ExitError); !ok {
    			t.Errorf("Wait error of type %T; want %T", err, ee)
    		}
    	})
    
    	// If Cancel returns an error and the process exits with an
    	// unsuccessful exit code, the process error should take precedence over the
    	// Cancel error.
    	t.Run("nonzero exit after error", func(t *testing.T) {
    		t.Parallel()
    
    		ctx, cancel := context.WithCancel(context.Background())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAdminConfigNotificationTargetsFailed: {
    		Code:           "XMinioAdminNotificationTargetsTestFailed",
    		Description:    "Configuration update failed due an unsuccessful attempt to connect to one or more notification servers",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAdminProfilerNotEnabled: {
    		Code:           "XMinioAdminProfilerNotEnabled",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  5. src/net/http/transport.go

    	}()
    }
    
    // dialConnFor dials on behalf of w and delivers the result to w.
    // dialConnFor has received permission to dial w.cm and is counted in t.connCount[w.cm.key()].
    // If the dial is canceled or unsuccessful, dialConnFor decrements t.connCount[w.cm.key()].
    func (t *Transport) dialConnFor(w *wantConn) {
    	defer w.afterDial()
    	ctx := w.getCtxForDial()
    	if ctx == nil {
    		t.decConnsPerHost(w.key)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/services/internal/RegisteredBuildServiceProvider.java

            synchronized (instanceLock) {
                try {
                    if (instance != null) {
                        instance.ifSuccessful(t -> {
                            if (t instanceof AutoCloseable) {
                                try {
                                    ((AutoCloseable) t).close();
                                } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_pod_control_test.go

    		return true, update.GetObject(), nil
    	})
    	if err := control.UpdateStatefulPod(ctx, set, pod); err != nil {
    		t.Errorf("Successful update returned an error: %s", err)
    	}
    	events := collectEvents(recorder.Events)
    	if eventCount := len(events); eventCount != 2 {
    		t.Errorf("Pod storage update successful: got %d events, but want 2", eventCount)
    	}
    	for i := range events {
    		if !strings.Contains(events[i], v1.EventTypeNormal) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  8. docs/metrics/v3.md

    | `minio_cluster_iam_plugin_authn_service_succ_avg_rtt_ms_minute` | `counter` | When plugin authentication is configured, returns average round-trip-time of successful requests in the last full minute |        |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/LittleEndianByteArray.java

            | ((source[offset + 1] & 0xFF) << 8)
            | ((source[offset + 2] & 0xFF) << 16)
            | ((source[offset + 3] & 0xFF) << 24);
      }
    
      /**
       * Indicates that the loading of Unsafe was successful and the load and store operations will be
       * very efficient. May be useful for calling code to fall back on an alternative implementation
       * that is slower than Unsafe.get/store but faster than the pure-Java mask-and-shift.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/Transforms.kt

        }
    
        override fun finalizeIfNotAlready() {
        }
    
        override fun computeArtifacts(): Try<TransformDependencies> {
            return Try.successful(dependencies)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top