Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 585 for respective (0.19 sec)

  1. 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)
  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/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)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            arrayAccessExpression: KtArrayAccessExpression,
        ): CompoundArrayAccessPartiallyAppliedSymbols? {
            // The last argument of `set` is the new value to be set. This value should be a call to the respective `plus`, `minus`,
            // `times`, `div`, or `rem` function.
            val operationCall = fir.arguments.lastOrNull() as? FirFunctionCall ?: return null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K 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. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        Node* sequencer_ = nullptr;
      };
    
      // Returns the key attribute associated with a node in attr. Sets either
      // result to the empty string if the respective attribute is not found.
      Status GetFunctionNameAttr(Node const* node, string* attr) const;
    
      // Copies edges local to a subgraph. Adds _Arg and _Retval nodes to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    // do not cause any client to actually request a significantly smaller share
    // than it theoretically should.
    // expectFair indicate whether the QueueSet is expected to be
    // fair in the respective halves of a split scenario;
    // in a non-split scenario this is a singleton with one expectation.
    // expectAllRequests indicates whether all requests are expected to get dispatched.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
Back to top