Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 332 for sing (0.79 sec)

  1. docs/de/docs/advanced/path-operation-advanced-configuration.md

    # Fortgeschrittene Konfiguration der Pfadoperation
    
    ## OpenAPI operationId
    
    !!! warning "Achtung"
        Wenn Sie kein „Experte“ für OpenAPI sind, brauchen Sie dies wahrscheinlich nicht.
    
    Mit dem Parameter `operation_id` können Sie die OpenAPI `operationId` festlegen, die in Ihrer *Pfadoperation* verwendet werden soll.
    
    Sie müssten sicherstellen, dass sie für jede Operation eindeutig ist.
    
    ```Python hl_lines="6"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:23 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/encoding/json/encode_test.go

    	for i := len(digits); i >= 2; i-- {
    		if testing.Short() && i < len(digits)-4 {
    			break
    		}
    		for exp := -30; exp <= 30; exp++ {
    			for _, sign := range "+-" {
    				for bits := 32; bits <= 64; bits += 32 {
    					s := fmt.Sprintf("%c%se%d", sign, digits[:i], exp)
    					f, err := strconv.ParseFloat(s, bits)
    					if err != nil {
    						log.Fatal(err)
    					}
    					next := math.Nextafter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    	cases := []struct {
    		name             string
    		ringSize         int
    		expectedRingSize int
    	}{
    		{
    			"default",
    			0,
    			1024,
    		},
    		{
    			"ring size",
    			2,
    			2,
    		},
    		{
    			"use ring hash",
    			2,
    			2,
    		},
    	}
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			g := NewWithT(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/main.go

    	flag.Var(&ctxt.BuildMode, "buildmode", "set build `mode`")
    	flag.BoolVar(&ctxt.compressDWARF, "compressdwarf", true, "compress DWARF if possible")
    	objabi.Flagfn1("B", "add an ELF NT_GNU_BUILD_ID `note` when using ELF; use \"gobuildid\" to generate it from the Go build ID", addbuildinfo)
    	objabi.Flagfn1("L", "add specified `directory` to library path", func(a string) { Lflag(ctxt, a) })
    	objabi.AddVersionFlag() // -V
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    }
    
    func TestPing(t *testing.T) {
    	driver := &pingDriver{}
    	Register("ping", driver)
    
    	db, err := Open("ping", "ignored")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if err := db.Ping(); err != nil {
    		t.Errorf("err was %#v, expected nil", err)
    		return
    	}
    
    	driver.fails = true
    	if err := db.Ping(); err != pingError {
    		t.Errorf("err was %#v, expected pingError", err)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. src/encoding/asn1/marshal.go

    	// writing the sorted encodings out to dst.
    	l := make([][]byte, len(s))
    	for i, e := range s {
    		l[i] = make([]byte, e.Len())
    		e.Encode(l[i])
    	}
    
    	// Since we are using bytes.Compare to compare TLV encodings we
    	// don't need to right pad s[i] and s[j] to the same length as
    	// suggested in X690. If len(s[i]) < len(s[j]) the length octet of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. src/cmd/internal/objabi/reloctype.go

    	// address.
    	R_RISCV_PCREL_HI20
    
    	// R_RISCV_PCREL_LO12_I resolves the low 12 bits of a 32-bit PC-relative
    	// address using an I-type instruction.
    	R_RISCV_PCREL_LO12_I
    
    	// R_RISCV_PCREL_LO12_S resolves the low 12 bits of a 32-bit PC-relative
    	// address using an S-type instruction.
    	R_RISCV_PCREL_LO12_S
    
    	// R_RISCV_BRANCH resolves a 12-bit PC-relative branch offset.
    	R_RISCV_BRANCH
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    				cost := strCost * regexCost
    				return &cost
    			}
    		}
    	case "format.named":
    		// Simply dictionary lookup
    		cost := uint64(1)
    		return &cost
    	case "sign", "asInteger", "isInteger", "asApproximateFloat", "isGreaterThan", "isLessThan", "compareTo", "add", "sub":
    		cost := uint64(1)
    		return &cost
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. src/math/big/nat.go

    	// (We are using the math/big convention for names here,
    	// where the computation is z = x**y mod m, so its parts are z1 and z2.
    	// The paper is computing x = a**e mod n; it refers to these as x2 and z1.)
    	z1 := nat(nil).expNN(x, y, m1, false)
    	z2 := nat(nil).expNN(x, y, m2, false)
    
    	// Reconstruct z from z₁, z₂ using CRT, using algorithm from paper,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    color)","--tw-ring-shadow":`var(--tw-ring-inset) 0 0 0 calc(${s} + var(--tw-ring-offset-width)) var(--tw-ring-color)`,"box-shadow":["var(--tw-ring-offset-shadow)","var(--tw-ring-shadow)","var(--tw-shadow, 0 0 #0000)"].join(", ")})},{values:r("ringWidth"),type:"length"}),t({".ring-inset":{"@defaults ring-width":{},"--tw-ring-inset":"inset"}})},ringColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({ring:r=>t("ringOpacity")?se({color:r,property:"--tw-ring-color",variable:"--tw-ring-opacity"}):{"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top