Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,261 for multiplier (0.15 sec)

  1. pkg/kube/inject/testdata/inject/hello-multiple-image-secrets.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/lookup.go

    	indirect  bool  // if set, there was a pointer indirection on the path to this field
    	multiples bool  // if set, typ appears multiple times at this depth
    }
    
    // consolidateMultiples collects multiple list entries with the same type
    // into a single entry marked as containing multiples. The result is the
    // consolidated list.
    func consolidateMultiples(list []embeddedType) []embeddedType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/go/types/lookup.go

    	indirect  bool  // if set, there was a pointer indirection on the path to this field
    	multiples bool  // if set, typ appears multiple times at this depth
    }
    
    // consolidateMultiples collects multiple list entries with the same type
    // into a single entry marked as containing multiples. The result is the
    // consolidated list.
    func consolidateMultiples(list []embeddedType) []embeddedType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/simple-policy-multiple-td-aliases-in.yaml

    Yangmin Zhu <******@****.***> 1617305101 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 485 bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/simple-policy-multiple-td-aliases-out.yaml

    Kuat <******@****.***> 1697560546 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/extended-simple-policy-multiple-td-aliases-out.yaml

    Kuat <******@****.***> 1711363165 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package wsstream contains utilities for streaming content over WebSockets.
    // The Conn type allows callers to multiplex multiple read/write channels over
    // a single websocket.
    //
    // "channel.k8s.io"
    //
    // The Websocket RemoteCommand subprotocol "channel.k8s.io" prepends each binary message with a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. src/internal/profile/profile.go

    	return len(p.Sample) == 0
    }
    
    // Scale multiplies all sample values in a profile by a constant.
    func (p *Profile) Scale(ratio float64) {
    	if ratio == 1 {
    		return
    	}
    	ratios := make([]float64, len(p.SampleType))
    	for i := range p.SampleType {
    		ratios[i] = ratio
    	}
    	p.ScaleN(ratios)
    }
    
    // ScaleN multiplies each sample values in a sample by a different amount.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/resource/amount.go

    // until the exponent is a multiple of 3 - i.e. 1.1e5 would return "110", 3.
    func (a int64Amount) AsCanonicalBytes(out []byte) (result []byte, exponent int32) {
    	mantissa := a.value
    	exponent = int32(a.scale)
    
    	amount, times := removeInt64Factors(mantissa, 10)
    	exponent += int32(times)
    
    	// make sure exponent is a multiple of 3
    	var ok bool
    	switch exponent % 3 {
    	case 1, -2:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 19:42:28 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    //                coefficients for first iteration
    //
    // So in this case we would have two iterations. In the first
    // both lanes are multiplied by r². In the second only the
    // first lane is multiplied by r² and the second lane is
    // instead multiplied by r. This gives use the odd and even
    // powers of r that we need from the original equation.
    //
    // Notation:
    //
    //   h - accumulator
    //   r - key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top