Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,246 for semver (0.17 sec)

  1. cluster/common.sh

           | ${CFSSLJSON_BIN} -bare "${prefix}"
          ;;
        server)
          echo "Generate server certificates..."
          echo '{"CN":"'"${member_ip}"'","hosts":[""],"key":{"algo":"ecdsa","size":256}}' \
           | ${CFSSL_BIN} gencert -ca=ca.pem -ca-key=ca-key.pem -config=ca-config.json -profile=server -hostname="${member_ip},127.0.0.1" - \
           | ${CFSSLJSON_BIN} -bare "${prefix}"
          ;;
        peer)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. build/lib/release.sh

    Run cluster/get-kube-binaries.sh to download client and server binaries.
    EOF
    
      # We want everything in /cluster.
      cp -R "${KUBE_ROOT}/cluster" "${release_stage}/"
    
      mkdir -p "${release_stage}/server"
      cp "${RELEASE_TARS}/kubernetes-manifests.tar.gz" "${release_stage}/server/"
      cat <<EOF > "${release_stage}/server/README"
    Server binary tarballs are no longer included in the Kubernetes final tarball.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/etcd/local.go

    	etcdPeerAddress := etcdutil.GetPeerURL(&cfg.LocalAPIEndpoint)
    
    	klog.V(2).Infof("[etcd] get the member id from peer: %s", etcdPeerAddress)
    	id, err := etcdClient.GetMemberID(etcdPeerAddress)
    	if err != nil {
    		if errors.Is(etcdutil.ErrNoMemberIDForPeerURL, err) {
    			klog.V(5).Infof("[etcd] member was already removed, because no member id exists for peer %s", etcdPeerAddress)
    			return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  4. src/crypto/tls/ticket.go

    	"io"
    
    	"golang.org/x/crypto/cryptobyte"
    )
    
    // A SessionState is a resumable session.
    type SessionState struct {
    	// Encoded as a SessionState (in the language of RFC 8446, Section 3).
    	//
    	//   enum { server(1), client(2) } SessionStateType;
    	//
    	//   opaque Certificate<1..2^24-1>;
    	//
    	//   Certificate CertificateChain<0..2^24-1>;
    	//
    	//   opaque Extra<0..2^24-1>;
    	//
    	//   struct {
    	//       uint16 version;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/status/server_test.go

    		statusPort := server.statusPort
    		server.mutex.RUnlock()
    		if statusPort == 0 {
    			return fmt.Errorf("no port allocated")
    		}
    		return nil
    	}, retry.Delay(time.Microsecond)); err != nil {
    		t.Fatalf("failed to getport: %v", err)
    	}
    
    	return server
    }
    
    func TestPprof(t *testing.T) {
    	pprofPath := "/debug/pprof/cmdline"
    	// Starts the pilot agent status server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. src/net/http/readrequest_test.go

    		noError,
    	},
    
    	// SSDP Notify request. golang.org/issue/3692
    	{
    		"NOTIFY * HTTP/1.1\r\nServer: foo\r\n\r\n",
    		&Request{
    			Method: "NOTIFY",
    			URL: &url.URL{
    				Path: "*",
    			},
    			Proto:      "HTTP/1.1",
    			ProtoMajor: 1,
    			ProtoMinor: 1,
    			Header: Header{
    				"Server": []string{"foo"},
    			},
    			Close:         false,
    			ContentLength: 0,
    			RequestURI:    "*",
    		},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/authorization/v1/generated.proto

      // you made the request against.  If empty, it is defaulted.
      optional SubjectAccessReviewSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the request is allowed or not
      // +optional
      optional SubjectAccessReviewStatus status = 3;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

      // you made the request against.  If empty, it is defaulted.
      optional SubjectAccessReviewSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the request is allowed or not
      // +optional
      optional SubjectAccessReviewStatus status = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. internal/config/identity/ldap/ldap.go

    // The given username could be just the short "login" username or the full DN.
    //
    // When the username/DN is found, the full DN returned by the **server** is
    // returned, otherwise the returned string is empty. The value returned here is
    // the value sent by the LDAP server and is used in minio as the server performs
    // LDAP specific normalization (including Unicode normalization).
    //
    // If the user is not found, err = nil, otherwise, err != nil.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  10. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

                }
            """
            def moduleA = server.remoteIvyRepo.module('org', 'projectA', '1.2')
            moduleA.dependsOn(organisation: 'org', module: 'projectB', revision: '1.5', revConstraint: 'latest.integration')
                .publish()
    
            def moduleB15 = server.remoteIvyRepo.module('org', 'projectB', '1.5')
            moduleB15.publish()
    
            def moduleB16 = server.remoteIvyRepo.module('org', 'projectB', '1.6')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top