Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 305 for stripCR (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/strip_saved_module_metadata.mlir

    // RUN: tf-opt %s --tf-strip-saved-module-metadata --split-input-file | FileCheck %s
    
    // CHECK-LABEL: module
    // CHECK-NOT: tf_saved_model
    module attributes {tf_saved_model.semantics} {
      // CHECK: tf_saved_model.global_tensor
      // CHECK-NOT: tf_saved_model
      "tf_saved_model.global_tensor"() { is_mutable, sym_name = "v", type = tensor<?xf32>, value = dense<1.> : tensor<1xf32> } : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 30 01:28:41 UTC 2022
    - 712 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cache_test.go

    	for _, numKeys := range []int{1 << 8, 1 << 12, 1 << 16} {
    		b.Run(fmt.Sprintf("Simple/keys=%d", numKeys), func(b *testing.B) {
    			benchmarkCache(newSimpleCache(clock.RealClock{}), b, numKeys)
    		})
    		b.Run(fmt.Sprintf("Striped/keys=%d", numKeys), func(b *testing.B) {
    			benchmarkCache(newStripedCache(32, fnvHashFunc, func() cache { return newSimpleCache(clock.RealClock{}) }), b, numKeys)
    		})
    	}
    }
    
    func TestStripedCache(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/security/src/test/groovy/org/gradle/security/internal/SecuritySupportSpec.groovy

    import spock.lang.Issue
    import spock.lang.Specification
    
    class SecuritySupportSpec extends Specification {
        @Rule
        TestNameTestDirectoryProvider tempDir = new TestNameTestDirectoryProvider(getClass())
    
        def "strips data from saved keys on read"() {
            given:
            def keyringFile = new File(this.class.getResource("/keyrings/valid-with-extra-metadata.keys").getFile())
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftPlatformToolProvider.java

                return toolSearchPath.locate(compilerType, SymbolExtractorOsConfig.current().getExecutableName());
            }
            if (compilerType == ToolType.STRIPPER) {
                return toolSearchPath.locate(compilerType, "strip");
            }
            throw new IllegalArgumentException();
        }
    
        @Override
        public <T extends CompileSpec> org.gradle.language.base.internal.compile.Compiler<T> newCompiler(Class<T> spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. ci/official/utilities/extract_resultstore_links.py

        if not elem.text or not elem.text.strip():
          elem.text = indent_str + '  '
        if not elem.tail or not elem.tail.strip():
          elem.tail = indent_str
        for elem in elem:
          indent_xml(elem, level + 1)
        if not elem.tail or not elem.tail.strip():
          elem.tail = indent_str
      else:
        if level and (not elem.tail or not elem.tail.strip()):
          elem.tail = indent_str
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

            }
        }
    
        String getOptionsAsHtml() {
            StringBuilder sb = new StringBuilder(512);
            boolean odd = true;
            sb.append(
                    "<table border='1' class='zebra-striped'><tr class='a'><th><b>Options</b></th><th><b>Description</b></th></tr>");
            for (Option option : new CLIManagerExtension().getOptions()) {
                odd = !odd;
                sb.append("<tr class='");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/strip_tf_attributes.mlir

    // RUN: tf-opt %s -allow-unregistered-dialect --tf-strip-tf-attributes --split-input-file | FileCheck %s
    
    // CHECK-LABEL: strips_attributes
    // CHECK-NOT: tf
    func.func @strips_attributes(%arg0: tensor<32x28x28x1xf32> {tf._user_specified_name = "x"},
                                 %arg1: tensor<3x3x1x5xf32> {tf._user_specified_name = "w1"},
                                 %arg2: tensor<5xf32> {tf._user_specified_name = "b1"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 25 20:04:10 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/recv.go

    	return
    }
    
    // Unpointer returns T given *T or an alias thereof.
    // For all other types it is the identity function.
    // It does not look at underlying types.
    // The result may be an alias.
    //
    // Use this function to strip off the optional pointer on a receiver
    // in a field or method selection, without losing the named type
    // (which is needed to compute the method set).
    //
    // See also [typeparams.MustDeref], which removes one level of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue22660.go

    	"strings"
    )
    
    func main() {
    	f, err := ioutil.TempFile("", "issue22660.go")
    	if err != nil {
    		log.Fatal(err)
    	}
    	f.Close()
    	defer os.Remove(f.Name())
    
    	// path must appear in error messages even if we strip them with -trimpath
    	path := filepath.Join("users", "xxx", "go")
    	var src bytes.Buffer
    	fmt.Fprintf(&src, "//line %s:1\n", filepath.Join(path, "foo.go"))
    
    	if err := ioutil.WriteFile(f.Name(), src.Bytes(), 0660); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/gover/gomod.go

    	if !strings.HasPrefix(string(line), key) {
    		return "", false
    	}
    	s := strings.TrimPrefix(string(line), key)
    	if len(s) == 0 || (s[0] != ' ' && s[0] != '\t') {
    		return "", false
    	}
    	s, _, _ = strings.Cut(s, "//") // strip comments
    	return strings.TrimSpace(s), true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:31:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top