Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,692 for Tvalue (0.14 sec)

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

            .add("\tkey\t:\tvalue\t") // '\t' also counts as whitespace
            .add("ping:  pong  ") // Value whitespace is trimmed.
            .add("kit:kat") // Space after colon is not required.
            .build()
        assertThat(headers.values("foo")).containsExactly("bar", "baz", "bak")
        assertThat(headers.values("key")).containsExactly("value")
        assertThat(headers.values("ping")).containsExactly("pong")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. istioctl/pkg/config/config.go

    	keys := make([]string, len(settableFlags))
    	i := 0
    	for key := range settableFlags {
    		keys[i] = key
    		i++
    	}
    	sort.Strings(keys)
    	w := new(tabwriter.Writer).Init(writer, 0, 8, 5, ' ', 0)
    	fmt.Fprintf(w, "FLAG\tVALUE\tFROM\n")
    	for _, flag := range keys {
    		v := settableFlags[flag]
    		fmt.Fprintf(w, "%s\t%s\t%v\n", flag, viper.GetString(flag), configSource(flag, v))
    	}
    	return w.Flush()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jul 30 12:16:07 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

    }
    
    template <class Tkey, class Tvalue>
    bool EqualProtoMap(const ::tensorflow::protobuf::Map<Tkey, Tvalue>& a,
                       const ::tensorflow::protobuf::Map<Tkey, Tvalue>& b,
                       const std::function<string(const Tkey&)>& key_to_string,
                       const std::function<string(const Tvalue&)>& value_to_string,
                       const std::function<bool(const Tkey&, const Tvalue&,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeStaxBuilder.java

                    String text = parser.getText();
                    lValue = lValue != null ? lValue + text : text;
                } else if (eventType == XMLStreamReader.END_ELEMENT) {
                    boolean emptyTag = lastStartTag
                            == parser.getLocation().getLineNumber() * 1000
                                    + parser.getLocation().getColumnNumber();
                    if (lValue != null && trim && !spacePreserve) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top