Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for verifying (0.37 sec)

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

    					if err := volumetesting.VerifyUnmountDeviceCallCount(tc.unmountDeviceCallCount, fakePlugin); err != nil {
    						t.Errorf("Error verifying UnMountDeviceCallCount: %v", err)
    					}
    					if err := volumetesting.VerifyTearDownCallCount(tc.unmountVolumeCount, fakePlugin); err != nil {
    						t.Errorf("Error verifying UnMountDeviceCallCount: %v", err)
    					}
    				} else {
    					if tc.unmountVolumeCount == 0 {
    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. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[verifying-dependencies]]
    = Verifying dependencies
    
    Working with external dependencies and plugins published on third-party repositories puts your build at risk.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. pkg/controller/disruption/disruption_test.go

    	dc, ps := newFakeDisruptionController(ctx)
    
    	pdb, pdbName := newMinAvailablePodDisruptionBudget(t, intstr.FromInt32(3))
    	add(t, dc.pdbStore, pdb)
    	dc.sync(ctx, pdbName)
    
    	// Add three pods, verifying that the counts go up at each step.
    	pods := []*v1.Pod{}
    	for i := int32(0); i < 4; i++ {
    		ps.VerifyPdbStatus(t, pdbName, 0, i, 3, i, map[string]metav1.Time{})
    		pod, _ := newPod(t, fmt.Sprintf("yo-yo-yo %d", i))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. .bazelrc

    # PYTHON TESTS run a suite of Python tests intended for verifying that the Python wheel
    # will work properly. These are usually run Nightly or upon Release.
    # CPU WHEEL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

                }
            """
    
            when:
            fails ":compileJava"
    
            then:
            assertConfigCacheDiscarded()
            failureCauseContains("An error happened while verifying 'org:foo:1.0'")
            failureCauseContains("The following trusted GPG IDs are not in a minimum 160-bit fingerprint format")
            failureCauseContains("'${longId}'")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  6. src/go/printer/testdata/parser.go

    	}
    }
    
    // The unresolved object is a sentinel to mark identifiers that have been added
    // to the list of unresolved identifiers. The sentinel is only used for verifying
    // internal consistency.
    var unresolved = new(ast.Object)
    
    func (p *parser) resolve(x ast.Expr) {
    	// nothing to do if x is not an identifier or the blank identifier
    	ident, _ := x.(*ast.Ident)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  7. src/net/http/request.go

    // This error type should not escape the net/http package to users.
    type requestBodyReadError struct{ error }
    
    func idnaASCII(v string) (string, error) {
    	// TODO: Consider removing this check after verifying performance is okay.
    	// Right now punycode verification, length checks, context checks, and the
    	// permissible character tests are all omitted. It also prevents the ToASCII
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	// settings.
    	VerifyConnection func(ConnectionState) error
    
    	// RootCAs defines the set of root certificate authorities
    	// that clients use when verifying server certificates.
    	// If RootCAs is nil, TLS uses the host's root CA set.
    	RootCAs *x509.CertPool
    
    	// NextProtos is a list of supported application level protocols, in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    	}
    
    	if err := getScoreWeights(f, append(profile.Plugins.Score.Enabled, profile.Plugins.MultiPoint.Enabled...)); err != nil {
    		return nil, err
    	}
    
    	// Verifying the score weights again since Plugin.Name() could return a different
    	// value from the one used in the configuration.
    	for _, scorePlugin := range f.scorePlugins {
    		if f.scorePluginWeight[scorePlugin.Name()] == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix_test.go

    	// Name resolution APIs and libraries should recognize the
    	// followings as special and should not send any queries.
    	// Though, we test those names here for verifying negative
    	// answers at DNS query-response interaction level.
    	{mustQuestion("localhost.", dnsmessage.TypeALL, dnsmessage.ClassINET), dnsmessage.RCodeNameError},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top