Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 280 for respective (0.16 sec)

  1. src/cmd/internal/obj/link.go

    // There are some portable opcodes, declared here in package obj,
    // that are common to all architectures.
    // However, the majority of opcodes are arch-specific
    // and are declared in their respective architecture's subpackage.
    type As int16
    
    // These are the portable opcodes.
    const (
    	AXXX As = iota
    	ACALL
    	ADUFFCOPY
    	ADUFFZERO
    	AEND
    	AFUNCDATA
    	AJMP
    	ANOP
    	APCALIGN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. src/crypto/x509/parser.go

    		b == '&'
    }
    
    // parseASN1String parses the ASN.1 string types T61String, PrintableString,
    // UTF8String, BMPString, IA5String, and NumericString. This is mostly copied
    // from the respective encoding/asn1.parse... methods, rather than just
    // increasing the API surface of that package.
    func parseASN1String(tag cryptobyte_asn1.Tag, value []byte) (string, error) {
    	switch tag {
    	case cryptobyte_asn1.T61String:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/types.go

    // hairpin packets.
    type HairpinMode string
    
    // Enum settings for different ways to handle hairpin packets.
    const (
    	// Set the hairpin flag on the veth of containers in the respective
    	// container runtime.
    	HairpinVeth = "hairpin-veth"
    	// Make the container bridge promiscuous. This will force it to accept
    	// hairpin packets, even if the flag isn't set on ports of the bridge.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    	// See: http://openid.net/specs/openid-connect-core-1_0.html#AggregatedExample
    	JWT string `json:"JWT,omitempty"`
    }
    
    // claimResolver expands distributed claims by calling respective claim source
    // endpoints.
    type claimResolver struct {
    	ctx context.Context
    
    	// claim is the distributed claim that may be resolved.
    	claim string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  5. src/go/ast/ast.go

    // statement nodes, and declaration nodes. The node names usually
    // match the corresponding Go spec production names to which they
    // correspond. The node fields correspond to the individual parts
    // of the respective productions.
    //
    // All nodes contain position information marking the beginning of
    // the corresponding source text segment; it is accessible via the
    // Pos accessor method. Nodes may contain additional position info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  6. src/go/constant/value.go

    	}
    
    	return unknownVal{}
    }
    
    // ----------------------------------------------------------------------------
    // Accessors
    //
    // For unknown arguments the result is the zero value for the respective
    // accessor type, except for Sign, where the result is 1.
    
    // BoolVal returns the Go boolean value of x, which must be a [Bool] or an [Unknown].
    // If x is [Unknown], the result is false.
    func BoolVal(x Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    Each environment the user configures has an arbitrary but declarative name and is represented with its own DSL configuration block.
    The example above instantiates a development, staging, and production environment, including its respective URL.
    
    Each environment must have a data representation in code to capture the values.
    The name of an environment is immutable and can be passed in as a constructor parameter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    .Declaring a repository with the help of shorthand notations
    image::dependency-management-shortcut-repositories.png[]
    
    Under the covers Gradle resolves dependencies from the respective URL of the public repository defined by the shorthand notation.
    All shorthand notations are available via the link:{groovyDslPath}/org.gradle.api.artifacts.dsl.RepositoryHandler.html[RepositoryHandler] API.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    include::sample[dir="snippets/java/customDirs/groovy",files="build.gradle[tags=custom-src-dirs]"]
    ====
    
    Now Gradle will only search directly in _src_ and _test_ for the respective source code. What if you don't want to override the convention, but simply want to _add_ an extra source directory, perhaps one that contains some third-party source code you want to keep separate? The syntax is similar:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  10. src/os/exec/exec.go

    // error is of type [*ExitError]. Other error types may be
    // returned for I/O problems.
    //
    // If any of c.Stdin, c.Stdout or c.Stderr are not an [*os.File], Wait also waits
    // for the respective I/O loop copying to or from the process to complete.
    //
    // Wait releases any resources associated with the [Cmd].
    func (c *Cmd) Wait() error {
    	if c.Process == nil {
    		return errors.New("exec: not started")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top