Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 63 for verified$ (0.15 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    }
    
    // Populates desiredStateOfWorld cache with one volume/pod.
    // Enables controllerAttachDetachEnabled.
    // Calls Run()
    // Verifies one mount call is made and no unmount calls.
    // Deletes volume/pod from desired state of world.
    // Verifies one unmount call is made.
    // Verifies there are no attach/detach calls made.
    func Test_Run_Positive_VolumeUnmountControllerAttachEnabled(t *testing.T) {
    	// Arrange
    	node := &v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    // The node starts as healthy.
    //
    // Calls Run()
    // Verifies there is one attach call and no detach calls.
    // Deletes the pod from desiredStateOfWorld cache without first marking the node/volume as unmounted.
    // Verifies that the volume is NOT detached after maxWaitForUnmountDuration.
    // Marks the node as unhealthy.
    // Verifies that the volume is detached after maxWaitForUnmountDuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  3. plugin/pkg/admission/resourcequota/admission_test.go

    	if err != nil {
    		t.Errorf("ResourceQuota should admit all deletes: %v", err)
    	}
    }
    
    // TestAdmissionIgnoresSubresources verifies that the admission controller ignores subresources
    // It verifies that creation of a pod that would have exceeded quota is properly failed
    // It verifies that create operations to a subresource that would have exceeded quota would succeed
    func TestAdmissionIgnoresSubresources(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    func (c *Certificate) hasSANExtension() bool {
    	return oidInExtensions(oidExtensionSubjectAltName, c.Extensions)
    }
    
    // CheckSignatureFrom verifies that the signature on c is a valid signature from parent.
    //
    // This is a low-level API that performs very limited checks, and not a full
    // path verifier. Most users should use [Certificate.Verify] instead.
    func (c *Certificate) CheckSignatureFrom(parent *Certificate) error {
    	// RFC 5280, 4.2.1.9:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. pkg/controller/disruption/disruption_test.go

    	dc, ps := newFakeDisruptionController(ctx)
    
    	pdb, pdbName := newMaxUnavailablePodDisruptionBudget(t, intstr.FromInt32(1))
    	add(t, dc.pdbStore, pdb)
    	dc.sync(ctx, pdbName)
    	// This verifies that when a PDB has 0 pods, disruptions are not allowed.
    	ps.VerifyDisruptionAllowed(t, pdbName, 0)
    
    	pod, _ := newPod(t, "naked")
    	add(t, dc.podStore, pod)
    	dc.sync(ctx, pdbName)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/manager_test.go

    	as.True(ok)
    	as.Equal(int64(3), resource2Capacity.Value())
    	as.Equal(int64(1), resource2Allocatable.Value())
    	as.Equal(0, len(removedResources))
    
    	// Expires resourceName1 endpoint. Verifies testManager.GetCapacity() reports that resourceName1
    	// is removed from capacity and it no longer exists in healthyDevices after the call.
    	e1.setStopTime(time.Now().Add(-1*endpointStopGracePeriod - time.Duration(10)*time.Second))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        }
    
        /**
         * This supports painless invocation by the Verifier during embedded execution of the core ITs.
         * See <a href="http://maven.apache.org/shared/maven-verifier/xref/org/apache/maven/it/Embedded3xLauncher.html">
         * <code>Embedded3xLauncher</code> in <code>maven-verifier</code></a>
         *
         * @param args CLI args
         * @param workingDirectory working directory
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/SetsTest.java

       * same as the given comparator.
       */
      private static <E> void verifySortedSetContents(
          SortedSet<E> set, Iterable<E> iterable, @Nullable Comparator<E> comparator) {
        assertSame(comparator, set.comparator());
        verifySetContents(set, iterable);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller_test.go

    			assert.ElementsMatch(t, testcase.expectedEndpointPorts, slice.Ports)
    			assert.ElementsMatch(t, testcase.expectedEndpoints, slice.Endpoints)
    		})
    	}
    }
    
    // TestPodAddsBatching verifies that endpoint updates caused by pod addition are batched together.
    // This test uses real time.Sleep, as there is no easy way to mock time in endpoints controller now.
    // TODO(mborsz): Migrate this test to mock clock when possible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    	defer func() {
    		if r := recover(); r == nil {
    			t.Errorf("MustParse did not panic")
    		}
    	}()
    	_ = MustParse("Non-Numeric")
    }
    
    // TestQuantityAddZeroPreservesSuffix verifies that a suffix is preserved
    // independent of the order of operations when adding a zero and non-zero val
    func TestQuantityAddZeroPreservesSuffix(t *testing.T) {
    	testValues := []string{"100m", "1Gi"}
    	zero := MustParse("0")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top