Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for cdata (0.05 sec)

  1. src/html/template/js.go

    		errStr = strings.ReplaceAll(errStr, "<!--", `\x3C!--`)
    		return fmt.Sprintf(" /* %s */null ", errStr)
    	}
    
    	// TODO: maybe post-process output to prevent it from containing
    	// "<!--", "-->", "<![CDATA[", "]]>", or "</script"
    	// in case custom marshalers produce output containing those.
    	// Note: Do not use \x escaping to save bytes because it is not JSON compatible and this escaper
    	// supports ld+json content-type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/mdo/reader.vm

                switch (next) {
                    case XMLStreamReader.SPACE:
                    case XMLStreamReader.COMMENT:
                    case XMLStreamReader.PROCESSING_INSTRUCTION:
                    case XMLStreamReader.CDATA:
                    case XMLStreamReader.CHARACTERS:
                        continue;
                    case XMLStreamReader.START_ELEMENT:
                    case XMLStreamReader.END_ELEMENT:
                        return next;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal.go

    // writing nothing. Marshal handles all other data by writing one or more XML
    // elements containing the data.
    //
    // The name for the XML elements is taken from, in order of preference:
    //   - the tag on the XMLName field, if the data is a struct
    //   - the value of the XMLName field of type [Name]
    //   - the tag of the struct field used to obtain the data
    //   - the name of the struct field used to obtain the data
    //   - the name of the marshaled type
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. src/image/png/writer.go

    	// in their enumeration order (ftNone, ftSub, ftUp, ftAverage, ftPaeth).
    	cdat0 := cr[0][1:]
    	cdat1 := cr[1][1:]
    	cdat2 := cr[2][1:]
    	cdat3 := cr[3][1:]
    	cdat4 := cr[4][1:]
    	pdat := pr[1:]
    	n := len(cdat0)
    
    	// The up filter.
    	sum := 0
    	for i := 0; i < n; i++ {
    		cdat2[i] = cdat0[i] - pdat[i]
    		sum += abs8(cdat2[i])
    	}
    	best := sum
    	filter := ftUp
    
    	// The Paeth filter.
    	sum = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/plist.go

    func (ctxt *Link) EmitEntryStackMap(s *LSym, p *Prog, newprog ProgAlloc) *Prog {
    	pcdata := Appendp(p, newprog)
    	pcdata.Pos = s.Func().Text.Pos
    	pcdata.As = APCDATA
    	pcdata.From.Type = TYPE_CONST
    	pcdata.From.Offset = abi.PCDATA_StackMapIndex
    	pcdata.To.Type = TYPE_CONST
    	pcdata.To.Offset = -1 // pcdata starts at -1 at function entry
    
    	return pcdata
    }
    
    // Similar to EmitEntryLiveness, but just emit unsafe point map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/staticdata/data.go

    	}
    	size := info.Size()
    	if size <= 1*1024 {
    		data, err := io.ReadAll(f)
    		if err != nil {
    			return nil, 0, err
    		}
    		if int64(len(data)) != size {
    			return nil, 0, fmt.Errorf("file changed between reads")
    		}
    		var sym *obj.LSym
    		if readonly {
    			sym = StringSym(pos, string(data))
    		} else {
    			sym = slicedata(pos, string(data))
    		}
    		if len(hash) > 0 {
    			sum := notsha256.Sum256(data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. istioctl/pkg/multicluster/remote_secret_test.go

    	return sa
    }
    
    func makeSecret(name, caData, token string) *v1.Secret {
    	out := &v1.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        name,
    			Namespace:   testNamespace,
    			Annotations: map[string]string{v1.ServiceAccountNameKey: testServiceAccountName},
    		},
    		Data: map[string][]byte{},
    		Type: v1.SecretTypeServiceAccountToken,
    	}
    	if len(caData) > 0 {
    		out.Data[v1.ServiceAccountRootCAKey] = []byte(caData)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/pcln.go

    		ctxt.DiagFlush()
    		log.Fatalf("bad code")
    	}
    
    	return oldval + p.Spadj
    }
    
    // pctopcdata computes the pcdata value in effect at p.
    // A PCDATA instruction sets the value in effect at future
    // non-PCDATA instructions.
    // Since PCDATA instructions have no width in the final code,
    // it does not matter which phase we use for the update.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  9. cmd/data-usage_test.go

    Harshavardhana <******@****.***> 1711552240 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. istioctl/pkg/multicluster/remote_secret.go

    				multicluster.MultiClusterSecretLabel: "true",
    			},
    		},
    		Data: map[string][]byte{
    			key: data.Bytes(),
    		},
    	}
    	return out, nil
    }
    
    func createBaseKubeconfig(caData []byte, clusterName, server string) *api.Config {
    	return &api.Config{
    		Clusters: map[string]*api.Cluster{
    			clusterName: {
    				CertificateAuthorityData: caData,
    				Server:                   server,
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
Back to top