Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 361 for sing (0.08 sec)

  1. internal/event/target/postgresql.go

    	if err := target.init(); err != nil {
    		return false, err
    	}
    	return target.isActive()
    }
    
    func (target *PostgreSQLTarget) isActive() (bool, error) {
    	if err := target.db.Ping(); err != nil {
    		if IsConnErr(err) {
    			return false, store.ErrNotConnected
    		}
    		return false, err
    	}
    	return true, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/internal/fuzz/worker.go

    			entryOut.IsSeed = entryIn.IsSeed
    		}
    	}
    
    	return entryOut, resp, false, callErr
    }
    
    // ping tells the worker to call the ping method. See workerServer.ping.
    func (wc *workerClient) ping(ctx context.Context) error {
    	wc.mu.Lock()
    	defer wc.mu.Unlock()
    	c := call{Ping: &pingArgs{}}
    	var resp pingResponse
    	return wc.callLocked(ctx, c, &resp)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/extra-data-types.md

    * Großartige Editor-Unterstützung.
    * Datenkonvertierung bei eingehenden Requests.
    * Datenkonvertierung für Response-Daten.
    * Datenvalidierung.
    * Automatische Annotation und Dokumentation.
    
    ## Andere Datentypen
    
    Hier sind einige der zusätzlichen Datentypen, die Sie verwenden können:
    
    * `UUID`:
        * Ein standardmäßiger „universell eindeutiger Bezeichner“ („Universally Unique Identifier“), der in vielen Datenbanken und Systemen als ID üblich ist.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:55 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. internal/grid/grid.go

    	biggerBufMin = 32 << 10
    
    	// This is the maximum size of bigger buffers.
    	biggerBufMax = maxBufferSize
    
    	// If there is a queue, merge up to this many messages.
    	maxMergeMessages = 30
    
    	// clientPingInterval will ping the remote handler every 15 seconds.
    	// Clients disconnect when we exceed 2 intervals.
    	clientPingInterval = 15 * time.Second
    
    	// Deadline for single (non-streaming) requests to complete.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 02 15:56:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/caclient/providers/citadel/client.go

    	}
    	c.conn = conn
    	c.client = pb.NewIstioCertificateServiceClient(conn)
    	return c, nil
    }
    
    func (c *CitadelClient) Close() {
    	if c.conn != nil {
    		c.conn.Close()
    	}
    }
    
    // CSRSign calls Citadel to sign a CSR.
    func (c *CitadelClient) CSRSign(csrPEM []byte, certValidTTLInSec int64) (res []string, err error) {
    	crMetaStruct := &structpb.Struct{
    		Fields: map[string]*structpb.Value{
    			security.CertSigner: {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. src/time/format.go

    	// Format monotonic clock reading as m=±ddd.nnnnnnnnn.
    	if t.wall&hasMonotonic != 0 {
    		m2 := uint64(t.ext)
    		sign := byte('+')
    		if t.ext < 0 {
    			sign = '-'
    			m2 = -m2
    		}
    		m1, m2 := m2/1e9, m2%1e9
    		m0, m1 := m1/1e9, m1%1e9
    		buf := make([]byte, 0, 24)
    		buf = append(buf, " m="...)
    		buf = append(buf, sign)
    		wid := 0
    		if m0 != 0 {
    			buf = appendInt(buf, int(m0), 0)
    			wid = 9
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/FileLockCommunicator.java

                            LOGGER.debug("Failed attempt to ping owner of lock for {} (lock id: {}, port: {}, address: {})", displayName, lockId, ownerPort, address);
                        } else {
                            throw e;
                        }
                    }
                }
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. docker/Dockerfile.base

    # sudo apt-get update && apt-get whichever
    
    # hadolint ignore=DL3005,DL3008
    RUN apt-get update && \
      apt-get install --no-install-recommends -y \
      ca-certificates \
      curl \
      iptables \
      iproute2 \
      iputils-ping \
      knot-dnsutils \
      netcat-openbsd \
      tcpdump \
      conntrack \
      bsdmainutils \
      net-tools \
      lsof \
      sudo \
      && update-ca-certificates \
      && apt-get upgrade -y \
      && apt-get clean \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  9. src/math/big/float_test.go

    }
    
    func TestFloatPredicates(t *testing.T) {
    	for _, test := range []struct {
    		x            string
    		sign         int
    		signbit, inf bool
    	}{
    		{x: "-Inf", sign: -1, signbit: true, inf: true},
    		{x: "-1", sign: -1, signbit: true},
    		{x: "-0", signbit: true},
    		{x: "0"},
    		{x: "1", sign: 1},
    		{x: "+Inf", sign: 1, inf: true},
    	} {
    		x := makeFloat(test.x)
    		if got := x.Signbit(); got != test.signbit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  10. src/crypto/tls/bogo_config.json

            "Client-Sign-RSA_PKCS1_SHA1-TLS13": "TODO: first pass, this should be fixed",
            "Client-Sign-RSA_PKCS1_SHA256-TLS13": "TODO: first pass, this should be fixed",
            "Client-Sign-RSA_PKCS1_SHA384-TLS13": "TODO: first pass, this should be fixed",
            "Client-Sign-RSA_PKCS1_SHA512-TLS13": "TODO: first pass, this should be fixed",
            "Client-Sign-ECDSA_SHA1-TLS13": "TODO: first pass, this should be fixed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top