Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 827 for verified$ (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/no_input_shape_v1.py

    from tensorflow.core.protobuf import meta_graph_pb2
    
    # 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 Sep 28 21:37:05 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

                        LOGGER.debug("Version listing in dynamic revision cache is expired: will perform fresh resolve of '{}' in '{}'", requested, delegate.getName());
                    } else {
                        // When age == 0, verified since the start of this build, assume listing hasn't changed
                        boolean authoritative = cachedModuleVersionList.getAge().toMillis() == 0;
                        result.listed(versionList);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top