Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for bidirule (0.1 sec)

  1. src/vendor/golang.org/x/text/secure/bidirule/bidirule.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bidirule implements the Bidi Rule defined by RFC 5893.
    //
    // This package is under development. The API may change without notice and
    // without preserving backward compatibility.
    package bidirule
    
    import (
    	"errors"
    	"unicode/utf8"
    
    	"golang.org/x/text/transform"
    	"golang.org/x/text/unicode/bidi"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    // in as long as the options are not used.
    
    // BidiRule enables the Bidi rule as defined in RFC 5893. Any application
    // that relies on proper validation of labels should include this rule.
    //
    // This option corresponds to the CheckBidi flag in UTS #46.
    func BidiRule() Option {
    	return func(o *options) { o.bidirule = bidirule.ValidString }
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    // in as long as the options are not used.
    
    // BidiRule enables the Bidi rule as defined in RFC 5893. Any application
    // that relies on proper validation of labels should include this rule.
    //
    // This option corresponds to the CheckBidi flag in UTS #46.
    func BidiRule() Option {
    	return func(o *options) { o.bidirule = bidirule.ValidString }
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build go1.10
    
    package bidirule
    
    func (t *Transformer) isFinal() bool {
    	return t.state == ruleLTRFinal || t.state == ruleRTLFinal || t.state == ruleInitial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 323 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !go1.10
    
    package bidirule
    
    func (t *Transformer) isFinal() bool {
    	if !t.isRTL() {
    		return true
    	}
    	return t.state == ruleLTRFinal || t.state == ruleRTLFinal || t.state == ruleInitial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 358 bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/bidi/prop.go

    // do so (without changing the semantics). Bidi requires the semantics used here
    // for the bidirule implementation to be compatible with the Go semantics.
    //  They ultimately should perhaps be adopted by all trie implementations, for
    // convenience sake.
    // This unrolled code also boosts performance of the secure/bidirule package by
    // about 30%.
    // So, to remove this code:
    //   - add option to trie generator to define return type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  7. src/vendor/modules.txt

    golang.org/x/net/lif
    golang.org/x/net/nettest
    golang.org/x/net/route
    # golang.org/x/sys v0.21.0
    ## explicit; go 1.18
    golang.org/x/sys/cpu
    # golang.org/x/text v0.16.0
    ## explicit; go 1.18
    golang.org/x/text/secure/bidirule
    golang.org/x/text/transform
    golang.org/x/text/unicode/bidi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 872 bytes
    - Viewed (0)
  8. src/go/build/deps_test.go

    	FMT, NET, container/list, encoding/binary, log
    	< golang.org/x/text/transform
    	< golang.org/x/text/unicode/norm
    	< golang.org/x/text/unicode/bidi
    	< golang.org/x/text/secure/bidirule
    	< golang.org/x/net/idna
    	< golang.org/x/net/http/httpguts, golang.org/x/net/http/httpproxy;
    
    	NET, crypto/tls
    	< net/http/httptrace;
    
    	compress/gzip,
    	golang.org/x/net/http/httpguts,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/addresses.go

    	// CIDRRules is a list of CIDRs and Addresses to use if a client is in the range
    	CIDRRules []CIDRRule
    
    	// DefaultAddress is the address (hostname or IP and port) that should be used in
    	// if no CIDR matches more specifically.
    	DefaultAddress string
    }
    
    // CIDRRule is a rule for adding an alternate path to the master based on matching CIDR
    type CIDRRule struct {
    	IPRange net.IPNet
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:43 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedToModelMapElementIntegrationTest.groovy

        }
    
        def "scoped rule execution failure yields useful error message"() {
            when:
            buildScript '''
                class ThrowingRule extends RuleSource {
                    @Mutate
                    void badRule(Task echo) {
                        throw new RuntimeException("I'm broken")
                    }
                }
    
                class Rules extends RuleSource {
                    @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top