Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,367 for prefixof (0.14 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

                final List<String> prefixes = new ArrayList<String>();
                rootNode.visitHierarchy(0, new NodeVisitor() {
                    @Override
                    public void visitNode(int depth, Node node) {
                        if (depth == 0) {
                            prefixes.add(node.prefix);
                        } else {
                            prefixes.add(depth + ":" + node.prefix.replace(File.separatorChar, '/'));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/validation/util_windows.go

    limitations under the License.
    */
    
    package validation
    
    import (
    	"path/filepath"
    )
    
    func isAbs(path string) bool {
    	// on Windows, filepath.IsAbs will not return True for paths prefixed with a slash, even
    	// though they can be used as absolute paths (https://docs.microsoft.com/en-us/dotnet/standard/io/file-path-formats).
    	return filepath.IsAbs(path) || (len(path) > 0 && (path[0] == '\\' || path[0] == '/'))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 13:03:13 UTC 2022
    - 987 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    	remaining int
    }
    
    // NewLengthDelimitedFrameReader returns an io.Reader that will decode length-prefixed
    // frames off of a stream.
    //
    // The protocol is:
    //
    //	stream: message ...
    //	message: prefix body
    //	prefix: 4 byte uint32 in BigEndian order, denotes length of body
    //	body: bytes (0..prefix)
    //
    // If the buffer passed to Read is not long enough to contain an entire frame, io.ErrShortRead
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/behind-a-proxy.md

    ## About proxies with a stripped path prefix
    
    Keep in mind that a proxy with stripped path prefix is only one of the ways to configure it.
    
    Probably in many cases the default will be that the proxy doesn't have a stripped path prefix.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    		a := inst.Args[i]
    		if a == nil {
    			continue
    		}
    		args = append(args, plan9Arg(&inst, pc, symname, a))
    	}
    
    	var rep string
    	var last Prefix
    	for _, p := range inst.Prefix {
    		if p == 0 || p.IsREX() || p.IsVEX() {
    			break
    		}
    
    		switch {
    		// Don't show prefixes implied by the instruction text.
    		case p&0xFF00 == PrefixImplicit:
    			continue
    		// Only REP and REPN are recognized repeaters. Plan 9 syntax
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. pkg/apis/discovery/types.go

    	// This field follows standard Kubernetes label syntax.
    	// Valid values are either:
    	//
    	// * Un-prefixed protocol names - reserved for IANA standard service names (as per
    	// RFC-6335 and https://www.iana.org/assignments/service-names).
    	//
    	// * Kubernetes-defined prefixed names:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 21:38:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // instance (e.g. Types<int>)
    # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
      bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
          ::testing::internal::TypeParameterizedTestCase<CaseName, \
              GTEST_CASE_NAMESPACE_(CaseName)::gtest_AllTests_, \
              ::testing::internal::TypeList< Types >::type>::Register(\
                  #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationProgressNotification.java

    package org.gradle.internal.operations.notify;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
     * A notification that a build operation has made progress in some way.
     *
     * The methods of this interface are awkwardly prefixed to allow
     * internal types to implement this interface along with other internal interfaces
     * without risking method collision.
     *
     * @since 4.4
     */
    @UsedByScanPlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/strings/replace.go

    			t.value = val
    			t.priority = priority
    		}
    		return
    	}
    
    	if t.prefix != "" {
    		// Need to split the prefix among multiple nodes.
    		var n int // length of the longest common prefix
    		for ; n < len(t.prefix) && n < len(key); n++ {
    			if t.prefix[n] != key[n] {
    				break
    			}
    		}
    		if n == len(t.prefix) {
    			t.next.add(key[n:], val, priority, r)
    		} else if n == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/x509metrics/server_cert_deprecations.go

    type counterRaiser struct {
    	counter *metrics.Counter
    	// programmatic id used in log and audit annotations prefixes
    	id string
    	// human readable explanation
    	reason string
    }
    
    func (c *counterRaiser) IncreaseMetricsCounter(req *http.Request) {
    	if req != nil && req.URL != nil {
    		if hostname := req.URL.Hostname(); len(hostname) > 0 {
    			prefix := fmt.Sprintf("%s.invalid-cert.kubernetes.io", c.id)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7.3K bytes
    - Viewed (0)
Back to top