Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,540 for unsuccessful (0.27 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. doc/go_mem.html

    </p>
    
    <p class="rule">
    A successful call to <code>l.TryLock</code> (or <code>l.TryRLock</code>)
    is equivalent to a call to <code>l.Lock</code> (or <code>l.RLock</code>).
    An unsuccessful call has no synchronizing effect at all.
    As far as the memory model is concerned,
    <code>l.TryLock</code> (or <code>l.TryRLock</code>)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		// First monitorNodeHealth check will fail to update pod status to NotReady.
    		// Second monitorNodeHealth check will update pod status to NotReady (retry).
    		{
    			desc: "unsuccessful pod status update, retry required",
    			fakeNodeHandler: &testutil.FakeNodeHandler{
    				Clientset: fake.NewSimpleClientset(&v1.PodList{Items: []v1.Pod{*testutil.NewPod("pod0", "node0")}}),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/query.go

    			// incorporated into v1.1.0, in which case v1.0.1 would be chronologically
    			// newer but v1.1.0 is still an “upgrade”; or v1.0.2 might be a revert of
    			// an unsuccessful fix in v1.0.1, in which case the v1.0.2 commit may be
    			// older than the v1.0.1 commit despite the tag itself being newer.)
    			currentTime, err := module.PseudoVersionTime(current)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/go/internal/vcs/vcs.go

    	dir := cfg.GOMODCACHE
    	if !cfg.ModulesEnabled {
    		dir = filepath.Join(cfg.BuildContext.GOPATH, "src")
    	}
    	os.MkdirAll(dir, 0777) // Ignore errors — if unsuccessful, the command will likely fail.
    
    	release, err := base.AcquireNet()
    	if err != nil {
    		return err
    	}
    	defer release()
    
    	return v.runVerboseOnly(dir, v.PingCmd, "scheme", scheme, "repo", repo)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. docs/changelogs/changelog_3x.md

     *  Fix: Correctly canonicalize IPv6 addresses in `HttpUrl`. This prevented OkHttp from trusting
        HTTPS certificates issued to certain IPv6 addresses.
     *  Fix: Don't reuse connections after an unsuccessful `Expect: 100-continue`.
     *  Fix: Handle either `TLS_` or `SSL_` prefixes for cipher suite names. This is necessary for
        IBM JVMs that use the `SSL_` prefix exclusively.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

         */
        public abstract boolean isSuccessful();
    
        /**
         * Return the result if the represented operation was successful.
         * Throws the original failure otherwise (wrapped in an {@code UncheckedException} if necessary).
         */
        public abstract T get();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top