Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for pref (0.05 sec)

  1. src/html/template/exec_test.go

    	}
    
    	m := FuncMap{
    		"recur": recur,
    	}
    
    	top, err := tmpl.New("x.html").Funcs(m).Parse(`{{recur}}`)
    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = tmpl.New("subroutine").Parse(`<a href="/x?p={{"'a<b'"}}">`)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if err := top.Execute(io.Discard, nil); err != nil {
    		t.Fatal(err)
    	}
    }
    
    // recursiveInvoker is for TestRecursiveExecuteViaMethod.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    func BenchmarkIndexHard2(b *testing.B) { benchmarkIndexHard(b, []byte("</pre>")) }
    func BenchmarkIndexHard3(b *testing.B) { benchmarkIndexHard(b, []byte("<b>hello world</b>")) }
    func BenchmarkIndexHard4(b *testing.B) {
    	benchmarkIndexHard(b, []byte("<pre><b>hello</b><strong>world</strong></pre>"))
    }
    
    func BenchmarkLastIndexHard1(b *testing.B) { benchmarkLastIndexHard(b, []byte("<>")) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    // references to the imported package C, replacing them with
    // references to the equivalent Go types, functions, and variables.
    func (p *Package) Translate(f *File) {
    	for _, cref := range f.Ref {
    		// Convert C.ulong to C.unsigned long, etc.
    		cref.Name.C = cname(cref.Name.Go)
    	}
    
    	var conv typeConv
    	conv.Init(p.PtrSize, p.IntSize)
    
    	p.loadDefines(f)
    	p.typedefs = map[string]bool{}
    	p.typedefList = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/testing/testing.go

    // in https://golang.org/design/14313-benchmark-format.
    //
    // There are standard tools for working with benchmark results at
    // https://golang.org/x/perf/cmd.
    // In particular, https://golang.org/x/perf/cmd/benchstat performs
    // statistically robust A/B comparisons.
    //
    // # Examples
    //
    // The package also runs and verifies example code. Example functions may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            return cli.doMain(new CliRequest(args, classWorld));
        }
    
        /**
         * This supports painless invocation by the Verifier during embedded execution of the core ITs.
         * See <a href="http://maven.apache.org/shared/maven-verifier/xref/org/apache/maven/it/Embedded3xLauncher.html">
         * <code>Embedded3xLauncher</code> in <code>maven-verifier</code></a>
         *
         * @param args CLI args
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSortedMap.java

       * maps ("constant maps"). Example:
       *
       * <pre>{@code
       * static final ImmutableSortedMap<Integer, String> INT_TO_WORD =
       *     new ImmutableSortedMap.Builder<Integer, String>(Ordering.natural())
       *         .put(1, "one")
       *         .put(2, "two")
       *         .put(3, "three")
       *         .buildOrThrow();
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Iterators.java

       *
       * <pre>{@code
       * PeekingIterator<String> peekingIterator =
       *     Iterators.peekingIterator(Iterators.forArray("a", "b"));
       * String a1 = peekingIterator.peek(); // returns "a"
       * String a2 = peekingIterator.peek(); // also returns "a"
       * String a3 = peekingIterator.next(); // also returns "a"
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Iterators.java

       *
       * <pre>{@code
       * PeekingIterator<String> peekingIterator =
       *     Iterators.peekingIterator(Iterators.forArray("a", "b"));
       * String a1 = peekingIterator.peek(); // returns "a"
       * String a2 = peekingIterator.peek(); // also returns "a"
       * String a3 = peekingIterator.next(); // also returns "a"
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    			latency := metrics.SinceInSeconds(lastChangeTriggerTime)
    			metrics.NetworkProgrammingLatency.Observe(latency)
    			proxier.logger.V(4).Info("Network programming", "endpoint", klog.KRef(name.Namespace, name.Name), "elapsed", latency)
    		}
    	}
    
    	metrics.SyncProxyRulesNoLocalEndpointsTotal.WithLabelValues("internal").Set(float64(serviceNoLocalEndpointsTotalInternal))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		if m, ok := a.Method.(*MethodWithQualifiers); ok {
    			ref := a.RefQualifier
    			if ref == "" {
    				ref = m.RefQualifier
    			} else if m.RefQualifier != "" {
    				if ref == "&" || m.RefQualifier == "&" {
    					ref = "&"
    				}
    			}
    			return &MethodWithQualifiers{Method: m.Method, Qualifiers: mergeQualifiers(a.Qualifiers, m.Qualifiers), RefQualifier: ref}
    		}
    		if t, ok := a.Method.(*TypeWithQualifiers); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top