Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for Gid (0.02 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContextBuilder.java

                }
    
                @Override
                public Model getRawModel(Path from, String gId, String aId) {
                    Model model = findRawModel(from, gId, aId);
                    if (model != null) {
                        context.modelByGA.put(new GAKey(gId, aId), new Holder(model));
                        context.modelByPath.put(model.getPomFile(), new Holder(model));
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/run_test.go

    			},
    		},
    		{
    			"dns-uid-gid",
    			func(cfg *config.Config) {
    				cfg.RedirectDNS = true
    				cfg.DNSServersV4 = []string{"127.0.0.53"}
    				cfg.DNSServersV6 = []string{"::127.0.0.53"}
    				cfg.ProxyGID = "1,2"
    				cfg.ProxyUID = "3,4"
    				cfg.EnableIPv6 = true
    			},
    		},
    		{
    			"ipv6-dns-uid-gid",
    			func(cfg *config.Config) {
    				cfg.EnableIPv6 = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/validation/raw-model/profile-activation-property-with-project-expressions.xml

             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    
      <modelVersion>4.0.0</modelVersion>
      <artifactId>aid</artifactId>
      <groupId>gid</groupId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <profiles>
    
        <profile>
          <id>property-name-project-version</id>
          <activation>
            <property>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. samples/tlssurvey/src/main/kotlin/okhttp3/survey/CipherSuiteSurvey.kt

    import okhttp3.survey.types.SuiteId
    
    /**
     * Organizes information on SSL cipher suite inclusion and precedence for this spreadsheet.
     * https://docs.google.com/spreadsheets/d/1C3FdZSlCBq_-qrVwG1KDIzNIB3Hyg_rKAcgmSzOsHyQ/edit#gid=0
     */
    class CipherSuiteSurvey(
      val clients: List<Client>,
      val ianaSuites: IanaSuites,
      val orderBy: List<SuiteId>,
    ) {
      fun printGoogleSheet() {
        print("name")
        for (client in clients) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 01:44:15 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/cmd/pack/pack.go

    	// Format the entry.
    	// First, get its info.
    	info, err := fd.Stat()
    	if err != nil {
    		log.Fatal(err)
    	}
    	// mtime, uid, gid are all zero so repeated builds produce identical output.
    	mtime := int64(0)
    	uid := 0
    	gid := 0
    	ar.a.AddEntry(archive.EntryNativeObj, info.Name(), mtime, uid, gid, info.Mode(), info.Size(), fd)
    }
    
    // addPkgdef adds the __.PKGDEF file to the archive, copied
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/poms/validation/raw-model/profile-activation-file-with-allowed-expressions.xml

             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    
      <modelVersion>4.0.0</modelVersion>
      <artifactId>aid</artifactId>
      <groupId>gid</groupId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <profiles>
        <profile>
          <id>exists-basedir</id>
          <activation>
            <file>
              <exists>${basedir}/test.txt</exists>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. tools/istio-clean-iptables/pkg/cmd/cleanup_test.go

    		config func(cfg *config.Config)
    	}{
    		{
    			"empty",
    			func(*config.Config) {},
    		},
    		{
    			"dns",
    			func(cfg *config.Config) {
    				cfg.RedirectDNS = true
    			},
    		},
    		{
    			"dns-uid-gid",
    			func(cfg *config.Config) {
    				cfg.RedirectDNS = true
    				cfg.DNSServersV4 = []string{"127.0.0.53"}
    				cfg.DNSServersV6 = []string{"::127.0.0.53"}
    				cfg.ProxyGID = "1,2"
    				cfg.ProxyUID = "3,4"
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. src/runtime/traceback_system_test.go

    			_, err := fmt.Sscanf(line, "sentinel %x", &parentSentinel)
    			if err != nil {
    				return nil, fmt.Errorf("can't read sentinel line")
    			}
    			continue
    		}
    
    		// Search for "goroutine GID [STATUS]"
    		if !on {
    			if strings.HasPrefix(line, "goroutine ") &&
    				strings.Contains(line, " [running]:") {
    				on = true
    
    				if parentSentinel == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. tools/istio-clean-iptables/pkg/cmd/root.go

    		"Specify the UID of the user for which the redirection is not applied. Typically, this is the UID of the proxy container.",
    		&cfg.ProxyUID)
    
    	flag.BindEnv(fs, constants.ProxyGID, "g",
    		"Specify the GID of the user for which the redirection is not applied (same default value as -u param).",
    		&cfg.ProxyGID)
    
    	flag.BindEnv(fs, constants.RedirectDNS, "", "Enable capture of dns traffic by istio-agent.", &cfg.RedirectDNS)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    			_, err := fmt.Sscanf(line, "sentinel %x", &parentSentinel)
    			if err != nil {
    				return nil, fmt.Errorf("can't read sentinel line")
    			}
    			continue
    		}
    
    		// Search for "goroutine GID [STATUS]"
    		if !on {
    			if strings.HasPrefix(line, "goroutine ") &&
    				strings.Contains(line, " [running]:") {
    				on = true
    
    				if parentSentinel == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top