Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 387 for verified$ (0.2 sec)

  1. subprojects/diagnostics/src/testFixtures/groovy/org/gradle/api/reporting/model/ModelReportOutput.groovy

        }
    
        /**
         * Finds the first occurrence of the root node of {@code modelReportBuilder} from within the entire report. i.e. a subtree
         * Each node of the subtree is then verified against the expected structure.
         */
        void hasNodeStructure(ReportNode expectedNode) {
            def parsedNodes = parsedModelReport.reportNode
            def actualNode = parsedNodes.findFirstByName(expectedNode.name())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 02 20:49:19 UTC 2015
    - 3.5K bytes
    - Viewed (0)
  2. cmd/import-boss/README.md

    useful to manage the dependency graph within a large repository, such as
    [kubernetes](https://github.com/kubernetes/kubernetes).
    
    ## How does it work?
    
    When a package is verified, `import-boss` looks for a file called
    `.import-restrictions` in the same directory and all parent directories, up to
    the module root (defined by the presence of a go.mod file).  These files
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier.go

    type QueryParamVerifier struct {
    	finder        CRDFinder
    	openAPIGetter discovery.OpenAPISchemaInterface
    	queryParam    VerifiableQueryParam
    }
    
    // Verifier is the generic verifier interface used for testing QueryParamVerifier
    type Verifier interface {
    	HasSupport(gvk schema.GroupVersionKind) error
    }
    
    // VerifiableQueryParam is a query parameter who's enablement on the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/basic.py

    
    # Verify that the tf.versions attribute exists. It is difficult to enforce
    # contents, since the version numbers change over time. The conversion logic
    # itself is verified in the common graphdef converter, so here just assert
    # it is being invoked.
    # CHECK: module
    # CHECK-SAME: tf.versions
    # CHECK-SAME: bad_consumers
    # CHECK-SAME: min_consumer
    # CHECK-SAME: producer
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/SignatureVerificationFailure.java

                    sb.append("but signature didn't match");
                    break;
                case MISSING_KEY:
                    sb.append("but it wasn't found in any key server so it couldn't be verified");
                    break;
            }
        }
    
        public enum FailureKind {
            PASSED_NOT_TRUSTED,
            FAILED,
            IGNORED_KEY,
            MISSING_KEY
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. samples/security/spire/README.md

      ```bash
      $ kubectl apply -f spire-quickstart.yaml
      ```
    
    1. Ensure that the deployment is completed before moving to the next step. This can be verified by waiting on the `spire-agent` pod to become ready:
    
      ```bash
      $ kubectl wait pod --for=condition=ready -n spire -l app=spire-agent
      ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/preflight.go

    			UnsupportedPlugins = append(UnsupportedPlugins, unsup.ToString())
    		}
    		fmt.Println("[preflight] The corefile contains plugins that kubeadm/CoreDNS does not know how to migrate. " +
    			"Each plugin listed should be manually verified for compatibility with the newer version of CoreDNS. " +
    			"Once ready, the upgrade can be initiated by skipping the preflight check. During the upgrade, " +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/unicode/utf16/utf16.go

    // Package utf16 implements encoding and decoding of UTF-16 sequences.
    package utf16
    
    // The conditions replacementChar==unicode.ReplacementChar and
    // maxRune==unicode.MaxRune are verified in the tests.
    // Defining them locally avoids this package depending on package unicode.
    
    const (
    	replacementChar = '\uFFFD'     // Unicode replacement character
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/pubkeypin/pubkeypin_test.go

    y4h5rWdNnzBHWAGf7zJ0oEDV6W6RSwNXtC0JNnLaeIUm/6xdSddJlQPwUv8YH4jX
    c1vuFqTnJBPcb7W//R/GI2Paicm1cmns9NLnPR35exHxFTy+D1yxmGokpoPMdife
    aH+sfuxT8xeTPb3kjzF9eJTlnEquUDLM
    -----END CERTIFICATE-----`
    
    // expectedHash can be verified using the openssl CLI.
    const expectedHash = `sha256:345959acb2c3b2feb87d281961c893f62a314207ef02599f1cc4a5fb255480b3`
    
    // testCert2PEM is a second test cert generated the same way as testCertPEM
    const testCert2PEM = `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 11:38:39 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  10. src/crypto/ed25519/ed25519vectors_test.go

    		message := []byte(v.M)
    
    		didVerify := ed25519.Verify(publicKey, message, signature)
    		if didVerify && !expectedToVerify {
    			t.Errorf("#%d: vector with flags %s unexpectedly verified", i, v.Flags)
    		}
    		if !didVerify && expectedToVerify {
    			t.Errorf("#%d: vector with flags %s unexpectedly rejected", i, v.Flags)
    		}
    	}
    }
    
    func downloadEd25519Vectors(t *testing.T) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 25 14:52:51 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top