Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 325 for verified$ (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    	"k8s.io/utils/ptr"
    )
    
    // The objects that define an apiserver's initial behavior.  The
    // registered defaulting procedures make no changes to these
    // particular objects (this is verified in the unit tests of the
    // internalbootstrap package; it can not be verified in this package
    // because that would require importing k8s.io/kubernetes).
    var (
    	MandatoryPriorityLevelConfigurations = []*flowcontrol.PriorityLevelConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  2. operator/pkg/verifier/verifier.go

    		kclient:          client,
    	}
    
    	for _, opt := range options {
    		opt(&verifier)
    	}
    
    	return &verifier, nil
    }
    
    func (v *StatusVerifier) Colorize() {
    	v.successMarker = color.New(color.FgGreen).Sprint(v.successMarker)
    	v.failureMarker = color.New(color.FgRed).Sprint(v.failureMarker)
    }
    
    // Verify implements Verifier interface. Here we check status of deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. docs/debugging/xl-meta/main.go

    				}
    				if splitData[shardsIdx][startOffset+i] != shards[shardsIdx][i] {
    					fmt.Println("Internal error: Mismatch at", startOffset+i)
    				}
    				verified++
    			}
    		}
    	}
    	fmt.Println("Reconstructed", reconstructed, "bytes and verified", verified, "bytes of partial shard with config", shardConfig)
    }
    
    // bitrot returns a shard beginning at startOffset after doing bitrot checks.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

        }
      }
    
      public void testVerifyGetsCalled() {
        TesterThatCountsCalls tester = new TesterThatCountsCalls();
    
        tester.test();
    
        assertEquals(
            "Should have verified once per stimulus executed",
            tester.numCallsToVerify,
            tester.numCallsToNewTargetIterator * STEPS);
      }
    
      public void testVerifyCanThrowAssertionThatFailsTest() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

        }
      }
    
      public void testVerifyGetsCalled() {
        TesterThatCountsCalls tester = new TesterThatCountsCalls();
    
        tester.test();
    
        assertEquals(
            "Should have verified once per stimulus executed",
            tester.numCallsToVerify,
            tester.numCallsToNewTargetIterator * STEPS);
      }
    
      public void testVerifyCanThrowAssertionThatFailsTest() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. cluster/gce/windows/smoke-test.sh

          echo "ERROR: some Windows node has status != Ready"
          echo "kubectl get nodes -l kubernetes.io/os=windows"
          ${kubectl} get nodes -l kubernetes.io/os=windows
          exit 1
        fi
      done
      echo "Verified that all Windows nodes have status Ready"
    }
    
    function untaint_windows_nodes {
      # Untaint the windows nodes to allow test workloads without tolerations to be
      # scheduled onto them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/graph_builder.go

    						gb.absentOwnerCache.Add(deletedIdentity)
    						// attempt to delete dependents that do match the verified deleted identity
    						for _, dep := range matchingDependents {
    							gb.attemptToDelete.Add(dep)
    						}
    					}
    
    					// if the delete event verified existingNode.identity doesn't exist...
    					if existingNode.identity == deletedIdentity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

      // defined list. Later on, the used attribute names will be verified to be in
      // the defined list.
      llvm::SmallVector<StringAttr, 4> input_used_attrs, output_used_attrs;
    
      // While scanning the arguments, record the start/end indices of each argument
      // type, so the order can be verified as well.
      // TODO(fengliuai): the attribute arguments with default values need to be
      // at the end?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    }
    
    // initVerifier creates a new ID token verifier for the given configuration and issuer URL.  On success, calls setVerifier with the
    // resulting verifier.
    func initVerifier(ctx context.Context, config *oidc.Config, iss string, audiences sets.Set[string]) (*idTokenVerifier, error) {
    	provider, err := oidc.NewProvider(ctx, iss)
    	if err != nil {
    		return nil, fmt.Errorf("init verifier failed: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

                |Hostname ${address.url.host} not verified:
                |    certificate: ${CertificatePinner.pin(cert)}
                |    DN: ${cert.subjectDN.name}
                |    subjectAltNames: ${OkHostnameVerifier.allSubjectAltNames(cert)}
                """.trimMargin(),
              )
            } else {
              throw SSLPeerUnverifiedException(
                "Hostname ${address.url.host} not verified (no certificates)",
              )
            }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top