Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,367 for prefixof (0.21 sec)

  1. src/archive/zip/testdata/test-prefix.zip

    Ian Lance Taylor <******@****.***> 1645759397 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    :{prefix:"webkit"},op_mob:{prefix:"o",prefix_exceptions:{"73":"webkit"}},and_chr:{prefix:"webkit"},and_ff:{prefix:"moz"},ie_mob:{prefix:"ms"},and_uc:{prefix:"webkit",prefix_exceptions:{"15.5":"webkit"}},samsung:{prefix:"webkit"},and_qq:{prefix:"webkit"},baidu:{prefix:"webkit"},kaios:{prefix:"moz"}}});var hm=v(()=>{l()});var le=v((t4,ct)=>{l();var{list:Vo}=ge();ct.exports.error=function(i){let e=new Error(i);throw e.autoprefixer=!0,e};ct.exports.uniq=function(i){return[...new Set(i)]};ct.exports....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect-rewrite/httproute-redirect-prefix.yaml

    Alexander Zielenski <******@****.***> 1697824555 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 491 bytes
    - Viewed (0)
  4. cmd/metacache_test.go

    			prefix: "prefix/obj.ext",
    			want:   "prefix/",
    		},
    		{
    			name:   "folderfolderobj",
    			prefix: "prefix/prefix2/obj.ext",
    			want:   "prefix/prefix2/",
    		},
    		{
    			name:   "folderfolder",
    			prefix: "prefix/prefix2/",
    			want:   "prefix/prefix2/",
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := baseDirFromPrefix(tt.prefix); got != tt.want {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 08 18:06:45 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

            current = current.parent;
            prefixer = new DefaultPrefixer();
            return this;
        }
    
        private void writeNode(Node node) {
            if (node.prefix == null) {
                node.prefix = node.isTopLevelNode() ? "" : node.parent.prefix + "    ";
            }
    
            StyledTextOutput output = new LinePrefixingStyledTextOutput(original, node.prefix, false);
            if (!node.valueWritten) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            for (Repository repository : repositories) {
                validateStringNotEmpty(
                        prefix, prefix2, "id", problems, Severity.ERROR, Version.V20, repository.getId(), null, repository);
    
                if (validateStringNotEmpty(
                        prefix,
                        prefix2,
                        "[" + repository.getId() + "].url",
                        problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt

     *
     *  * **Exactly one subdomain**: Use a single asterisk like `*.publicobject.com` to match exactly
     *    one prefix (`www.publicobject.com`, `api.publicobject.com`). Be careful with this approach as
     *    no pinning will be enforced if additional prefixes are present, or if no prefixes are present.
     *
     * Note that any other form is unsupported. You may not use asterisks in any position other than
     * the leftmost label.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. cmd/api-response.go

    	data.VersionIDMarker = versionIDMarker
    	data.IsTruncated = resp.IsTruncated
    
    	prefixes := make([]CommonPrefix, 0, len(resp.Prefixes))
    	for _, prefix := range resp.Prefixes {
    		prefixItem := CommonPrefix{}
    		prefixItem.Prefix = s3EncodeName(prefix, encodingType)
    		prefixes = append(prefixes, prefixItem)
    	}
    	data.CommonPrefixes = prefixes
    	return data
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal.go

    	p.WriteString(`="`)
    	EscapeText(p, []byte(url))
    	p.WriteString(`" `)
    
    	p.prefixes = append(p.prefixes, prefix)
    
    	return prefix
    }
    
    // deleteAttrPrefix removes an attribute name space prefix.
    func (p *printer) deleteAttrPrefix(prefix string) {
    	delete(p.attrPrefix, p.attrNS[prefix])
    	delete(p.attrNS, prefix)
    }
    
    func (p *printer) markPrefix() {
    	p.prefixes = append(p.prefixes, "")
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/base/link.go

    // package prefix. For user packages, prefix should be the package
    // path encoded with objabi.PathToPrefix.
    func PkgLinksym(prefix, name string, abi obj.ABI) *obj.LSym {
    	if name == "_" {
    		// TODO(mdempsky): Cleanup callers and Fatalf instead.
    		return linksym(prefix, "_", abi)
    	}
    	sep := "."
    	if ReservedImports[prefix] {
    		sep = ":"
    	}
    	return linksym(prefix, prefix+sep+name, abi)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top