Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for sval16 (0.1 sec)

  1. src/net/http/cgi/host_test.go

    		"env-REQUEST_URI":     "/myscript/bar?a=b",
    		"env-SCRIPT_FILENAME": os.Args[0],
    		"env-HTTP_COOKIE":     "nom=NOM; yum=YUM",
    		"env-HTTP_X_FOO":      "val1, val2",
    	}
    	runCgiTest(t, h, "GET /myscript/bar?a=b HTTP/1.0\n"+
    		"Cookie: nom=NOM\n"+
    		"Cookie: yum=YUM\n"+
    		"X-Foo: val1\n"+
    		"X-Foo: val2\n"+
    		"Host: example.com\n\n",
    		expectedMap)
    }
    
    // Issue 16405: CGI+http.Transport differing uses of HTTP_PROXY.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loadelf/ldelf.go

    	switch {
    	case attr.tag == TagCompatibility:
    		attr.ival = a.uleb128()
    		attr.sval = a.string()
    
    	case attr.tag == TagNoDefaults: // Tag_nodefaults has no argument
    
    	case attr.tag == TagAlsoCompatibleWith:
    		// Not really, but we don't actually care about this tag.
    		attr.sval = a.string()
    
    	// Tag with string argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/bugreport/bugreport.go

    		Long: `bug-report selectively captures cluster information and logs into an archive to help diagnose problems.
    Proxy logs can be filtered using:
      --include|--exclude ns1,ns2.../dep1,dep2.../pod1,pod2.../lbl1=val1,lbl2=val2.../ann1=val1,ann2=val2.../cntr1,cntr...
    where ns=namespace, dep=deployment, lbl=label, ann=annotation, cntr=container
    
    The filter spec is interpreted as 'must be in (ns1 OR ns2) AND (dep1 OR dep2) AND (cntr1 OR cntr2)...'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/op.go

    // The low 32 bits hold a pointer offset.
    type ValAndOff int64
    
    func (x ValAndOff) Val() int32   { return int32(int64(x) >> 32) }
    func (x ValAndOff) Val64() int64 { return int64(x) >> 32 }
    func (x ValAndOff) Val16() int16 { return int16(int64(x) >> 32) }
    func (x ValAndOff) Val8() int8   { return int8(int64(x) >> 32) }
    
    func (x ValAndOff) Off64() int64 { return int64(int32(x)) }
    func (x ValAndOff) Off() int32   { return int32(x) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK-LABEL:   func @matrix_diag_v2(
    // CHECK-SAME:                         [[VAL_5:%.*]]: tensor<8x16xf32>) -> tensor<8x16x16xf32> {
    // CHECK:           [[VAL_6:%.*]] = "tfl.matrix_diag"([[VAL_5]]) : (tensor<8x16xf32>) -> tensor<8x16x16xf32>
    // CHECK:           return [[VAL_6]] : tensor<8x16x16xf32>
    }
    
    func.func @matrix_diag_v2_f32_padding(%arg0: tensor<8x16xf32>) -> tensor<8x16x16xf32> {
      %0 = arith.constant dense<[0]> : tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  6. cmd/xl-storage-format_test.go

    		Distribution: []int{9, 10, 1, 2, 3, 4, 5, 6, 7, 8},
    	}
    	xlMeta.Stat = StatInfo{
    		Size:    int64(20),
    		ModTime: UTCNow(),
    	}
    	// Set meta data.
    	xlMeta.Meta = make(map[string]string)
    	xlMeta.Meta["testKey1"] = "val1"
    	xlMeta.Meta["testKey2"] = "val2"
    	return xlMeta
    }
    
    func (m *xlMetaV1Object) AddTestObjectCheckSum(partNumber int, algorithm BitrotAlgorithm, hash string) {
    	checksum, err := hex.DecodeString(hash)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/xcoff.go

    	currSymSrcFile.csectAux = aux
    	currSymSrcFile.csectVAStart = int64(firstEntry)
    	currSymSrcFile.csectVAEnd = int64(firstEntry)
    }
    
    // Update values for the previous package.
    //   - Svalue of the C_FILE symbol: if it is the last one, this Svalue must be -1
    //   - Xsclen of the csect symbol.
    func (f *xcoffFile) updatePreviousFile(ctxt *Link, last bool) {
    	// first file
    	if currSymSrcFile.file == nil {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/staticinit/sched.go

    			return true
    		}
    		//dump("not static ptrlit", r);
    
    	case ir.OSTR2BYTES:
    		r := r.(*ir.ConvExpr)
    		if l.Class == ir.PEXTERN && r.X.Op() == ir.OLITERAL {
    			sval := ir.StringVal(r.X)
    			staticdata.InitSliceBytes(l, loff, sval)
    			return true
    		}
    
    	case ir.OSLICELIT:
    		r := r.(*ir.CompLitExpr)
    		s.initplan(r)
    		// Init slice.
    		ta := types.NewArray(r.Type().Elem(), r.Len)
    		ta.SetNoalg(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. src/mime/mediatype_test.go

    		{` FORM-DATA ; name="foo"`, "form-data", nameFoo},
    
    		{`form-data; key=value;  blah="value";name="foo" `,
    			"form-data",
    			m("key", "value", "blah", "value", "name", "foo")},
    
    		{`foo; key=val1; key=the-key-appears-again-which-is-bogus`,
    			"", m()},
    
    		// From RFC 2231:
    		{`application/x-stuff; title*=us-ascii'en-us'This%20is%20%2A%2A%2Afun%2A%2A%2A`,
    			"application/x-stuff",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    		// only create boundaries between symbols from
    		// different units.
    		sval := d.ldr.SymValue(sym)
    		u0val := d.ldr.SymValue(loader.Sym(unit.Textp[0]))
    		if prevUnit != unit {
    			unit.PCs = append(unit.PCs, dwarf.Range{Start: sval - u0val})
    			prevUnit = unit
    		}
    		unit.PCs[len(unit.PCs)-1].End = sval - u0val + int64(len(d.ldr.Data(sym)))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top