Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,367 for prefixof (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	//         set username.prefix=""
    	//     (2) --oidc-username-prefix="" and  --oidc-username-claim != "email", prefix was "<value of --oidc-issuer-url>#". For the same
    	//         behavior using authentication config, set username.prefix="<value of issuer.url>#"
    	//     (3) --oidc-username-prefix="<value>". For the same behavior using authentication config, set username.prefix="<value>"
    	// +required
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http/HttpHeaders.kt

          else -> break@loop
        }
      }
      return commaFound
    }
    
    private fun Buffer.startsWith(prefix: Byte): Boolean = !exhausted() && this[0] == prefix
    
    /**
     * Reads a double-quoted string, unescaping quoted pairs like `\"` to the 2nd character in each
     * sequence. Returns the unescaped string, or null if the buffer isn't prefixed with a
     * double-quoted string.
     */
    @Throws(EOFException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. src/runtime/signal_plan9.go

    }
    
    // Incoming notes are compared against this table using strncmp, so the
    // order matters: longer patterns must appear before their prefixes.
    // There are _SIG constants in os2_plan9.go for the table index of some
    // of these.
    //
    // If you add entries to this table, you must respect the prefix ordering
    // and also update the constant values is os2_plan9.go.
    var sigtable = [...]sigTabT{
    	// Traps that we cannot be recovered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 16:25:17 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  4. src/os/exec/lp_plan9.go

    // [errors.Is](err, [ErrDot]). See the package documentation for more details.
    func LookPath(file string) (string, error) {
    	// skip the path lookup for these prefixes
    	skip := []string{"/", "#", "./", "../"}
    
    	for _, p := range skip {
    		if strings.HasPrefix(file, p) {
    			err := findExecutable(file)
    			if err == nil {
    				return file, nil
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/avx_optabs.go

    //
    // VEX requires at least 2 bytes inside opBytes:
    //	- VEX prefixes (vex-prefixed constants)
    //	- Opcode byte
    //
    // EVEX instructions extend VEX form variety:
    //	VTHING zmm2/m512, zmmV, zmm1    -- implicit K0 (merging)
    //	VTHING zmm2/m512, zmmV, K, zmm1 -- explicit K mask (can't use K0)
    //
    // EVEX requires at least 3 bytes inside opBytes:
    //	- EVEX prefixes (evex-prefixed constants); similar to VEX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 15:34:19 UTC 2018
    - 260.3K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.h

    //
    // Conventions:
    //   * Struct prefix indicates whether struct fields should be filled by the
    //   plug-in or core TensorFlow implementation:
    //     * TF_: Set/filled by core, unless marked otherwise.
    //     * TP_: Set/filled by plug-in, unless marked otherwise.
    //     * This prefix rule only applies to structures. Enumerations and methods
    //     are all prefixed with TP_.
    //   * Structs begin with two fields:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 14 20:04:34 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_pseudo_prefix.txt

    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # Testing that a pseudo-version is based on the semantically-latest
    # prefixed tag in any commit that is a parent of the commit supplied
    # to 'go get', when using a repo with go.mod in a sub directory.
    
    [short] skip
    [!git] skip
    
    # For this test repository go.mod resides in sub/ (only):
    #  master is not tagged
    #  tag v0.2.0 is most recent tag before master
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. pkg/bootstrap/platform/platform.go

    type Environment interface {
    	// Metadata returns a collection of environmental metadata, structured
    	// as a map for metadata names to values. An example for GCP would be a
    	// mapping from "gcp_project" to "2344534543". Keys should be prefixed
    	// by the short name for the platform (example: "gcp_").
    	Metadata() map[string]string
    
    	// Locality returns the run location for the bootstrap transformed from the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 07 20:19:01 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testgodefs/testdata/main.go

    var v4 = N{}
    var v5 = A{}
    var v6 = B{}
    
    // Test that S is fully defined
    var v7 = S{}
    
    // Test that #define'd type is fully defined
    var _ = issue38649{X: 0}
    
    // Test that prefixes do not cause duplicate field names.
    var _ = Issue48396{Fd: 1, Bpf_fd: 2}
    
    func main() {
    	pass := true
    
    	// The Go translation of bitfields should not have any of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationStartedNotification.java

    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import javax.annotation.Nullable;
    
    /**
     * A notification that a build operation has started.
     *
     * 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.0
     */
    @UsedByScanPlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top