Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 729 for Parses (0.11 sec)

  1. src/crypto/x509/parser.go

    				return errors.New("x509: SAN uniformResourceIdentifier is malformed")
    			}
    			uri, err := url.Parse(uriStr)
    			if err != nil {
    				return fmt.Errorf("x509: cannot parse URI %q: %s", uriStr, err)
    			}
    			if len(uri.Host) > 0 {
    				if _, ok := domainToReverseLabels(uri.Host); !ok {
    					return fmt.Errorf("x509: cannot parse URI %q: invalid domain", uriStr)
    				}
    			}
    			uris = append(uris, uri)
    		case nameTypeIP:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      QDQConversionMode qdq_conversion_mode = QDQConversionMode::kQDQNone;
    };
    
    // Parses the command line flag strings to the CustomOpMap specification.
    void ParseCustomOpSpecs(absl::string_view node_names,
                            const CustomOpUpdateOptions& update_option,
                            CustomOpMap& custom_op_map);
    
    // Parses the command line flag strings to the quantization specification for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/CommandLineParserTest.groovy

            parser.option('long-option-a')
            parser.option('long-option-b')
    
            expect:
            def result = parser.parse(['--long-option-a'])
            result.hasOption('long-option-a')
            !result.hasOption('long-option-b')
        }
    
        def canUseSingleDashForLongOptions() {
            parser.option('long')
            parser.option('other').hasArgument()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  4. cluster/images/etcd/migrate/integration_test.go

    }
    
    // mustParseEtcdVersionPair parses a "<version>/<storage-version>" string to an EtcdVersionPair
    // or panics if the parse fails.
    func mustParseEtcdVersionPair(s string) *EtcdVersionPair {
    	pair, err := ParseEtcdVersionPair(s)
    	if err != nil {
    		panic(err)
    	}
    	return pair
    }
    
    // mustParseSupportedVersions parses a comma separated list of etcd versions or panics if the parse fails.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

        @Requires(UnitTestPreconditions.NotWindows)
        def "parses gcc system includes"() {
            def includes = correctPathSeparators(['/usr/local', '/usr/some/dir'])
            expect:
            def result = output(gcc4, gccVerboseOutput('4.2.1', includes), GCC)
            result.component.systemIncludes*.path == includes
        }
    
        @Requires(UnitTestPreconditions.NotWindows)
        def "parses clang system includes"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. cni/pkg/plugin/plugin.go

    }
    
    // parseConfig parses the supplied configuration (and prevResult) from stdin.
    func parseConfig(stdin []byte) (*Config, error) {
    	conf := Config{}
    
    	if err := json.Unmarshal(stdin, &conf); err != nil {
    		return nil, fmt.Errorf("failed to parse network configuration: %v", err)
    	}
    
    	log.Debugf("istio-cni: Config is: %+v", conf)
    	// Parse previous result. Remove this if your plugin is not chained.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/schema/group_version.go

    limitations under the License.
    */
    
    package schema
    
    import (
    	"fmt"
    	"strings"
    )
    
    // ParseResourceArg takes the common style of string which may be either `resource.group.com` or `resource.version.group.com`
    // and parses it out into both possibilities.  This code takes no responsibility for knowing which representation was intended
    // but with a knowledge of all GroupVersions, calling code can take a very good guess.  If there are only two segments, then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 30 09:08:59 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. src/crypto/tls/tls.go

    	return c, nil
    }
    
    // LoadX509KeyPair reads and parses a public/private key pair from a pair of
    // files. The files must contain PEM encoded data. The certificate file may
    // contain intermediate certificates following the leaf certificate to form a
    // certificate chain. On successful return, Certificate.Leaf will be populated.
    //
    // Before Go 1.23 Certificate.Leaf was left nil, and the parsed certificate was
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    func ParseGeneric(str string) (*Version, error) {
    	return parse(str, false)
    }
    
    // MustParseGeneric is like ParseGeneric except that it panics on error
    func MustParseGeneric(str string) *Version {
    	v, err := ParseGeneric(str)
    	if err != nil {
    		panic(err)
    	}
    	return v
    }
    
    // ParseSemantic parses a version string that exactly obeys the syntax and semantics of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/build_read.go

    	// we are sure we don't change the errors that go/parser returns.
    	if r.err == errSyntax {
    		r.err = nil
    		for r.err == nil && !r.eof {
    			r.readByte()
    		}
    		info.header = r.buf
    	}
    	if r.err != nil {
    		return r.err
    	}
    
    	if info.fset == nil {
    		return nil
    	}
    
    	// Parse file header & record imports.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top