Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 125 for maskstr (0.18 sec)

  1. staging/src/k8s.io/api/authentication/v1/types.go

    	// Any additional information provided by the authenticator.
    	// +optional
    	Extra map[string]ExtraValue `json:"extra,omitempty" protobuf:"bytes,4,rep,name=extra"`
    }
    
    // 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: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/operand_test.go

    	{"$10", "$10"},
    	{"$1000", "$1000"},
    	{"$1000000", "$1000000"},
    	{"$1000000000", "$1000000000"},
    	{"$__tsan_func_enter(SB)", "$__tsan_func_enter(SB)"},
    	{"$main(SB)", "$main(SB)"},
    	{"$masks<>(SB)", "$masks<>(SB)"},
    	{"$setg_gcc<>(SB)", "$setg_gcc<>(SB)"},
    	{"$shifts<>(SB)", "$shifts<>(SB)"},
    	{"$~(1<<63)", "$9223372036854775807"},
    	{"$~0x3F", "$-64"},
    	{"$~15", "$-16"},
    	{"(((8)&0xf)*4)(SP)", "32(SP)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  3. src/runtime/internal/sys/intrinsics.go

    	//
    	// Masking (& operations) can be left away when there's no
    	// danger that a field's sum will carry over into the next
    	// field: Since the result cannot be > 64, 8 bits is enough
    	// and we can ignore the masks for the shifts by 8 and up.
    	// Per "Hacker's Delight", the first line can be simplified
    	// more, but it saves at best one instruction, so we leave
    	// it alone for clarity.
    	const m = 1<<64 - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:45 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. pkg/apis/certificates/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
    type ExtraValue []string
    
    type CertificateSigningRequestStatus struct {
    	// Conditions applied to the request, such as approval or denial.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. cni/pkg/cmd/root.go

    		// Whatever user has set (with --log_output_level) for 'cni-plugin', pass it down to the plugin. It will use this to determine
    		// what level to use for itself.
    		// This masks the fact we are doing this weird log-over-UDS to users, and allows them to configure it the same way.
    		PluginLogLevel:        istiolog.LevelToString(istiolog.FindScope(constants.CNIPluginLogScope).GetOutputLevel()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/policy.go

    	Merge(providersHints []map[string][]TopologyHint) (TopologyHint, bool)
    }
    
    // Merge a TopologyHints permutation to a single hint by performing a bitwise-AND
    // of their affinity masks. The hint shall be preferred if all hits in the permutation
    // are preferred.
    func mergePermutation(defaultAffinity bitmask.BitMask, permutation []TopologyHint) TopologyHint {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/authorization/v1beta1";
    
    // 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
    - 11.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/authorization/v1";
    
    // 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
    - 12.1K bytes
    - Viewed (0)
  9. src/crypto/aes/gcm_s390x.go

    		lens := gcmLengths(0, uint64(len(nonce))*8)
    		g.paddedGHASH(&hash, lens[:])
    		copy(counter[:], hash[:])
    	}
    	return counter
    }
    
    // auth calculates GHASH(ciphertext, additionalData), masks the result with
    // tagMask and writes the result to out.
    func (g *gcmAsm) auth(out, ciphertext, additionalData []byte, tagMask *[gcmTagSize]byte) {
    	var hash [16]byte
    	g.paddedGHASH(&hash, additionalData)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1/generated.proto

      //     -----BEGIN CERTIFICATE-----
      //     ...
      //     -----END CERTIFICATE-----
      //     )
      //
      // +listType=atomic
      // +optional
      optional bytes certificate = 2;
    }
    
    // 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
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top