Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 291 for discarded (0.2 sec)

  1. staging/src/k8s.io/api/autoscaling/v2/types_swagger_doc_generated.go

    	"policies":                   "policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid",
    }
    
    func (HPAScalingRules) SwaggerDoc() map[string]string {
    	return map_HPAScalingRules
    }
    
    var map_HorizontalPodAutoscaler = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

      // +optional
      optional string selectPolicy = 1;
    
      // policies is a list of potential scaling polices which can be used during scaling.
      // At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid
      // +optional
      // +listType=atomic
      repeated HPAScalingPolicy policies = 2;
    }
    
    // HorizontalPodAutoscaler is the configuration for a horizontal pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/text/scanner/scanner.go

    // through repeated calls to the Scan function. For compatibility with
    // existing tools, the NUL character is not allowed. If the first character
    // in the source is a UTF-8 encoded byte order mark (BOM), it is discarded.
    //
    // By default, a [Scanner] skips white space and Go comments and recognizes all
    // literals as defined by the Go language specification. It may be
    // customized to recognize only a subset of those literals and to recognize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      // +optional
      optional string selectPolicy = 1;
    
      // policies is a list of potential scaling polices which can be used during scaling.
      // At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid
      // +listType=atomic
      // +optional
      repeated HPAScalingPolicy policies = 2;
    }
    
    // HorizontalPodAutoscaler is the configuration for a horizontal pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2beta2/types_swagger_doc_generated.go

    	"policies":                   "policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid",
    }
    
    func (HPAScalingRules) SwaggerDoc() map[string]string {
    	return map_HPAScalingRules
    }
    
    var map_HorizontalPodAutoscaler = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder.go

    	// resolve cluster name conflicts. there can be duplicate cluster names if there are conflicting service definitions.
    	// for any clusters that share the same name the first cluster is kept and the others are discarded.
    	have := sets.String{}
    	out := make([]*discovery.Resource, 0, len(clusters))
    	for _, c := range clusters {
    		if !have.InsertContains(c.Name) {
    			out = append(out, c)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // In this case, the first annotation written with the key will be included
      // in the audit event and all subsequent annotations with the same key
      // will be discarded.
      //
      // Required.
      optional string key = 1;
    
      // valueExpression represents the expression which is evaluated by CEL to
      // produce an audit annotation value. The expression must evaluate to either
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server.go

    	"crypto/rsa"
    	"crypto/subtle"
    	"crypto/x509"
    	"errors"
    	"fmt"
    	"hash"
    	"internal/byteorder"
    	"io"
    	"time"
    )
    
    // serverHandshakeState contains details of a server handshake in progress.
    // It's discarded once the handshake has completed.
    type serverHandshakeState struct {
    	c            *Conn
    	ctx          context.Context
    	clientHello  *clientHelloMsg
    	hello        *serverHelloMsg
    	suite        *cipherSuite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    When resolving the conflict between competing versions, the following logic applies:
    
    * first the versions with the highest base version are selected, the rest are discarded
    * if there are still multiple competing versions left, then one is picked with a preference for not having a qualifier or having release status.
    
    [[sec:implementation-conflict]]
    == Implementation conflict resolution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  10. src/runtime/sys_openbsd_arm.s

    	MOVW	R13, R9
    	SUB	$16, R13
    	BIC     $0x7, R13		// align for ELF ABI
    	MOVW	0(R0), R1		// arg 2 attr
    	MOVW	4(R0), R2		// arg 3 start
    	MOVW	8(R0), R3		// arg 4 arg
    	MOVW	R13, R0			// arg 1 &threadid (discarded)
    	CALL	libc_pthread_create(SB)
    	MOVW	R9, R13
    	RET
    
    TEXT runtime·thrkill_trampoline(SB),NOSPLIT,$0
    	MOVW	R13, R9
    	BIC     $0x7, R13		// align for ELF ABI
    	MOVW	4(R0), R1		// arg 2 - signal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
Back to top