Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,367 for prefixof (0.17 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/printers/sourcechecker.go

    // object's package path, and determines if the
    // object originates from a disallowed source.
    type illegalPackageSourceChecker struct {
    	// disallowedPrefixes is a slice of disallowed package path
    	// prefixes for a given runtime.Object that we are printing.
    	disallowedPrefixes []string
    }
    
    func (c *illegalPackageSourceChecker) IsForbidden(pkgPath string) bool {
    	for _, forbiddenPrefix := range c.disallowedPrefixes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  2. cluster/images/etcd-version-monitor/README.md

    with etcd is over localhost.
    
    **VERIFYING THE TOOL**
    
    - Goto [http://localhost:9101/metrics](http://localhost:9101/metrics) in order to view the exported metrics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 22 04:03:37 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/discovery/v1/types_swagger_doc_generated.go

    for implementations to offer richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n  * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXReference.java

            SourceTree(String str) {
                rep = str;
            }
    
            /**
             * Return a sourceTree given a build setting that is typically used as a source tree prefix.
             *
             * The build setting may be optionally prefixed by '$' which will be stripped.
             */
            public static Optional<SourceTree> fromBuildSetting(String buildSetting) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginTreeTest.kt

                    listOf(
                        flatPlugin,
                        nestedPluginA,
                        nestedPluginB,
                        nestedPluginC,
                        // plugins with ids prefixed by other plugin ids
                        // cannot be properly supported due to the side-effecting nature
                        // of `PluginDependenciesSpec#id`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_amd64.S

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    .file "gcc_amd64.S"
    
    /*
     * Apple still insists on underscore prefixes for C function names.
     */
    #if defined(__APPLE__)
    #define EXT(s) _##s
    #else
    #define EXT(s) s
    #endif
    
    /*
     * void crosscall1(void (*fn)(void), void (*setg_gcc)(void*), void *g)
     *
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 12 03:56:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    // ones in those bits, they are mainly reserved for future expansion
    // of the instruction set.
    // The Args are stored in the same order as the instruction manual.
    //
    // Prefixed instructions are stored as:
    //
    //	prefix << 32 | suffix,
    //
    // Regular instructions are:
    //
    //	inst << 32
    type instFormat struct {
    	Op       Op
    	Mask     uint64
    	Value    uint64
    	DontCare uint64
    	Args     [6]*argField
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  8. releasenotes/notes/istioctl-pc-routes-print-path-separated-prefix.yaml

    Jacek Ewertowski <******@****.***> 1701261434 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 174 bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route_test.go

    	first := []*envoyroute.Route{
    		{Match: &envoyroute.RouteMatch{PathSpecifier: &envoyroute.RouteMatch_Prefix{Prefix: "/"}}},
    		{Match: &envoyroute.RouteMatch{PathSpecifier: &envoyroute.RouteMatch_Path{Path: "/path1"}}},
    		{Match: &envoyroute.RouteMatch{PathSpecifier: &envoyroute.RouteMatch_Prefix{Prefix: "/prefix1"}}},
    		{Match: &envoyroute.RouteMatch{PathSpecifier: &envoyroute.RouteMatch_SafeRegex{
    			SafeRegex: &matcher.RegexMatcher{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  10. internal/config/dns/etcd_dns.go

    	return func(args *CoreDNS) {
    		args.domainPort = domainPort
    	}
    }
    
    // CoreDNSPath - custom prefix on etcd to populate DNS
    // service records, optional and can be empty.
    // if empty then c.prefixPath is used i.e "/skydns"
    func CoreDNSPath(prefix string) EtcdOption {
    	return func(args *CoreDNS) {
    		args.prefixPath = prefix
    	}
    }
    
    // NewCoreDNS - initialize a new coreDNS set/unset values.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top