Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 783 for Seal (0.04 sec)

  1. test/typeparam/absdiff2.go

    	switch z := x.(type) {
    	case complex64:
    		re = float64(real(z))
    		im = float64(imag(z))
    	case complex128:
    		re = real(z)
    		im = imag(z)
    	default:
    		panic("unknown complex type")
    	}
    	return
    }
    
    func (a complexAbs[T]) Abs() T {
    	// TODO use direct conversion instead of realimag once #50937 is fixed
    	r, i := realimag(a.Value_)
    	// r := float64(real(a.Value))
    	// i := float64(imag(a.Value))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. src/math/big/arith_386.s

    // func mulAddVWW(z, x []Word, y, r Word) (c Word)
    TEXT ·mulAddVWW(SB),NOSPLIT,$0
    	MOVL z+0(FP), DI
    	MOVL x+12(FP), SI
    	MOVL y+24(FP), BP
    	MOVL r+28(FP), CX	// c = r
    	MOVL z_len+4(FP), BX
    	LEAL (DI)(BX*4), DI
    	LEAL (SI)(BX*4), SI
    	NEGL BX			// i = -n
    	JMP E5
    
    L5:	MOVL (SI)(BX*4), AX
    	MULL BP
    	ADDL CX, AX
    	ADCL $0, DX
    	MOVL AX, (DI)(BX*4)
    	MOVL DX, CX
    	ADDL $1, BX		// i++
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/addresses_test.go

    			ExpectedMap: publicAddressCIDRMap,
    		},
    		{
    			Request: http.Request{
    				Header: map[string][]string{
    					"X-Real-Ip": {internalIP},
    				},
    			},
    			ExpectedMap: internalAddressCIDRMap,
    		},
    		{
    			Request: http.Request{
    				Header: map[string][]string{
    					"X-Real-Ip": {publicIP},
    				},
    			},
    			ExpectedMap: publicAddressCIDRMap,
    		},
    		{
    			Request: http.Request{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  4. cluster/kubemark/iks/config-default.sh

    CLUSTER_LOCATION="${CLUSTER_LOCATION:-wdc06}"
    REGISTRY_LOGIN_URL="${REGISTRY_LOGIN_URL:-https://api.ng.bluemix.net}"
    
    # User defined
    # number of real workers in spawnTester cluster
    NUM_NODES="${NUM_NODES:-2}"
    # spec of real workers in spawnTester cluster
    NODE_SIZE=${NODE_SIZE:-u2c.2x4}
    DESIRED_NODES="${DESIRED_NODES:-10}"
    # number of hollow nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 17:15:29 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  5. pkg/hbone/README.md

    ```go
    d := hbone.NewDialer(hbone.Config{
        ProxyAddress: "1.2.3.4:15008",
        Headers: map[string][]string{
            "some-addition-metadata": {"test-value"},
        },
        TLS:          nil, // TLS is strongly recommended in real world
    })
    client, _ := d.Dial("tcp", testAddr)
    client.Write([]byte("hello world"))
    ```
    
    ### Server
    
    #### Server CLI
    
    A CLI client is available using the `server` binary.
    
    Usage examples:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. .github/workflows/multipart/migrate.sh

    docker-compose -f docker-compose-site2.yaml up -d
    
    ./mc ready site1/
    ./mc ready site2/
    
    for i in $(seq 1 10); do
    	# mc admin heal -r --remove when used against a LB endpoint
    	# behaves flaky, let this run 10 times before giving up
    	./mc admin heal -r --remove --json site1/ 2>&1 >/dev/null
    	./mc admin heal -r --remove --json site2/ 2>&1 >/dev/null
    done
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ir/func_test.go

    			sym: "Baz",
    		},
    		{
    			in:  "memeqbody",
    			pkg: "",
    			sym: "memeqbody",
    		},
    		{
    			in:  `example%2ecom.Bar`,
    			pkg: `example%2ecom`,
    			sym: "Bar",
    		},
    		{
    			// Not a real generated symbol name, but easier to catch the general parameter form.
    			in:  `foo.Bar[sync/atomic.Uint64]`,
    			pkg: `foo`,
    			sym: "Bar[sync/atomic.Uint64]",
    		},
    		{
    			in:  `example%2ecom.Bar[sync/atomic.Uint64]`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/database/sql/doc.txt

    * Make type casting/conversions consistent between all drivers. To
      achieve this, most of the conversions are done in the sql package,
      not in each driver. The drivers then only have to deal with a
      smaller set of types.
    
    * Be flexible with type conversions, but be paranoid about silent
      truncation or other loss of precision.
    
    * Handle concurrency well.  Users shouldn't need to care about the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 06:48:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/util/ipvs_linux.go

    	if err != nil {
    		return fmt.Errorf("could not convert local virtual server to IPVS service: %w", err)
    	}
    	dst, err := toIPVSDestination(rs)
    	if err != nil {
    		return fmt.Errorf("could not convert local real server to IPVS destination: %w", err)
    	}
    	runner.mu.Lock()
    	defer runner.mu.Unlock()
    	return runner.ipvsHandle.NewDestination(svc, dst)
    }
    
    // DeleteRealServer is part of ipvs.Interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/shufflesharding/shufflesharding.go

    		return nil, fmt.Errorf("required entropy bits of deckSize %d and handSize %d is greater than %d", deckSize, handSize, MaxHashBits)
    	}
    
    	return &Dealer{
    		deckSize: deckSize,
    		handSize: handSize,
    	}, nil
    }
    
    // Deal shuffles a card deck and deals a hand of cards, using the given hashValue as the source of entropy.
    // The deck size and hand size are properties of the Dealer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 08:38:03 UTC 2019
    - 4K bytes
    - Viewed (0)
Back to top