Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for L2 (0.02 sec)

  1. src/internal/types/testdata/check/stmt0.go

    	}
    }
    
    func labels0() {
    	goto L0
    	goto L1
    	L0:
    	L1:
    	L1 /* ERROR "already declared" */ :
    	if true {
    		goto L2
    		L2:
    		L0 /* ERROR "already declared" */ :
    	}
    	_ = func() {
    		goto L0
    		goto L1
    		goto L2
    		L0:
    		L1:
    		L2:
    	}
    }
    
    func expression_statements(ch chan int) {
    	expression_statements(ch)
    	<-ch
    	println()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/decls0.go

    	S4/* ERROR "invalid recursive type" */ struct {
    		S4
    	}
    	S5 /* ERROR "invalid recursive type" */ struct {
    		S6
    	}
    	S6 struct {
    		field S7
    	}
    	S7 struct {
    		S5
    	}
    
    	L1 []L1
    	L2 []int
    
    	A1 [10.0]int
    	A2 /* ERROR "invalid recursive type" */ [10]A2
    	A3 /* ERROR "invalid recursive type" */ [10]struct {
    		x A4
    	}
    	A4 [10]A3
    
    	F1 func()
    	F2 func(x, y, z float32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/go/printer/printer_test.go

    			t.Errorf("got ident %s; want %s", i2.Name, i1.Name)
    		}
    
    		// here we care about the relative (line-directive adjusted) positions
    		l1 := fset.Position(i1.Pos()).Line
    		l2 := fset.Position(i2.Pos()).Line
    		if l2 != l1 {
    			t.Errorf("got line %d; want %d for %s", l2, l1, i1.Name)
    		}
    	}
    
    	if t.Failed() {
    		t.Logf("\n%s", buf.Bytes())
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/accesslog_test.go

                    json_format:
                      envoyproxy_authority: '%REQ(:AUTHORITY)%'
    `,
    	})
    
    	proxy := cg.SetupProxy(nil)
    	l1 := cg.Listeners(proxy)
    	l2 := cg.Listeners(proxy)
    	// Make sure it doesn't change between patches
    	if d := cmp.Diff(l1, l2, protocmp.Transform()); d != "" {
    		t.Fatal(d)
    	}
    	// Make sure we have exactly 1 access log
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. src/runtime/type.go

    func pkgPath(n name) string {
    	if n.Bytes == nil || *n.Data(0)&(1<<2) == 0 {
    		return ""
    	}
    	i, l := n.ReadVarint(1)
    	off := 1 + i + l
    	if *n.Data(0)&(1<<1) != 0 {
    		i2, l2 := n.ReadVarint(off)
    		off += i2 + l2
    	}
    	var nameOff nameOff
    	copy((*[4]byte)(unsafe.Pointer(&nameOff))[:], (*[4]byte)(unsafe.Pointer(n.Data(off)))[:])
    	pkgPathName := resolveNameOff(unsafe.Pointer(n.Bytes), nameOff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training-16bits.mlir

    // CHECK-NEXT: %[[dq1:.*]] = "tfl.dequantize"(%[[q1]]) : (tensor<1x1x!quant.uniform<i16:f32, {{.*}}>>) -> tensor<1x1xf32>
    // CHECK-NEXT: %[[l2:.*]] = "tfl.l2_normalization"(%[[dq1]]) <{{{.*}}}> : (tensor<1x1xf32>) -> tensor<1x1xf32>
    // CHECK-NEXT: %[[q2:.*]] = "tfl.quantize"(%[[l2]]) <{qtype = tensor<1x1x!quant.uniform<i16:f32, 3.0517578125E-5>>}> {volatile} : (tensor<1x1xf32>) -> tensor<1x1x!quant.uniform<i16:f32, 3.0517578125E-5>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. src/internal/abi/type.go

    }
    
    // Tag returns the tag string for n, or empty if there is none.
    func (n Name) Tag() string {
    	if !n.HasTag() {
    		return ""
    	}
    	i, l := n.ReadVarint(1)
    	i2, l2 := n.ReadVarint(1 + i + l)
    	return unsafe.String(n.DataChecked(1+i+l+i2, "non-empty string"), l2)
    }
    
    func NewName(n, tag string, exported, embedded bool) Name {
    	if len(n) >= 1<<29 {
    		panic("abi.NewName: name too long: " + n[:1024] + "...")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    		containerConfig *runtimeapi.LinuxContainerConfig
    		memoryLow       int64
    		memoryHigh      int64
    	}
    	l1, _ := m.generateLinuxContainerConfig(&pod1.Spec.Containers[0], pod1, new(int64), "", nil, true)
    	l2, _ := m.generateLinuxContainerConfig(&pod2.Spec.Containers[0], pod2, new(int64), "", nil, true)
    	tests := []struct {
    		name     string
    		pod      *v1.Pod
    		expected *expectedResult
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      pot_scale_int16:bool = true;
    }
    
    table MulOptions {
      fused_activation_function:ActivationFunctionType;
    }
    
    table L2NormOptions {
      // This field is currently ignored in the L2 Norm Op.
      fused_activation_function:ActivationFunctionType;
    }
    
    table LocalResponseNormalizationOptions {
      radius:int;
      bias:float;
      alpha:float;
      beta:float;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      func.return %1 : tensor<1x6x6x16xf32>
    
    // CHECK: %[[in:.*]] = "tfl.dequantize"(%arg0)
    // CHECK: %[[l2:.*]] = "tfl.l2_normalization"(%[[in]])
    // CHECK: %[[q:.*]] = "tfl.quantize"(%[[l2]]) <{qtype = tensor<1x6x6x16x!quant.uniform<u8:f32, 7.812500e-03:128>>}> {volatile}
    // CHECK: %[[dq:.*]] = "tfl.dequantize"(%[[q]])
    // CHECK: return %[[dq]] : tensor<1x6x6x16xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top