Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 182 for VerifierT (0.17 sec)

  1. tensorflow/compiler/mlir/lite/python/flatbuffer_to_mlir.cc

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/Location.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    #include "mlir/IR/Verifier.h"  // from @llvm-project
    #include "mlir/Support/FileUtilities.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Tools/mlir-translate/Translation.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/install/internal/SecureFileDownloaderTest.groovy

    import org.gradle.internal.resource.ExternalResource
    import org.gradle.internal.resource.ExternalResourceName
    import org.gradle.internal.resource.ExternalResourceRepository
    import org.gradle.internal.verifier.HttpRedirectVerifier
    import org.gradle.jvm.toolchain.internal.install.SecureFileDownloader
    import spock.lang.Specification
    import spock.lang.TempDir
    
    import java.nio.file.Files
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/crypto/x509/root_windows.go

    	if err != nil {
    		return nil, err
    	}
    	if len(chain) == 0 {
    		return nil, errors.New("x509: internal error: system verifier returned an empty chain")
    	}
    
    	// Mitigate CVE-2020-0601, where the Windows system verifier might be
    	// tricked into using custom curve parameters for a trusted root, by
    	// double-checking all ECDSA signatures. If the system was tricked into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpEntry.java

    import com.google.common.collect.Sets;
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.verification.ArtifactVerificationOperation;
    import org.gradle.api.internal.artifacts.verification.verifier.DependencyVerificationConfiguration;
    import org.gradle.internal.Factory;
    import org.gradle.internal.component.external.model.ModuleComponentArtifactIdentifier;
    
    import java.io.File;
    import java.util.HashSet;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/verifier/HttpRedirectVerifierFactory.java

     * 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.
     */
    
    package org.gradle.internal.verifier;
    
    import org.gradle.util.internal.GUtil;
    
    import javax.annotation.Nullable;
    import java.net.URI;
    import java.util.Collection;
    import java.util.function.Consumer;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/resources/ApiTextResourceAdapterTest.groovy

    import org.gradle.api.internal.tasks.TaskDependencyInternal
    import org.gradle.internal.resource.TextResource
    import org.gradle.internal.resource.TextUriResourceLoader
    import org.gradle.internal.verifier.HttpRedirectVerifier
    
    import java.nio.charset.Charset
    import java.nio.charset.StandardCharsets
    
    class ApiTextResourceAdapterTest extends AbstractTextResourceTest {
    
        TextResource textResource = Mock(TextResource)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 02 16:14:10 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/python/tfr_wrapper.cc

    #include "mlir/IR/AsmState.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/Diagnostics.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/Verifier.h"  // from @llvm-project
    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "pybind11/pybind11.h"  // from @pybind11
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 13 06:54:12 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

    // expected-error@-1 {{'tf_executor.fetch' op expects parent op 'tf_executor.graph'}}
      }) : () -> ()
      func.return
    }
    
    // -----
    
    // Check that a tf_executor.fetch is terminating a tf_executor.graph (verifier)
    func.func @graph_with_invalid_terminator(%arg0: tensor<*xf32>) -> tensor<*xf32> {
    // expected-error@+2 {{'tf_executor.yield' op invalid tf_executor.graph terminator, fetch expected}}
      "tf_executor.graph" () ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/dump_graph.cc

    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/Twine.h"
    #include "llvm/Support/FormatVariadic.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/IR/Operation.h"  // from @llvm-project
    #include "mlir/IR/Verifier.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/utils/error_util.h"
    #include "tensorflow/core/ir/importexport/graphdef_import.h"
    #include "tensorflow/core/platform/env.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    ### Test MinIO server changes
    
    After your code changes, make sure
    
    - To add test cases for the new code. If you have questions about how to do it, please ask on our [Slack](https://slack.min.io) channel.
    - To run `make verifiers`
    - To squash your commits into a single commit. `git rebase -i`. It's okay to force update your pull request.
    - To run `make test` and `make build` completes.
    
    ### Commit changes
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top