Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 668 for Koss (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/webhook/serviceresolver.go

    // note that the name, namespace, and port are required and by default all
    // created addresses use HTTPS scheme.
    // for example:
    //
    //	name=ross namespace=andromeda resolves to https://ross.andromeda.svc:443
    func (sr defaultServiceResolver) ResolveEndpoint(namespace, name string, port int32) (*url.URL, error) {
    	if len(name) == 0 || len(namespace) == 0 || port == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. tests/fuzz/README.md

    ## Local testing
    
    To run the fuzzers, follow these steps:
    
    ```bash
    git clone --depth=1 https://github.com/google/oss-fuzz.git
    cd oss-fuzz
    python infra/helper.py build_image istio
    python infra/helper.py build_fuzzers istio ~/go/src/istio.io/istio
    ```
    
    Reproduce failure:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 16:45:44 UTC 2022
    - 994 bytes
    - Viewed (0)
  3. src/math/tan.go

    //    IEEE     +-1.07e9      30000      2.9e-16     8.1e-17
    //
    // Partial loss of accuracy begins to occur at x = 2**30 = 1.074e9.  The loss
    // is not gradual, but jumps suddenly to about 1 part in 10e7.  Results may
    // be meaningless for x > 2**49 = 5.6e14.
    // [Accuracy loss statement from sin.go comments.]
    //
    // Cephes Math Library Release 2.8:  June, 2000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:27:54 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. cmd/import-boss/testdata/inverse/allowed/.import-restrictions

    inverseRules:
      - selectorRegexp: k8s[.]io
        allowedPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 127 bytes
    - Viewed (0)
  5. cmd/import-boss/testdata/transitive/forbidden/.import-restrictions

    inverseRules:
      - selectorRegexp: k8s[.]io
        forbiddenPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/transitive/aaa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 153 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/sigaltstack.go

    #define CSIGSTKSZ 0x4000
    #else
    #define CSIGSTKSZ SIGSTKSZ
    #endif
    
    static stack_t oss;
    static char signalStack[CSIGSTKSZ];
    
    static void changeSignalStack(void) {
    	stack_t ss;
    	memset(&ss, 0, sizeof ss);
    	ss.ss_sp = signalStack;
    	ss.ss_flags = 0;
    	ss.ss_size = CSIGSTKSZ;
    	if (sigaltstack(&ss, &oss) < 0) {
    		perror("sigaltstack");
    		abort();
    	}
    }
    
    static void restoreSignalStack(void) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. cmd/import-boss/testdata/inverse/forbidden/.import-restrictions

    inverseRules:
      - selectorRegexp: k8s[.]io
        forbiddenPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 129 bytes
    - Viewed (0)
  8. cmd/import-boss/testdata/transitive/allowed/.import-restrictions

    inverseRules:
      - selectorRegexp: k8s[.]io
        allowedPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/transitive/aaa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 151 bytes
    - Viewed (0)
  9. test/fixedbugs/issue12677.go

    // compiledir
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 12677: Type loss during export/import of inlined function body.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 16 20:30:04 UTC 2015
    - 265 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    // Lowers SoftmaxCrossEntropyWithLogitsOp using simpler TensorFlow ops. The op
    // computes loss and backprop of the loss with respect to 'features'.
    //
    // Softmax cross entropy loss is defined as follows:
    //
    //  loss = Sum(-labels * Log(Exp(features) / Sum(Exp(features)))
    //  loss = Sum(-labels * LogSoftmax(features))
    //
    // Computing gradient of the loss with respect to features gives us,
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top