Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for prepending (0.26 sec)

  1. cmd/erasure-metadata-utils.go

    	}
    	return max, maxErr
    }
    
    // reduceQuorumErrs behaves like reduceErrs by only for returning
    // values of maximally occurring errors validated against a generic
    // quorum number that can be read or write quorum depending on usage.
    func reduceQuorumErrs(ctx context.Context, errs []error, ignoredErrs []error, quorum int, quorumErr error) error {
    	if contextCanceled(ctx) {
    		return context.Canceled
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. pkg/controller/podgc/gc_controller_test.go

    				{name: "c3", phase: v1.PodPending, nodeName: "worker-2"},
    				{name: "d3", phase: v1.PodRunning, nodeName: "worker-2"},
    				{name: "e3", phase: v1.PodUnknown, nodeName: "worker-2"},
    
    				// pods a4, b4, c4, d4 and e4 are on node worker-3
    				{name: "a4", nodeName: "worker-3"},
    				{name: "b4", deletionTimeStamp: &metav1.Time{}, nodeName: "worker-3"},
    				{name: "c4", phase: v1.PodPending, nodeName: "worker-3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/storage/eviction_test.go

    			}},
    			eviction:      &policy.Eviction{ObjectMeta: metav1.ObjectMeta{Name: "t2", Namespace: "default"}, DeleteOptions: metav1.NewDeleteOptions(0)},
    			expectError:   "",
    			podPhase:      api.PodPending,
    			expectDeleted: true,
    			podName:       "t2",
    		},
    		{
    			name: "matching pdbs with no disruptions allowed, pod succeeded",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				Status: v1.PodStatus{
    					Phase: v1.PodPending,
    				},
    			},
    			result: nil,
    		},
    		{
    			name:   "simple pod not running but have podIP",
    			inputs: []any{},
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{},
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    				},
    				Spec: v1.PodSpec{},
    				Status: v1.PodStatus{
    					Phase: v1.PodPending,
    					PodIP: "1.2.3.4",
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authorization/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.19
    
    // SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace.
    // The returned list of actions may be incomplete depending on the server's authorization mode,
    // and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * This path type makes sense only when a main module is added on the module-path by another dependency.
         * In no main module is found, the patch dependency may be added on the class-path or module-path
         * depending on whether {@link #CLASSES} or {@link #MODULES} is present.
         *
         * @param moduleName name of the module on which to apply the path
         * @return an identification of the patch-module path for the given module.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         * group related tasks together when presenting a list of tasks to the user.
         *
         * @return The task group for this task. Might be null.
         */
        @Internal
        @Nullable
        String getGroup();
    
        /**
         * Sets the task group which this task belongs to. The task group is used in reports and user interfaces to
         * group related tasks together when presenting a list of tasks to the user.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java

        SerializableTester.reserializeAndAssert(list);
        assertEquals(2, list.indexOf("b"));
        assertEquals(4, list.lastIndexOf("b"));
      }
    
      public void testCopyOfDefensiveCopy() {
        // Depending on JDK version, either toArray() or toArray(T[]) may be called... use this class
        // rather than mocking to ensure that one of those methods is called.
        class TestArrayList<E> extends ArrayList<E> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                    .details(String.format("Task '%s' uses this output of task '%s' without declaring an explicit or implicit dependency. "
                            + "This can lead to incorrect results being produced, depending on what order the tasks are executed",
                        consumer,
                        producer
                    ))
                    .solution("Declare task '" + producer + "' as an input of '" + consumer + "'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

            gradleFilterSpec.disallowPackage("org.gradle.api.internal.tasks.compile");
    
            /*
             * This shouldn't be necessary, but currently is because the worker API handles return types differently
             * depending on whether you use process isolation or classpath isolation. In the former case, the return
             * value is serialized and deserialized, so the correct class is returned. In the latter case, the result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top