Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 125 for maskstr (0.45 sec)

  1. pkg/kubelet/cm/topologymanager/topology_manager.go

    	// the TopologyManager supports on the underlying machine.
    	//
    	// At present, having more than this number of NUMA Nodes will result in a
    	// state explosion when trying to enumerate possible NUMAAffinity masks and
    	// generate hints for them. As such, if more NUMA Nodes than this are
    	// present on a machine and the TopologyManager is enabled, an error will
    	// be returned and the TopologyManager will not be loaded.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 12:43:16 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. src/image/draw/bench_test.go

    		// No-op.
    	case color.AlphaModel:
    		mask1 := image.NewAlpha(image.Rect(0, 0, srcw, srch))
    		for y := 0; y < srch; y++ {
    			for x := 0; x < srcw; x++ {
    				a := uint8((23*x + 29*y) % 0x100)
    				// Glyph masks are typically mostly zero,
    				// so we only set a quarter of mask1's pixels.
    				if a >= 0xc0 {
    					mask1.SetAlpha(x, y, color.Alpha{a})
    				}
    			}
    		}
    		mask = mask1
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/authentication/v1/generated.proto

      optional string apiVersion = 2;
    
      // Name of the referent.
      // +optional
      optional string name = 3;
    
      // UID of the referent.
      // +optional
      optional string uID = 4;
    }
    
    // ExtraValue masks the value so protobuf can generate
    // +protobuf.nullable=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message ExtraValue {
      // items, if empty, will result in an empty slice
    
      repeated string items = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/net/ip.go

    	if len(ip) == IPv6len {
    		return ip
    	}
    	return nil
    }
    
    // Default route masks for IPv4.
    var (
    	classAMask = IPv4Mask(0xff, 0, 0, 0)
    	classBMask = IPv4Mask(0xff, 0xff, 0, 0)
    	classCMask = IPv4Mask(0xff, 0xff, 0xff, 0)
    )
    
    // DefaultMask returns the default IP mask for the IP address ip.
    // Only IPv4 addresses have default masks; DefaultMask returns
    // nil if ip is not a valid IPv4 address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. pkg/apis/authentication/types.go

    	// different UIDs.
    	UID string
    	// The names of groups this user is a part of.
    	Groups []string
    	// Any additional information provided by the authenticator.
    	Extra map[string]ExtraValue
    }
    
    // ExtraValue masks the value so protobuf can generate
    type ExtraValue []string
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // TokenRequest requests a token for a given service account.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

      private val controlFrameBuffer = Buffer()
      private val messageFrameBuffer = Buffer()
    
      /** Lazily initialized on first use. */
      private var messageInflater: MessageInflater? = null
    
      // Masks are only a concern for server writers.
      private val maskKey: ByteArray? = if (isClient) null else ByteArray(4)
      private val maskCursor: Buffer.UnsafeCursor? = if (isClient) null else Buffer.UnsafeCursor()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authentication/v1/generated.proto

      optional string apiVersion = 2;
    
      // Name of the referent.
      // +optional
      optional string name = 3;
    
      // UID of the referent.
      // +optional
      optional string uID = 4;
    }
    
    // ExtraValue masks the value so protobuf can generate
    // +protobuf.nullable=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message ExtraValue {
      // items, if empty, will result in an empty slice
    
      repeated string items = 1;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	// as client certs, but that behavior is not standard kubernetes behavior.
    	LegacyUnknownSignerName = "kubernetes.io/legacy-unknown"
    )
    
    // ExtraValue masks the value so protobuf can generate
    // +protobuf.nullable=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type ExtraValue []string
    
    func (t ExtraValue) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // TODO(b/154160827): Add a canonicalization pattern from tf.StridedSliceOp to
    // tf.SliceOp if both of the following are true:
    // - All strides have a known value equal to 1
    // - No masks are set (or masks can be applied by transforming the inputs to
    //   Slice)
    
    // Verifies that,
    //
    // - begin, end and strides operands are 1D and they have the same number of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. pkg/apis/authorization/types.go

    	// it needs a reflection here.
    	Extra map[string]ExtraValue
    	// UID information about the requesting user.
    	UID string
    }
    
    // ExtraValue masks the value so protobuf can generate
    // +protobuf.nullable=true
    type ExtraValue []string
    
    // SelfSubjectAccessReviewSpec is a description of the access request.  Exactly one of ResourceAttributes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 10K bytes
    - Viewed (0)
Back to top