Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 385 for prepending (0.21 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

    import java.util.List;
    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.Set;
    
    /**
     * A generic name de-duplicator for hierarchical elements.
     * <p>
     * Conflicting sub-elements are de-duplicated by prepending their parent element names, separated by a dash.
     * Conflicting root elements are rejected with an {@link IllegalArgumentException}
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	if proxy == "" {
    		return nil, nil
    	}
    
    	proxyURL, err := url.Parse(proxy)
    	if err != nil || proxyURL.Scheme == "" || proxyURL.Host == "" {
    		// proxy was bogus. Try prepending "http://" to it and
    		// see if that parses correctly. If not, we fall
    		// through and complain about the original one.
    		if proxyURL, err := url.Parse("http://" + proxy); err == nil {
    			return proxyURL, nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/initconfiguration.go

    		if !strings.HasPrefix(cfg.CRISocket, kubeadmapiv1.DefaultContainerRuntimeURLScheme) {
    			klog.Warningf("Usage of CRI endpoints without URL scheme is deprecated and can cause kubelet errors "+
    				"in the future. Automatically prepending scheme %q to the \"criSocket\" with value %q. "+
    				"Please update your configuration!", kubeadmapiv1.DefaultContainerRuntimeURLScheme, cfg.CRISocket)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter.go

    		for _, f := range valueFuncs {
    			newCell, err := f(table.Rows[i])
    			if err != nil {
    				return err
    			}
    			newCells = append(newCells, newCell)
    		}
    
    		if pos == beginning {
    			// If we're prepending, add existing cells
    			newCells = append(newCells, table.Rows[i].Cells...)
    		}
    
    		// Remember the new cells for this row
    		newRows[i] = newCells
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/search/search.go

    			//
    			// This converts a path like "./io/" to "io". Without this step, running
    			// "cd $GOROOT/src; go list ./io/..." would incorrectly skip the io
    			// package, because prepending the prefix "./" to the unclean path would
    			// result in "././io", and match("././io") returns false.
    			top = true
    			path = filepath.Clean(path)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/InternetDomainName.java

        }
        String ancestorName = name.substring(substringFrom);
    
        return new InternetDomainName(ancestorName, ancestorParts);
      }
    
      /**
       * Creates and returns a new {@code InternetDomainName} by prepending the argument and a dot to
       * the current name. For example, {@code InternetDomainName.from("foo.com").child("www.bar")}
       * returns a new {@code InternetDomainName} with the value {@code www.bar.foo.com}. Only lenient
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/InternetDomainName.java

        }
        String ancestorName = name.substring(substringFrom);
    
        return new InternetDomainName(ancestorName, ancestorParts);
      }
    
      /**
       * Creates and returns a new {@code InternetDomainName} by prepending the argument and a dot to
       * the current name. For example, {@code InternetDomainName.from("foo.com").child("www.bar")}
       * returns a new {@code InternetDomainName} with the value {@code www.bar.foo.com}. Only lenient
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. pkg/controller/job/indexed_job_utils_test.go

    				{"5", v1.PodPending},
    				{"0", v1.PodRunning},
    				{"3", v1.PodPending},
    				{"0", v1.PodRunning},
    				{"3", v1.PodRunning},
    				{"0", v1.PodPending},
    				{"6", v1.PodRunning},
    				{"6", v1.PodPending},
    			},
    			wantRm: []indexPhase{
    				{"0", v1.PodPending},
    				{"0", v1.PodRunning},
    				{"3", v1.PodPending},
    				{"6", v1.PodRunning},
    				{"6", v1.PodPending},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. istioctl/pkg/checkinject/checkinject_test.go

    					Revision: "default",
    					Reason:   "Namespace has istio-injection=disabled label, preventing injection",
    				},
    				{
    					Name:     "istio-sidecar-injector-1-16",
    					Revision: "1-16",
    					Injected: false,
    					Reason:   "Namespace has istio-injection=disabled label, preventing injection",
    				},
    				{
    					Name:     "istio-sidecar-injector-deactivated",
    					Revision: "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RootComponentResolutionIntegrationTest.groovy

            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 23 22:33:17 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top