Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for maskstr (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/net/http/request_test.go

    				req.AddCookie(c)
    			}
    
    			got := req.CookiesNamed(tt.filter)
    
    			if !reflect.DeepEqual(got, tt.want) {
    				asStr := func(v any) string {
    					blob, _ := json.MarshalIndent(v, "", "  ")
    					return string(blob)
    				}
    				t.Fatalf("Result mismatch\n\tGot: %s\n\tWant: %s", asStr(got), asStr(tt.want))
    			}
    		})
    	}
    }
    
    const (
    	fileaContents = "This is a test file."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(fldPath, serviceSubnet.String(), errMsg))
    		}
    	}
    	return allErrs
    }
    
    // ValidatePodSubnetNodeMask validates that the relation between podSubnet and node-masks is correct
    func ValidatePodSubnetNodeMask(subnetStr string, c *kubeadm.ClusterConfiguration, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	// subnets were already validated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authorization/v1/types.go

    	// UID information about the requesting user.
    	// +optional
    	UID string `json:"uid,omitempty" protobuf:"bytes,6,opt,name=uid"`
    }
    
    // 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
    - 14.6K bytes
    - Viewed (0)
  8. src/os/signal/doc.go

    on Go programs. In rare cases, the non-Go code may run before the Go
    code, in which case the next section also applies.
    
    If the non-Go code called by the Go program does not change any signal
    handlers or masks, then the behavior is the same as for a pure Go
    program.
    
    If the non-Go code installs any signal handlers, it must use the
    SA_ONSTACK flag with sigaction. Failing to do so is likely to cause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1/types.go

    	// Never auto-approved by kube-controller-manager.
    	// Can be issued by the "csrsigning" controller in kube-controller-manager.
    	KubeletServingSignerName = "kubernetes.io/kubelet-serving"
    )
    
    // 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
    - 15.6K bytes
    - Viewed (0)
  10. src/crypto/cipher/gcm.go

    		y.high ^= uint64(len(nonce)) * 8
    		g.mul(&y)
    		byteorder.BePutUint64(counter[:8], y.low)
    		byteorder.BePutUint64(counter[8:], y.high)
    	}
    }
    
    // auth calculates GHASH(ciphertext, additionalData), masks the result with
    // tagMask and writes the result to out.
    func (g *gcm) auth(out, ciphertext, additionalData []byte, tagMask *[gcmTagSize]byte) {
    	var y gcmFieldElement
    	g.update(&y, additionalData)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top