Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for metaTag (0.19 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

            public TableHtml(Writer writer) {
                super(writer);
            }
    
            // @formatter:off
                {
                    html();
                        head();
                            metaTag(this);
                            link().rel("stylesheet").type("text/css").href("https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css").end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/Crawler.java

        public static class Options {
    
            @Option(name = "-s", aliases = "--sessionId", metaVar = "sessionId", usage = "Session ID")
            public String sessionId;
    
            @Option(name = "-n", aliases = "--name", metaVar = "name", usage = "Name")
            public String name;
    
            @Option(name = "-w", aliases = "--webConfigIds", metaVar = "webConfigIds", usage = "Web Config IDs")
            public String webConfigIds;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

        protected static class Options {
            @Option(name = "-s", aliases = "--sessionId", metaVar = "sessionId", usage = "Session ID")
            protected String sessionId;
    
            @Option(name = "-n", aliases = "--name", metaVar = "name", usage = "Name")
            protected String name;
    
            @Option(name = "-p", aliases = "--properties", metaVar = "properties", usage = "Properties File")
            protected String propertiesPath;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. cmd/postpolicyform.go

    		default:
    			checkHeader[key] = value
    		}
    	}
    	// map to store the metadata
    	metaMap := make(map[string]string)
    	for _, policy := range postPolicyForm.Conditions.Policies {
    		if strings.HasPrefix(policy.Key, "$x-amz-meta-") {
    			formCanonicalName := http.CanonicalHeaderKey(strings.TrimPrefix(policy.Key, "$"))
    			metaMap[formCanonicalName] = policy.Value
    		}
    	}
    	// Check if any extra metadata field is passed as input
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. pkg/bootstrap/config.go

    	for _, e := range envs {
    		if !shouldExtract(e, prefix) {
    			continue
    		}
    		v := e[metaPrefixLen:]
    		if !isEnvVar(v) {
    			continue
    		}
    		metaKey, metaVal := parseEnvVar(v)
    		set(meta, metaKey, metaVal)
    	}
    }
    
    func shouldExtract(envVar, prefix string) bool {
    	return strings.HasPrefix(envVar, prefix)
    }
    
    func isEnvVar(str string) bool {
    	return strings.Contains(str, "=")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. istioctl/pkg/workload/workload.go

    	// this is similar to the way the injector sets all values proxyConfig.proxyMetadata to the Pod's env
    	clusterEnv := map[string]string{}
    	for _, metaMap := range []map[string]string{config.ProxyMetadata, overrides} {
    		for k, v := range metaMap {
    			clusterEnv[k] = v
    		}
    	}
    
    	return os.WriteFile(filepath.Join(dir, "cluster.env"), []byte(mapToString(clusterEnv)), filePerms)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/cmd/cover/cover.go

    		fmt.Fprintf(w, " 0x%x,", b)
    		if k != 0 && k%8 == 0 {
    			fmt.Fprintf(w, "\n")
    		}
    	}
    	fmt.Fprintf(w, "}\n")
    
    	fixcfg := covcmd.CoverFixupConfig{
    		Strategy:           "normal",
    		MetaVar:            mkMetaVar(),
    		MetaLen:            len(payload),
    		MetaHash:           fmt.Sprintf("%x", digest),
    		PkgIdVar:           mkPackageIdVar(),
    		CounterPrefix:      *varVar,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top