Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,546 for silver (0.1 sec)

  1. pkg/test/framework/components/authz/server.go

    		s, err := New(ctx, ns())
    		if err != nil {
    			return err
    		}
    
    		// Store the server.
    		*server = s
    		return err
    	}
    }
    
    // SetupLocal is a utility function for setting a global variable for a local Server.
    func SetupLocal(server *Server, ns namespace.Getter) resource.SetupFn {
    	if ns == nil {
    		ns = namespace.NilGetter
    	}
    
    	return func(ctx resource.Context) error {
    		s, err := NewLocal(ctx, ns())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 14 23:39:05 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. pkg/controller/certificates/signer/signer.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package signer implements a CA signer that uses keys stored on local disk.
    package signer
    
    import (
    	"context"
    	"crypto/x509"
    	"encoding/pem"
    	"fmt"
    	"time"
    
    	capi "k8s.io/api/certificates/v1"
    	capiv1beta1 "k8s.io/api/certificates/v1beta1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/server.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package server
    
    import (
    	"context"
    	"io"
    
    	"github.com/spf13/cobra"
    
    	"k8s.io/apiextensions-apiserver/pkg/cmd/server/options"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    )
    
    func NewServerCommand(ctx context.Context, out, errOut io.Writer) *cobra.Command {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. pkg/webhooks/validation/server/server.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package server
    
    import (
    	"bytes"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"net/http"
    
    	multierror "github.com/hashicorp/go-multierror"
    	admissionv1 "k8s.io/api/admission/v1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. security/pkg/server/ca/server.go

    	}
    	certChainExpirySeconds.ValueFrom(func() float64 { return time.Until(certChainPem.NotAfter).Seconds() })
    }
    
    // Register registers a GRPC server on the specified port.
    func (s *Server) Register(grpcServer *grpc.Server) {
    	pb.RegisterIstioCertificateServiceServer(grpcServer, s)
    }
    
    // New creates a new instance of `IstioCAServiceServer`
    func New(
    	ca CertificateAuthority,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	// The associated value will be of type net.Addr.
    	LocalAddrContextKey = &contextKey{"local-addr"}
    )
    
    // A conn represents the server side of an HTTP connection.
    type conn struct {
    	// server is the server on which the connection arrived.
    	// Immutable; never nil.
    	server *Server
    
    	// cancelCtx cancels the connection-level context.
    	cancelCtx context.CancelFunc
    
    	// rwc is the underlying network connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/server.go

    				return
    			default:
    				// If the server errors then pilot-agent can never pass readiness or liveness probes
    				// Therefore, trigger graceful termination by sending SIGTERM to the binary pid
    				notifyExit()
    			}
    		}
    	}()
    
    	// Wait for the agent to be shut down.
    	<-ctx.Done()
    	log.Info("Status server has successfully terminated")
    }
    
    func (s *Server) handlePprofIndex(w http.ResponseWriter, r *http.Request) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. internal/http/server.go

    func (srv *Server) UseReadHeaderTimeout(d time.Duration) *Server {
    	srv.ReadHeaderTimeout = d
    	return srv
    }
    
    // UseHandler configure final handler for this HTTP *Server
    func (srv *Server) UseHandler(h http.Handler) *Server {
    	srv.Handler = h
    	return srv
    }
    
    // UseTLSConfig pass configured TLSConfig for this HTTP *Server
    func (srv *Server) UseTLSConfig(cfg *tls.Config) *Server {
    	srv.TLSConfig = cfg
    	return srv
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 09 21:25:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/server.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/server/healthz"
    	"k8s.io/apiserver/pkg/server/mux"
    	"k8s.io/apiserver/pkg/server/routes"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/informers"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/rest"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/copy-with-flat-filter-example.png

    copy-with-flat-filter-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 16:19:30 UTC 2024
    - 62.8K bytes
    - Viewed (0)
Back to top