Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for myrunes (0.33 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesInSettingsIntegrationTest.groovy

                .publishAs("org.test", "myplugin", "1.0", pluginPortal, executer)
    
            settingsFile << """
                dependencyResolutionManagement {
                    components.all(MyRule)
                }
    
                class MyRule implements ComponentMetadataRule {
                    void execute(ComponentMetadataContext context) {
                        def details = context.details
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/info.go

    // Note that we can extend the current algorithm to be much more accurate. This
    // only makes sense, though, if the performance and/or space penalty of using
    // the generic breaker is big. Extra data will only be needed for non-cased
    // runes, which means there are sufficient bits left in the caseType.
    // ICU prohibits breaking in such cases as well.
    
    // For the purpose of title casing we use an approximation of the Unicode Word
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. test/used.go

    	b && b                 // ERROR "b && b .* not used"
    	append(slice, 1)       // ERROR "append\(slice, 1\) .* not used"
    	string(bytes)          // ERROR "string\(bytes\) .* not used"
    	string(runes)          // ERROR "string\(runes\) .* not used"
    	f0()                   // ok
    	f1()                   // ok
    	f2()                   // ok
    	_ = f0()               // ERROR "f0\(\) .*used as value"
    	_ = f1()               // ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 28 08:39:17 UTC 2020
    - 6K bytes
    - Viewed (0)
  4. src/encoding/json/fold.go

    			continue
    		}
    		// Handle multi-byte Unicode.
    		r, n := utf8.DecodeRune(in[i:])
    		out = utf8.AppendRune(out, foldRune(r))
    		i += n
    	}
    	return out
    }
    
    // foldRune is returns the smallest rune for all runes in the same fold set.
    func foldRune(r rune) rune {
    	for {
    		r2 := unicode.SimpleFold(r)
    		if r2 <= r {
    			return r2
    		}
    		r = r2
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 17:37:27 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/regexp/onepass_test.go

    }{
    	{
    		// empty rhs
    		[]rune{69, 69},
    		[]rune{},
    		[]rune{69, 69},
    		[]uint32{1},
    		1, 2,
    	},
    	{
    		// identical runes, identical targets
    		[]rune{69, 69},
    		[]rune{69, 69},
    		[]rune{},
    		[]uint32{mergeFailed},
    		1, 1,
    	},
    	{
    		// identical runes, different targets
    		[]rune{69, 69},
    		[]rune{69, 69},
    		[]rune{},
    		[]uint32{mergeFailed},
    		1, 2,
    	},
    	{
    		// append right-first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/graph_pruning.cc

    namespace mlir {
    namespace tf_executor {
    namespace {
    
    #define GEN_PASS_DEF_EXECUTORGRAPHPRUNINGPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // This transformation pass prunes a TF graph eliminating dead-nodes.
    class GraphPruningPass
        : public impl::ExecutorGraphPruningPassBase<GraphPruningPass> {
     public:
      GraphPruningPass() = default;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/prune.go

    	structuralobjectmeta "k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta"
    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning"
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    // PruneDefaults prunes default values according to the schema and according to
    // the ObjectMeta definition of the running server. It mutates the passed schema.
    func PruneDefaults(s *structuralschema.Structural) error {
    	p := pruner{s}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 23 20:20:54 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  8. src/internal/profile/prune.go

    			if prune[id] {
    				sample.Location = sample.Location[i+1:]
    				break
    			}
    			if pruneBeneath[id] {
    				sample.Location = sample.Location[i:]
    				break
    			}
    		}
    	}
    }
    
    // RemoveUninteresting prunes and elides profiles using built-in
    // tables of uninteresting function names.
    func (p *Profile) RemoveUninteresting() error {
    	var keep, drop *regexp.Regexp
    	var err error
    
    	if p.DropFrames != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  9. src/strconv/makeisprint.go

    		}
    		fmt.Fprintf(&buf, "\t%#04x,\n", r-0x10000)
    	}
    	fmt.Fprintf(&buf, "}\n\n")
    
    	// The list of graphic but not "printable" runes is short. Just make one easy table.
    	fmt.Fprintf(&buf, "// isGraphic lists the graphic runes not matched by IsPrint.\n")
    	fmt.Fprintf(&buf, "var isGraphic = []uint16{\n")
    	for r := rune(0); r <= unicode.MaxRune; r++ {
    		if unicode.IsPrint(r) != unicode.IsGraphic(r) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/unicode/example_test.go

    package unicode_test
    
    import (
    	"fmt"
    	"unicode"
    )
    
    // Functions starting with "Is" can be used to inspect which table of range a
    // rune belongs to. Note that runes may fit into more than one range.
    func Example_is() {
    
    	// constant with mixed type runes
    	const mixed = "\b5Ὂg̀9! ℃ᾭG"
    	for _, c := range mixed {
    		fmt.Printf("For %q:\n", c)
    		if unicode.IsControl(c) {
    			fmt.Println("\tis control rune")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 00:18:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
Back to top