Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,239 for convlit (0.46 sec)

  1. releasenotes/notes/tls-tcp-conflict.yaml

    John Howard <******@****.***> 1659406991 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 02 02:23:11 UTC 2022
    - 187 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/convert-tf-quant-types.mlir

    // RUN: stablehlo-quant-opt %s -convert-tf-quant-types -split-input-file -verify-diagnostics | FileCheck %s
    
    // CHECK-LABEL: func @relu_qint8
    func.func @relu_qint8(%arg0: tensor<1x!tf_type.qint8>) -> tensor<1x!tf_type.qint8> {
      // CHECK: %[[X:.*]] = "tf.Relu"(%arg0) : (tensor<1xi8>) -> tensor<1xi8>
      %0 = "tf.Relu"(%arg0) : (tensor<1x!tf_type.qint8>) -> tensor<1x!tf_type.qint8>
      func.return %0: tensor<1x!tf_type.qint8>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  3. cni/pkg/install/testdata/list-with-istio.conflist.golden

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 867 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

    bar:1.0 requested
    baz:1.0 requested
    """
        }
    
        @ToBeFixedForConfigurationCache(because = "task exercises the resolution result API")
        def "resolution result API gives access to dependency reasons in case of conflict"() {
            given:
            mavenRepo.with {
                def leaf1 = module('org.test', 'leaf', '1.0').publish()
                def leaf2 = module('org.test', 'leaf', '1.1').publish()
                module('org.test', 'a', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  5. cmd/warm-backend-gcs.go

    	)
    	if err != nil {
    		return nil, err
    	}
    	return &warmBackendGCS{client, conf.Bucket, conf.Prefix, conf.StorageClass}, nil
    }
    
    // Convert GCS errors to minio object layer errors.
    func gcsToObjectError(err error, params ...string) error {
    	if err == nil {
    		return nil
    	}
    
    	bucket := ""
    	object := ""
    	uploadID := ""
    	if len(params) >= 1 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/toolchain.go

    //
    // Note that the repo ONLY reports versions. It does not actually support
    // downloading of the actual toolchains. Instead, that is done using
    // the regular repo code with "golang.org/toolchain".
    // The naming conflict is unfortunate: "golang.org/toolchain"
    // should perhaps have been "go.dev/dl", but it's too late.
    //
    // For clarity, this file refers to golang.org/toolchain as the "DL" repo,
    // the one you can actually download.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. cni/test/install_k8s_test.go

    			},
    		},
    		{
    			name:                  "Skip invalid .conflist files for first valid .conflist file",
    			chainedCNIPlugin:      true,
    			resultFileName:        "02-calico.conflist",
    			expectedOutputFile:    testDataDir + "/expected/10-calico.conflist-istioconfig",
    			expectedPostCleanFile: testDataDir + "/pre/calico.conflist",
    			cniConfDirOrderedFiles: []string{
    				"noname_calico.conflist",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 27 18:01:48 UTC 2022
    - 8K bytes
    - Viewed (0)
  8. test/convert1.go

    	_ = string(si) // ERROR "cannot convert.* string|invalid type conversion"
    	_ = []byte(si) // ERROR "cannot convert.*\[\]byte|invalid type conversion"
    	_ = []rune(si) // ERROR "cannot convert.*\[\]rune|invalid type conversion"
    	_ = []int64(si)
    	_ = Tstring(si) // ERROR "cannot convert.*Tstring|invalid type conversion"
    	_ = Tbyte(si)   // ERROR "cannot convert.*Tbyte|invalid type conversion"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 3.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodeports/node_ports.go

    func (pl *NodePorts) Name() string {
    	return Name
    }
    
    // getContainerPorts returns the used host ports of Pods: if 'port' was used, a 'port:true' pair
    // will be in the result; but it does not resolve port conflict.
    func getContainerPorts(pods ...*v1.Pod) []*v1.ContainerPort {
    	ports := []*v1.ContainerPort{}
    	for _, pod := range pods {
    		for j := range pod.Spec.Containers {
    			container := &pod.Spec.Containers[j]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 10:53:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. test/fixedbugs/issue21979.go

    package p
    
    func f() {
    	_ = bool("")      // ERROR "cannot convert .. \(.*untyped string.*\) to type bool|invalid type conversion"
    	_ = bool(1)       // ERROR "cannot convert 1 \(.*untyped int.*\) to type bool|invalid type conversion"
    	_ = bool(1.0)     // ERROR "cannot convert 1.* \(.*untyped float.*\) to type bool|invalid type conversion"
    	_ = bool(-4 + 2i) // ERROR "cannot convert -4 \+ 2i \(.*untyped complex.*\) to type bool|invalid type conversion"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top