Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 222 for 1e23 (0.04 sec)

  1. src/cmd/compile/internal/test/testdata/mergelocals/integration.go

    }
    
    // This type and the following one will have the same size.
    type Vanilla struct {
    	np uintptr
    	x  [1024]int
    }
    
    type Vanilla2 struct {
    	np uintptr
    	x  [1023]int
    	y  int
    }
    
    type Single struct {
    	np uintptr
    	x  [1023]int
    }
    
    var G int
    
    //go:noinline
    func clobber() {
    	G++
    }
    
    func ABC(i, j int) int {
    	r := 0
    
    	// here v2 and v3 can be overlapped.
    	clobber()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 17:42:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_layout_assignment_to_nchw.mlir

      // CHECK: %[[ARG_TRANSPOSE:[0-9]*]] = "tf.Transpose"(%arg0, %[[ARG_PERM]])
    
      // CHECK: %[[CONV2D:[0-9]*]] = "tf.Conv2D"(%[[ARG_TRANSPOSE]], %arg1)
      // CHECK-SAME: data_format = "NCHW"
      // CHECK-SAME: dilations = [1, 4, 2, 3]
      // CHECK-SAME: explicit_paddings = [1, 2, 7, 8, 3, 4, 5, 6]
      // CHECK-SAME: padding = "EXPLICIT"
      // CHECK-SAME: strides = [5, 8, 6, 7]
      // CHECK-SAME: (tensor<1x3x32x32xf32>, tensor<1x1x3x8xf32>) -> tensor<1x8x7x7xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation_resourceclass_test.go

    		},
    		"bad-parameters-namespace": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("parametersRef", "namespace"), badName, "a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character (e.g. 'my-name',  or '123-abc', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?')")},
    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessorTest.groovy

        }
    
        def "no progress events logged for resources smaller 1024 bytes"() {
            setup:
            metaData.getContentLength() >> 1023
            expectReadBuildOperation(1023)
            expectResourceRead(new ByteArrayInputStream(new byte[1023]))
    
            when:
            accessor.withContent(location, false, action)
    
            then:
            1 * action.execute(_, _) >> { inputStream, metaData ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/cmd/gofmt/testdata/go2numbers.input

    	_ = .0
    	_ = .123
    	_ = .0123
    
    	_ = 0e0
    	_ = 123e+0
    	_ = 0123E-1
    
    	_ = 0e-0
    	_ = 123E+0
    	_ = 0123E123
    
    	_ = 0.e+1
    	_ = 123.E-10
    	_ = 0123.e123
    
    	_ = .0e-1
    	_ = .123E+10
    	_ = .0123E123
    
    	_ = 0.0
    	_ = 123.123
    	_ = 0123.0123
    
    	_ = 0.0e1
    	_ = 123.123E-10
    	_ = 0123.0123e+456
    
    	_ = 1_2_3.
    	_ = 0_123.
    
    	_ = 0_0e0
    	_ = 1_2_3e0
    	_ = 0_123e0
    
    	_ = 0e-0_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 21 17:24:29 UTC 2019
    - 2K bytes
    - Viewed (0)
  6. src/go/printer/testdata/go2numbers.golden

    	_	= .0
    	_	= .123
    	_	= .0123
    
    	_	= 0e0
    	_	= 123e+0
    	_	= 0123E-1
    
    	_	= 0e-0
    	_	= 123E+0
    	_	= 0123E123
    
    	_	= 0.e+1
    	_	= 123.E-10
    	_	= 0123.e123
    
    	_	= .0e-1
    	_	= .123E+10
    	_	= .0123E123
    
    	_	= 0.0
    	_	= 123.123
    	_	= 0123.0123
    
    	_	= 0.0e1
    	_	= 123.123E-10
    	_	= 0123.0123e+456
    
    	_	= 1_2_3.
    	_	= 0_123.
    
    	_	= 0_0e0
    	_	= 1_2_3e0
    	_	= 0_123e0
    
    	_	= 0e-0_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 21:54:06 UTC 2020
    - 2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/kotlin/app/src/main/java/org/sample/myapp/Main.java

    public class Main {
    
        public static void main(String... args) {
            new Main().printAnswer();
        }
    
        public void printAnswer() {
            String output = Strings.concat(" The answer is    ", Numbers.add(19, 23));
            System.out.println(output);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 373 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/groovy/my-app/app/src/main/java/org/sample/myapp/Main.java

    public class Main {
    
        public static void main(String... args) {
            new Main().printAnswer();
        }
    
        public void printAnswer() {
            String output = Strings.concat(" The answer is    ", Numbers.add(19, 23));
            System.out.println(output);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 373 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/kotlin/my-app/app/src/main/java/org/sample/myapp/Main.java

    public class Main {
    
        public static void main(String... args) {
            new Main().printAnswer();
        }
    
        public void printAnswer() {
            String output = Strings.concat(" The answer is    ", Numbers.add(19, 23));
            System.out.println(output);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 373 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/pluginProject/kotlin/buildSrc/build.gradle.kts

    }
    // end::use-and-configure-plugin[]
    
    repositories {
        mavenCentral()
        gradlePluginPortal()
    }
    
    dependencies {
        implementation("org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.9.23")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 06:14:51 UTC 2024
    - 298 bytes
    - Viewed (0)
Back to top