Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 867 for Tvalue (0.09 sec)

  1. okhttp/src/test/java/okhttp3/RequestCommonTest.kt

          builder.header("", "Value")
        }
        assertFailsWith<IllegalArgumentException> {
          builder.addHeader("", "Value")
        }
      }
    
      @Test
      fun headerAllowsTabOnlyInValues() {
        val builder = Request.Builder()
        builder.header("key", "sample\tvalue")
        assertFailsWith<IllegalArgumentException> {
          builder.header("sample\tkey", "value")
        }
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/RequestTest.kt

          builder.header("", "Value")
        }
        assertFailsWith<IllegalArgumentException> {
          builder.addHeader("", "Value")
        }
      }
    
      @Test
      fun headerAllowsTabOnlyInValues() {
        val builder = Request.Builder()
        builder.header("key", "sample\tvalue")
        assertFailsWith<IllegalArgumentException> {
          builder.header("sample\tkey", "value")
        }
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/complit.go

    		case ir.OARRAYLIT, ir.OSTRUCTLIT:
    			value := value.(*ir.CompLitExpr)
    			fixedlit(ctxt, kind, value, a, init)
    			continue
    		}
    
    		islit := ir.IsConstNode(value)
    		if (kind == initKindStatic && !islit) || (kind == initKindDynamic && islit) {
    			continue
    		}
    
    		// build list of assignments: var[index] = expr
    		ir.SetPos(a)
    		as := ir.NewAssignStmt(base.Pos, a, value)
    		as = typecheck.Stmt(as).(*ir.AssignStmt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/fields/selector_test.go

    		`a`:                            {`a`},
    		`a=avalue`:                     {`a=avalue`},
    		`a=avalue,b=bvalue`:            {`a=avalue`, `b=bvalue`},
    		`a=avalue,b==bvalue,c!=cvalue`: {`a=avalue`, `b==bvalue`, `c!=cvalue`},
    
    		// Empty terms
    		``:     nil,
    		`a=a,`: {`a=a`, ``},
    		`,a=a`: {``, `a=a`},
    
    		// Escaped values
    		`k=\,,k2=v2`:   {`k=\,`, `k2=v2`},   // escaped comma in value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 08:00:38 UTC 2017
    - 11.2K bytes
    - Viewed (0)
  5. src/fmt/scan_test.go

    	{"%g", "11+6e1i\n", &renamedComplex64Val, renamedComplex64(11 + 6e1i)},
    	{"%g", "-11.+7e+1i", &renamedComplex128Val, renamedComplex128(-11. + 7e+1i)},
    
    	// Interesting formats
    	{"here is\tthe value:%d", "here is   the\tvalue:118\n", &intVal, 118},
    	{"%% %%:%d", "% %:119\n", &intVal, 119},
    	{"%d%%", "42%", &intVal, 42}, // %% at end of string.
    
    	// Corner cases
    	{"%x", "FFFFFFFF\n", &uint32Val, uint32(0xFFFFFFFF)},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. src/runtime/symtab.go

    func pcvalueCacheKey(targetpc uintptr) uintptr {
    	return (targetpc / goarch.PtrSize) % uintptr(len(pcvalueCache{}.entries))
    }
    
    // Returns the PCData value, and the PC where this value starts.
    func pcvalue(f funcInfo, off uint32, targetpc uintptr, strict bool) (int32, uintptr) {
    	// If true, when we get a cache hit, still look up the data and make sure it
    	// matches the cached contents.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/common/values.go

    				return types.MaybeNoSuchOverloadErr(other)
    			}
    			if oValue, ok := ouMap.value[key]; ok {
    				if !equality.Semantic.DeepEqual(value, oValue) {
    					return types.False
    				}
    			}
    		}
    	}
    	return types.True
    }
    
    func (t *unstructuredMap) Type() ref.Type {
    	return types.MapType
    }
    
    func (t *unstructuredMap) Value() interface{} {
    	return t.value
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  8. src/internal/syscall/windows/registry/value.go

    	return k.setStringValue(name, SZ, value)
    }
    
    // SetExpandStringValue sets the data and type of a name value
    // under key k to value and EXPAND_SZ. The value must not contain a zero byte.
    func (k Key) SetExpandStringValue(name, value string) error {
    	return k.setStringValue(name, EXPAND_SZ, value)
    }
    
    // SetStringsValue sets the data and type of a name value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. src/go/constant/value.go

    //go:generate stringer -type Kind
    
    // Kind specifies the kind of value represented by a [Value].
    type Kind int
    
    const (
    	// unknown values
    	Unknown Kind = iota
    
    	// non-numeric values
    	Bool
    	String
    
    	// numeric values
    	Int
    	Float
    	Complex
    )
    
    // A Value represents the value of a Go constant.
    type Value interface {
    	// Kind returns the value kind.
    	Kind() Kind
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  10. src/internal/xcoff/xcoff.go

    type SymEnt32 struct {
    	Nname   [8]byte // Symbol name
    	Nvalue  uint32  // Symbol value
    	Nscnum  uint16  // Section number of symbol
    	Ntype   uint16  // Basic and derived type specification
    	Nsclass uint8   // Storage class of symbol
    	Nnumaux uint8   // Number of auxiliary entries
    }
    
    type SymEnt64 struct {
    	Nvalue  uint64 // Symbol value
    	Noffset uint32 // Offset of the name in string table or .debug section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top