Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 159 for Verifying (0.14 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    				rc.actualStateOfWorld.AddVolumeToReportAsAttached(logger, attachedVolume.VolumeName, attachedVolume.NodeName)
    				continue
    			}
    
    			// Trigger detach volume which requires verifying safe to detach step
    			// If forceDetatchTimeoutExpired is true, skip verifySafeToDetach check
    			// If the node has node.kubernetes.io/out-of-service taint with NoExecute effect, skip verifySafeToDetach check
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. cmd/object-api-datatypes.go

    	ReplicationTimestamp time.Time
    	Checksum             []byte
    }
    
    // MultipartInfo captures metadata information about the uploadId
    // this data structure is used primarily for some internal purposes
    // for verifying upload type such as was the upload
    // - encrypted
    // - compressed
    type MultipartInfo struct {
    	// Name of the bucket.
    	Bucket string
    
    	// Name of the object.
    	Object string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. tests/integration/operator/switch_cr_test.go

    func verifyInstallation(t framework.TestContext, ctx resource.Context,
    	istioCtl istioctl.Instance, profileName string, revision string, cs cluster.Cluster,
    ) object.K8sObjects {
    	scopes.Framework.Infof("=== verifying istio installation revision %s === ", revision)
    	if err := checkInstallStatus(cs, revision); err != nil {
    		t.Fatalf("IstioOperator status not healthy: %v", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. docs/sts/web-identity.md

    ## Specifying Access Control with IAM Policies
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformValuesInjectionIntegrationTest.groovy

                    ? [*errorMessageOrMessages]
                    : [errorMessageOrMessages]
                errorMessages.each { errorMessage ->
                    count++
                    System.err.println("Verifying assertion for $propertyName")
                    failure.assertHasCause("Property '${propertyName}' ${errorMessage}")
                }
            }
            assert errorOutput.count("> Property") == count
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 37.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go gen_common.go -output tables.go
    
    package language // import "golang.org/x/text/internal/language"
    
    // TODO: Remove above NOTE after:
    // - verifying that tables are dropped correctly (most notably matcher tables).
    
    import (
    	"errors"
    	"fmt"
    	"strings"
    )
    
    const (
    	// maxCoreSize is the maximum size of a BCP 47 tag without variants and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  7. src/go/parser/resolver.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)
    
    // If x is an identifier, resolve attempts to resolve x by looking up
    // the object it denotes. If no object is found and collectUnresolved is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/vendor/golang.org/x/text/language/language.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go -output tables.go
    
    package language
    
    // TODO: Remove above NOTE after:
    // - verifying that tables are dropped correctly (most notably matcher tables).
    
    import (
    	"strings"
    
    	"golang.org/x/text/internal/language"
    	"golang.org/x/text/internal/language/compact"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    		// The verifier knows what the leaf hash is, so we don't need to send it.
    		return RecordProof{}, hashes
    	}
    
    	// Walk down the tree toward n.
    	// Record the hash of the path not taken (needed for verifying the proof).
    	var p RecordProof
    	var th Hash
    	if k, _ := maxpow2(hi - lo); n < lo+k {
    		// n is on left side
    		p, hashes = leafProof(lo, lo+k, n, hashes)
    		th, hashes = subTreeHash(lo+k, hi, hashes)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top