Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 775 for sig2 (0.18 sec)

  1. go.mod

    	k8s.io/cli-runtime v0.30.1
    	k8s.io/client-go v0.30.1
    	k8s.io/klog/v2 v2.120.1
    	k8s.io/kubectl v0.30.1
    	k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0
    	sigs.k8s.io/controller-runtime v0.18.3
    	sigs.k8s.io/gateway-api v1.1.0
    	sigs.k8s.io/mcs-api v0.1.0
    	sigs.k8s.io/yaml v1.4.0
    )
    
    require (
    	cel.dev/expr v0.15.0 // indirect
    	github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/go/types/builtins.go

    					if check.recordTypes() {
    						sig := makeSig(S, S, y.typ)
    						sig.variadic = true
    						check.recordBuiltinType(call.Fun, sig)
    					}
    					x.mode = value
    					x.typ = S
    					break
    				}
    			}
    		}
    
    		// check general case by creating custom signature
    		sig := makeSig(S, S, NewSlice(T)) // []T required for variadic signature
    		sig.variadic = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. pkg/config/schema/kubetypes/resources.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: Wed Apr 17 16:38:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. docs/ftp/README.md

    hmac-sha2-256
    hmac-sha2-512
    hmac-sha1
    hmac-sha1-96
    ```
    
    ### Certificate-based authentication
    
    `--sftp=trusted-user-ca-key=...` specifies a file containing public key of certificate authority that is trusted
    to sign user certificates for authentication.
    
    Implementation is identical with "TrustedUserCAKeys" setting in OpenSSH server with exception that only one CA
    key can be defined.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    	"k8s.io/client-go/rest"
    	cache2 "sigs.k8s.io/controller-runtime/pkg/cache"
    	"sigs.k8s.io/controller-runtime/pkg/client"
    	"sigs.k8s.io/controller-runtime/pkg/controller"
    	"sigs.k8s.io/controller-runtime/pkg/event"
    	"sigs.k8s.io/controller-runtime/pkg/handler"
    	"sigs.k8s.io/controller-runtime/pkg/manager"
    	"sigs.k8s.io/controller-runtime/pkg/predicate"
    	"sigs.k8s.io/controller-runtime/pkg/reconcile"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. src/runtime/os3_plan9.go

    		dumpregs(_ureg)
    	}
    	if docrash {
    		crash()
    	}
    Exit:
    	goexitsall(note)
    	exits(note)
    	return _NDFLT // not reached
    }
    
    func sigenable(sig uint32) {
    }
    
    func sigdisable(sig uint32) {
    }
    
    func sigignore(sig uint32) {
    }
    
    func setProcessCPUProfiler(hz int32) {
    }
    
    func setThreadCPUProfiler(hz int32) {
    	// TODO: Enable profiling interrupts.
    	getg().m.profilehz = hz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/templates/productpage.html

                </div>
              </div>
            </a>
            {% else %}
              <button type="button" id="sign-in-button" class="rounded-md bg-blue-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-blue-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-blue-600">
                Sign in
              </button>
            {% endif %}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    func (q *Quantity) IsZero() bool {
    	if q.d.Dec != nil {
    		return q.d.Dec.Sign() == 0
    	}
    	return q.i.value == 0
    }
    
    // Sign returns 0 if the quantity is zero, -1 if the quantity is less than zero, or 1 if the
    // quantity is greater than zero.
    func (q *Quantity) Sign() int {
    	if q.d.Dec != nil {
    		return q.d.Dec.Sign()
    	}
    	return q.i.Sign()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. src/go/types/exprstring.go

    		default:
    			s = "chan "
    		}
    		buf.WriteString(s)
    		WriteExpr(buf, x.Value)
    	}
    }
    
    func writeSigExpr(buf *bytes.Buffer, sig *ast.FuncType) {
    	buf.WriteByte('(')
    	writeFieldList(buf, sig.Params.List, ", ", false)
    	buf.WriteByte(')')
    
    	res := sig.Results
    	n := res.NumFields()
    	if n == 0 {
    		// no result
    		return
    	}
    
    	buf.WriteByte(' ')
    	if n == 1 && len(res.List[0].Names) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 19:31:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/go.mod

    	k8s.io/kms v0.0.0
    	k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340
    	k8s.io/utils v0.0.0-20230726121419-3b25d923346b
    	sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3
    	sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd
    	sigs.k8s.io/structured-merge-diff/v4 v4.4.1
    	sigs.k8s.io/yaml v1.4.0
    )
    
    require (
    	github.com/NYTimes/gziphandler v1.1.1 // indirect
    	github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top