Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 332 for sing (0.06 sec)

  1. guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java

        for (int i = 0; i < VALUES.length; i++) {
          for (int j = 0; j < VALUES.length; j++) {
            byte x = VALUES[i];
            byte y = VALUES[j];
            // note: spec requires only that the sign is the same
            assertWithMessage(x + ", " + y)
                .that(Math.signum(Ints.compare(i, j)))
                .isEqualTo(Math.signum(UnsignedBytes.compare(x, y)));
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/certs.go

    	}
    
    	fmt.Printf("[certs] Using certificateDir folder %q\n", data.CertificateWriteDir())
    	return nil
    }
    
    func runCAPhase(ca *certsphase.KubeadmCert) func(c workflow.RunData) error {
    	return func(c workflow.RunData) error {
    		data, ok := c.(InitData)
    		if !ok {
    			return errors.New("certs phase invoked with an invalid data struct")
    		}
    
    		// if using external etcd, skips etcd certificate authority generation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    	defer SetGoroutineLabels(context.Background())
    
    	garbage := new(*int)
    	fingReady := make(chan struct{})
    	runtime.SetFinalizer(garbage, func(v **int) {
    		Do(context.Background(), Labels("fing-label", "fing-value"), func(ctx context.Context) {
    			close(fingReady)
    			<-c
    		})
    	})
    	garbage = nil
    	for i := 0; i < 2; i++ {
    		runtime.GC()
    	}
    	<-fingReady
    
    	var w bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. test/typeparam/list2.go

    // _Element is an element of a linked list.
    type _Element[T any] struct {
    	// Next and previous pointers in the doubly-linked list of elements.
    	// To simplify the implementation, internally a list l is implemented
    	// as a ring, such that &l.root is both the next element of the last
    	// list element (l.Back()) and the previous element of the first list
    	// element (l.Front()).
    	next, prev *_Element[T]
    
    	// The list to which this element belongs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/net/ipsock.go

    	for _, addr := range addrs {
    		if strategy(addr) {
    			return addr
    		}
    	}
    	return addrs[0]
    }
    
    // partition divides an address list into two categories, using a
    // strategy function to assign a boolean label to each address.
    // The first address, and any with a matching label, are returned as
    // primaries, while addresses with the opposite label are returned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    	if err != nil {
    		return err
    	}
    
    	return db.pingDC(ctx, dc, dc.releaseConn)
    }
    
    // Ping verifies a connection to the database is still alive,
    // establishing a connection if necessary.
    //
    // Ping uses [context.Background] internally; to specify the context, use
    // [DB.PingContext].
    func (db *DB) Ping() error {
    	return db.PingContext(context.Background())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_tls13.go

    		signOpts = &rsa.PSSOptions{SaltLength: rsa.PSSSaltLengthEqualsHash, Hash: sigHash}
    	}
    	sig, err := cert.PrivateKey.(crypto.Signer).Sign(c.config.rand(), signed, signOpts)
    	if err != nil {
    		c.sendAlert(alertInternalError)
    		return errors.New("tls: failed to sign handshake: " + err.Error())
    	}
    	certVerifyMsg.signature = sig
    
    	if _, err := hs.c.writeHandshakeRecord(certVerifyMsg, hs.transcript); err != nil {
    		return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/riscv64/asm.go

    		}
    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocType(rIdx, objabi.R_RISCV_CALL)
    		return true
    
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_RISCV_GOT_HI20):
    		if targType != sym.SDYNIMPORT {
    			// TODO(jsing): Could convert to non-GOT reference.
    		}
    
    		ld.AddGotSym(target, ldr, syms, targ, uint32(elf.R_RISCV_64))
    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocType(rIdx, objabi.R_RISCV_GOT_HI20)
    		su.SetRelocSym(rIdx, syms.GOT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. src/mime/mediatype.go

    	if param == "" {
    		return "", "", v
    	}
    
    	rest = strings.TrimLeftFunc(rest, unicode.IsSpace)
    	if !strings.HasPrefix(rest, "=") {
    		return "", "", v
    	}
    	rest = rest[1:] // consume equals sign
    	rest = strings.TrimLeftFunc(rest, unicode.IsSpace)
    	value, rest2 := consumeValue(rest)
    	if value == "" && rest2 == rest {
    		return "", "", v
    	}
    	rest = rest2
    	return param, value, rest
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. docs/de/docs/deployment/server-workers.md

    ```console
    $ gunicorn main:app --workers 4 --worker-class uvicorn.workers.UvicornWorker --bind 0.0.0.0:80
    
    [19499] [INFO] Starting gunicorn 20.1.0
    [19499] [INFO] Listening at: http://0.0.0.0:80 (19499)
    [19499] [INFO] Using worker: uvicorn.workers.UvicornWorker
    [19511] [INFO] Booting worker with pid: 19511
    [19513] [INFO] Booting worker with pid: 19513
    [19514] [INFO] Booting worker with pid: 19514
    [19515] [INFO] Booting worker with pid: 19515
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top