Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,239 for convlit (0.14 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/StartParameterConverterTest.groovy

            def initialProperties = initialPropertiesConverter.convert(parsedCommandLine)
            def buildLayout = buildLayoutConverter.convert(initialProperties, parsedCommandLine, null) {
                it.gradleUserHomeDir = userHome // don't use the default
            }
            def properties = propertiesConverter.convert(initialProperties, buildLayout)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/conversions0.go

    	const _ = string(true /* ERROR "cannot convert" */ )
    	const _ = string(1.2 /* ERROR "cannot convert" */ )
    	const _ = string(nil /* ERROR "cannot convert" */ )
    
    	// issues 11357, 11353: argument must be of integer type
    	_ = string(0.0 /* ERROR "cannot convert" */ )
    	_ = string(0i /* ERROR "cannot convert" */ )
    	_ = string(1 /* ERROR "cannot convert" */ + 2i)
    }
    
    func interface_conversions() {
    	type E interface{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. cni/pkg/install/cniconfig_test.go

    			goldenConfName:    "list.conflist.golden",
    			existingConfFiles: map[string]string{"bridge.conf": "bridge.conf", "list.conflist": "list.conflist"},
    		},
    		{
    			name:              "specified existing CNI config file (existing .conf to .conflist)",
    			chainedCNIPlugin:  true,
    			specifiedConfName: "bridge.conflist",
    			expectedConfName:  "bridge.conflist",
    			goldenConfName:    "bridge.conf.golden",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/conflict_test.go

    								Message: `conflict with "foo" using v1 at 2001-02-03T04:05:06Z`,
    								Field:   ".spec.replicas",
    							},
    						},
    					},
    					Message: `Apply failed with 1 conflict: conflict with "foo" using v1 at 2001-02-03T04:05:06Z: .spec.replicas`,
    				},
    			},
    		},
    		{
    			conflict: merge.Conflicts{
    				merge.Conflict{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_import_comment.txt

    # Import comment mismatch
    go build -n wrongplace.go
    
    # Import comment syntax error
    go build -n bad.go
    
    # Import comment conflict
    go build -n conflict.go
    
    -- m/go.mod --
    module m
    
    go 1.16
    -- m/bad.go --
    package p
    
    import "m/bad"
    -- m/conflict.go --
    package p
    
    import "m/conflict"
    -- m/works.go --
    package p
    
    import _ "m/works/x"
    -- m/wrongplace.go --
    package p
    
    import "m/wrongplace"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/convert_func_to_bfloat16.mlir

      // CHECK: %[[BITCAST:.*]] = stablehlo.bitcast_convert %arg0 : (tensor<1x256128xi32>) -> tensor<1x256128xf32>
      // CHECK: %[[CONVERT:.*]] = stablehlo.convert %[[BITCAST]] : (tensor<1x256128xf32>) -> tensor<1x256128xbf16>
      // CHECK: return %[[CONVERT]] : tensor<1x256128xbf16>
      %20 = stablehlo.bitcast_convert %arg0 : (tensor<1x256128xi32>) -> tensor<1x256128xf32>
      return %20 : tensor<1x256128xf32>
    }
    
    // -----
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 22:40:14 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. cni/pkg/install/install_test.go

    		},
    		{
    			name:              "intentional preempted config",
    			cniConfigFilename: "list.conflist",
    			cniConfName:       "list.conflist",
    			chainedCNIPlugin:  true,
    			existingConfFiles: map[string]string{"bridge.conf": "bridge.conf", "list.conflist.golden": "list.conflist"},
    		},
    		{
    			name:              "CNI config file removed",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/edit.go

    			// constraint. We might end up logging or returning the conflict
    			// information, so go ahead and fill in the details about it.
    			conflict := Conflict{
    				Path: path,
    				Err:  err,
    			}
    			if err == nil {
    				var last module.Version = path[len(path)-1]
    				mustV, ok := mustSelectVersion[last.Path]
    				if !ok {
    					fmt.Fprintf(os.Stderr, "go: %v\n", conflict)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/DefaultTypeConverterTest.groovy

            expect:
            converter.convert(12 as Byte, Long.class, false) == 12L
            converter.convert(123 as Short, Long.class, false) == 123L
            converter.convert(123 as Integer, Long.class, false) == 123L
            converter.convert(123 as Long, Long.class, false) == 123L
            converter.convert(123 as Double, Long.class, false) == 123L
            converter.convert(123 as BigInteger, Long.class, false) == 123L
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 13.3K bytes
    - Viewed (0)
  10. test/const1.go

    	a2 = Int8 * -1               // OK
    	a3 = Int8 * 1000             // ERROR "overflow|cannot convert"
    	a4 = Int8 * int8(1000)       // ERROR "overflow|cannot convert"
    	a5 = int8(Int8 * 1000)       // ERROR "overflow|cannot convert"
    	a6 = int8(Int8 * int8(1000)) // ERROR "overflow|cannot convert"
    	a7 = Int8 - 2*Int8 - 2*Int8  // ERROR "overflow|cannot convert"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 21:49:31 UTC 2020
    - 3.8K bytes
    - Viewed (0)
Back to top