Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 406 for sig1 (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/types2/typestring.go

    		}
    	}
    	w.byte(')')
    }
    
    func (w *typeWriter) signature(sig *Signature) {
    	if sig.TypeParams().Len() != 0 {
    		if w.ctxt != nil {
    			assert(w.tparams == nil)
    			w.tparams = sig.TypeParams()
    			defer func() {
    				w.tparams = nil
    			}()
    		}
    		w.tParamList(sig.TypeParams().list())
    	}
    
    	w.tuple(sig.params, sig.variadic)
    
    	n := sig.results.Len()
    	if n == 0 {
    		// no result
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. bin/update_crds.sh

    fi
    if [ -z "${GATEWAY_VERSION}" ]; then
      fail "Unable to retrieve the gateway-api version from go.mod file. Not updating the CRD file.";
    fi
    
    echo "# Generated with \`kubectl kustomize \"https://github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref=${GATEWAY_VERSION}\"\`" > "${API_TMP}/gateway-api-crd.yaml"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 14:28:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/go/types/typestring.go

    		}
    	}
    	w.byte(')')
    }
    
    func (w *typeWriter) signature(sig *Signature) {
    	if sig.TypeParams().Len() != 0 {
    		if w.ctxt != nil {
    			assert(w.tparams == nil)
    			w.tparams = sig.TypeParams()
    			defer func() {
    				w.tparams = nil
    			}()
    		}
    		w.tParamList(sig.TypeParams().list())
    	}
    
    	w.tuple(sig.params, sig.variadic)
    
    	n := sig.results.Len()
    	if n == 0 {
    		// no result
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/math/big/ratmarsh.go

    	i := x.b.abs.bytes(buf)
    	j := x.a.abs.bytes(buf[:i])
    	n := i - j
    	if int(uint32(n)) != n {
    		// this should never happen
    		return nil, errors.New("Rat.GobEncode: numerator too large")
    	}
    	byteorder.BePutUint32(buf[j-4:j], uint32(n))
    	j -= 1 + 4
    	b := ratGobVersion << 1 // make space for sign bit
    	if x.a.neg {
    		b |= 1
    	}
    	buf[j] = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top