Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 110 for S1 (0.04 sec)

  1. src/fmt/scan_test.go

    func TestScanEmpty(t *testing.T) {
    	var s1, s2 string
    	n, err := Sscan("abc", &s1, &s2)
    	if n != 1 {
    		t.Errorf("Sscan count error: expected 1: got %d", n)
    	}
    	if err == nil {
    		t.Error("Sscan <one item> expected error; got none")
    	}
    	if s1 != "abc" {
    		t.Errorf("Sscan wrong values: got %q expected \"abc\"", s1)
    	}
    	n, err = Sscan("", &s1, &s2)
    	if n != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/decompose.go

    	if _, ok := f.NamedValues[*s]; !ok {
    		f.NamedValues[*s] = nil
    		return append(ss, s)
    	}
    	return ss
    }
    
    func maybeAppend2(f *Func, ss []*LocalSlot, s1, s2 *LocalSlot) []*LocalSlot {
    	return maybeAppend(f, maybeAppend(f, ss, s1), s2)
    }
    
    func decomposeBuiltInPhi(v *Value) {
    	switch {
    	case v.Type.IsInteger() && v.Type.Size() > v.Block.Func.Config.RegSize:
    		decomposeInt64Phi(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant.mlir

      %mini = "tf.Identity"(%min) : (tensor<48xf32>) -> tensor<48xf32>
      %maxi = "tf.Identity"(%max) : (tensor<48xf32>) -> tensor<48xf32>
      %s1 = arith.constant dense<[3, 3, 48]> : tensor<3xi32>
      %s2 = arith.constant dense<[3, 3, 48, 1]> : tensor<4xi32>
      %r1 = "tf.Reshape"(%in, %s1) {T = f32, Tshape = i32, device = ""} : (tensor<3x3x48x1xf32>, tensor<3xi32>) -> tensor<3x3x48xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

        def dep3 = sourceFile("dep3")
        def dep4 = sourceFile("dep4")
        def sourceFiles
    
        Map<TestFile, List<File>> graph = [:]
        List<TestFile> modifiedFiles = []
    
        def setup() {
            // S1 - D1 \
            //    \ D2  \
            //           D3
            // S2 ------/
            //    \ D4
    
            graph[source1] = [dep1, dep2]
            graph[source2] = [dep3, dep4]
            graph[dep1] = [dep3]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTest.groovy

    class ClassWithToString {
        @Override
        String toString() {
            return "ClassWithToString{}";
        }
    }
    
    class WithProperties {
        String prop1
        boolean prop2
    
        void setWriteOnly(String s1) { }
    
        boolean isSomething() { return false }
    
        boolean isSomethingElse() { return true }
    
        String isNotAThing() { "no" }
    
        private String getPrivateThing() { null }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant-4bit.mlir

      %mini = "tf.Identity"(%min) : (tensor<48xf32>) -> tensor<48xf32>
      %maxi = "tf.Identity"(%max) : (tensor<48xf32>) -> tensor<48xf32>
      %s1 = arith.constant dense<[3, 3, 48]> : tensor<3xi32>
      %s2 = arith.constant dense<[3, 3, 48, 1]> : tensor<4xi32>
      %r1 = "tf.Reshape"(%in, %s1) {T = f32, Tshape = i32, device = ""} : (tensor<3x3x48x1xf32>, tensor<3xi32>) -> tensor<3x3x48xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeWhere : Pat<(TF_WhereOp $arg), (TFL_WhereOp $arg)>;
    def LegalizeZerosLike : Pat<(TF_ZerosLikeOp $arg), (TFL_ZerosLikeOp $arg)>;
    
    def LegalizeBroadcastArgs : Pat<(TF_BroadcastArgsOp $s0, $s1),
                                    (TFL_BroadcastArgsOp $s0, $s1)>;
    
    //===----------------------------------------------------------------------===//
    // Binary ops patterns.
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. src/syscall/types_linux.go

    #include <linux/icmpv6.h>
    #include <poll.h>
    #include <termios.h>
    #include <time.h>
    #include <unistd.h>
    #include <utime.h>
    
    enum {
    	sizeofPtr = sizeof(void*),
    };
    
    union sockaddr_all {
    	struct sockaddr s1;	// this one gets used for fields
    	struct sockaddr_in s2;	// these pad it out
    	struct sockaddr_in6 s3;
    	struct sockaddr_un s4;
    	struct sockaddr_ll s5;
    	struct sockaddr_nl s6;
    };
    
    struct sockaddr_any {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_riscv64.go

    }
    
    const SizeofInotifyEvent = 0x10
    
    type PtraceRegs struct {
    	Pc  uint64
    	Ra  uint64
    	Sp  uint64
    	Gp  uint64
    	Tp  uint64
    	T0  uint64
    	T1  uint64
    	T2  uint64
    	S0  uint64
    	S1  uint64
    	A0  uint64
    	A1  uint64
    	A2  uint64
    	A3  uint64
    	A4  uint64
    	A5  uint64
    	A6  uint64
    	A7  uint64
    	S2  uint64
    	S3  uint64
    	S4  uint64
    	S5  uint64
    	S6  uint64
    	S7  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. src/encoding/gob/codec_test.go

    	}
    	pi := 3.14159
    	e := 2.71828
    	two := 2.0
    	meaning := 42
    	fingers := 5
    	s1 := "string1"
    	s2 := "string2"
    	var comp1 complex128 = complex(1.0, 1.0)
    	var comp2 complex128 = complex(1.0, 1.0)
    	var arr1 [2]string
    	arr1[0] = s1
    	arr1[1] = s2
    	var arr2 [2]string
    	arr2[0] = s2
    	arr2[1] = s1
    	var floatArr1 [2]*float64
    	floatArr1[0] = &pi
    	floatArr1[1] = &e
    	var floatArr2 [2]*float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
Back to top