Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 123 for better (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        const auto f_attr = mlir::dyn_cast<FlatSymbolRefAttr>(call_op.getFAttr());
        StringRef function_name = f_attr.getValue();
        // TODO(b/228928859): Improve the getter function to match attributes rather
        // than function name.
        // If enable_legacy_weight_only is enabled, QuantizeFunctionsPattern
        // does not get called and function remains as composite
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  2. gradle/verification-metadata.xml

             <trusted-key id="BA926F64CA647B6D853A38672E2010F8A7FF4A41">
                <trusting group="org.codehaus.plexus"/>
                <trusting group="org.sonatype.aether"/>
             </trusted-key>
             <trusted-key id="BAE5C184E3B70CB15617700598FE03A974CE0A0B" group="org.jetbrains.kotlin"/>
             <trusted-key id="BD95A93175BFE816FC152DE5F9FD57A03B80305D" group="com.lihaoyi"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_test.go

    		xdstest.ValidateRoutes(t, routes)
    		g.Expect(err).NotTo(HaveOccurred())
    		g.Expect(len(routes)).To(Equal(1))
    		g.Expect(routes[0].GetMatch().GetHeaders()[0].GetStringMatch().GetSafeRegex().GetRegex()).To(Equal("Bearer .+?\\..+?\\..+?"))
    	})
    
    	t.Run("for virtual service with regex matching on without_header", func(t *testing.T) {
    		g := NewWithT(t)
    		cg := core.NewConfigGenTest(t, core.TestOptions{})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org.gradle.test:lib:1.0')
                }
            }
        }
    
        def "can use the version catalog getter to register catalogs"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs.create('libs') {
                        library("myLib", "org.gradle.test", "lib").version {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    			// which are related to the assembly generated
    			// to access such symbols.
    			// But as Golang as its own way to check if a symbol is
    			// global or local (the capital letter), we don't need to
    			// implement them yet.
    			s.Nsclass = C_HIDEXT
    		}
    
    		ldr.SetSymDynid(x, int32(xfile.symbolCount))
    		syms = append(syms, s)
    
    		// Create auxiliary entry
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    	}
    	/*
    		  These fail because of non-one-to-oneness of the data, such as multiple
    		  upper case 'I' mapping to 'i'.  We comment them out but keep them for
    		  interest.
    		  For instance: CAPITAL LETTER I WITH DOT ABOVE:
    			unicode.ToUpper(unicode.ToLower('\u0130')) != '\u0130'
    
    		if !equal("ToUpper(lower)", ToUpper(lower), upper, t) {
    			t.Error("ToUpper(lower) consistency fail");
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. src/html/template/exec_test.go

    func twoArgs(a, b string) string {
    	return "twoArgs=" + a + b
    }
    
    func dddArg(a int, b ...string) string {
    	return fmt.Sprintln(a, b)
    }
    
    // count returns a channel that will deliver n sequential 1-letter strings starting at "a"
    func count(n int) chan string {
    	if n == 0 {
    		return nil
    	}
    	c := make(chan string)
    	go func() {
    		for i := 0; i < n; i++ {
    			c <- "abcdefghijklmnop"[i : i+1]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse.go

    	sign := +1
    	if s[1] == 'P' {
    		sign = -1
    	}
    	t := s[2:]
    	c, t, err := nextRune(t)
    	if err != nil {
    		return
    	}
    	var seq, name string
    	if c != '{' {
    		// Single-letter name.
    		seq = s[:len(s)-len(t)]
    		name = seq[2:]
    	} else {
    		// Name is in braces.
    		end := strings.IndexRune(s, '}')
    		if end < 0 {
    			if err = checkUTF8(s); err != nil {
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

          "type": "string",
          "format": "date-time"
        }
      },
      "securityDefinitions": {
        "BearerToken": {
          "description": "Bearer Token authentication",
          "type": "apiKey",
          "name": "authorization",
          "in": "header"
        }
      },
      "security": [{ "BearerToken": [] }]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  10. src/text/template/exec_test.go

    func twoArgs(a, b string) string {
    	return "twoArgs=" + a + b
    }
    
    func dddArg(a int, b ...string) string {
    	return fmt.Sprintln(a, b)
    }
    
    // count returns a channel that will deliver n sequential 1-letter strings starting at "a"
    func count(n int) chan string {
    	if n == 0 {
    		return nil
    	}
    	c := make(chan string)
    	go func() {
    		for i := 0; i < n; i++ {
    			c <- "abcdefghijklmnop"[i : i+1]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top