Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,854 for sig2 (0.33 sec)

  1. src/embed/internal/embedtest/embedx_test.go

    	big, err := os.ReadFile("testdata/ascii.txt")
    	if err != nil {
    		t.Fatal(err)
    	}
    	testString(t, sbig, "sbig", string(big))
    	testString(t, sbig2, "sbig2", string(big))
    	testString(t, string(bbig), "bbig", string(big))
    	testString(t, string(bbig2), "bbig", string(big))
    
    	if t.Failed() {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 15 20:37:17 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. pkg/config/schema/collections/collections.gen.go

    	k8sioapiextensionsapiserverpkgapisapiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    	sigsk8siogatewayapiapisv1 "sigs.k8s.io/gateway-api/apis/v1"
    	sigsk8siogatewayapiapisv1alpha2 "sigs.k8s.io/gateway-api/apis/v1alpha2"
    	sigsk8siogatewayapiapisv1beta1 "sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	istioioapiextensionsv1alpha1 "istio.io/api/extensions/v1alpha1"
    	istioioapimeshv1alpha1 "istio.io/api/mesh/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  3. plugin/pkg/admission/certificates/signing/admission.go

    		return nil
    	}
    
    	if !certificates.IsAuthorizedForSignerName(ctx, p.authz, a.GetUserInfo(), "sign", oldCSR.Spec.SignerName) {
    		klog.V(4).Infof("user not permitted to sign CertificateSigningRequest %q with signerName %q", oldCSR.Name, oldCSR.Spec.SignerName)
    		return admission.NewForbidden(a, fmt.Errorf("user not permitted to sign requests with signerName %q", oldCSR.Spec.SignerName))
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 28 16:20:40 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/signing/maven-publish/groovy/build.gradle

            }
        }
    // tag::pom-customization[]
    // tag::versions-resolved[]
    }
    // end::versions-resolved[]
    // end::pom-customization[]
    
    // tag::sign-publication[]
    signing {
        sign publishing.publications.mavenJava
    }
    // end::sign-publication[]
    
    
    javadoc {
        if(JavaVersion.current().isJava9Compatible()) {
            options.addBooleanOption('html5', true)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/go.mod

    	gopkg.in/yaml.v3 v3.0.1 // indirect
    	k8s.io/klog/v2 v2.120.1 // indirect
    	k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
    	sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
    	sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
    	sigs.k8s.io/yaml v1.4.0 // indirect
    )
    
    replace (
    	k8s.io/api => ../api
    	k8s.io/apimachinery => ../apimachinery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "kind": {
                "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/policy/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    # approval on api packages bubbles to api-approvers
    reviewers:
      - sig-apps-reviewers
      - sig-auth-policy-approvers
      - sig-auth-policy-reviewers
    labels:
      - sig/auth
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 15:02:07 UTC 2022
    - 231 bytes
    - Viewed (0)
  8. src/math/tan.go

    	)
    	// special cases
    	switch {
    	case x == 0 || IsNaN(x):
    		return x // return ±0 || NaN()
    	case IsInf(x, 0):
    		return NaN()
    	}
    
    	// make argument positive but save the sign
    	sign := false
    	if x < 0 {
    		x = -x
    		sign = true
    	}
    	var j uint64
    	var y, z float64
    	if x >= reduceThreshold {
    		j, z = trigReduce(x)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:27:54 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. src/math/fma.go

    	if l == 64 {
    		l += int32(bits.LeadingZeros64(u2))
    	}
    	return l
    }
    
    // split splits b into sign, biased exponent, and mantissa.
    // It adds the implicit 1 bit to the mantissa for normal values,
    // and normalizes subnormal values.
    func split(b uint64) (sign uint32, exp int32, mantissa uint64) {
    	sign = uint32(b >> 63)
    	exp = int32(b>>52) & mask
    	mantissa = b & fracMask
    
    	if exp == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 05 22:05:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. src/go/types/index.go

    		// TODO(gri) here we re-evaluate e.X - try to avoid this
    		x.typ = check.varType(e.Orig)
    		if isValid(x.typ) {
    			x.mode = typexpr
    		}
    		return false
    
    	case value:
    		if sig, _ := under(x.typ).(*Signature); sig != nil && sig.TypeParams().Len() > 0 {
    			// function instantiation
    			return true
    		}
    	}
    
    	// x should not be generic at this point, but be safe and check
    	check.nonGeneric(nil, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top