Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 280 for respective (0.27 sec)

  1. src/strconv/atof.go

    // ParseFloat returns f = ±Inf, err.Err = ErrRange.
    //
    // ParseFloat recognizes the string "NaN", and the (possibly signed) strings "Inf" and "Infinity"
    // as their respective special floating point values. It ignores case when matching.
    //
    // [floating-point literals]: https://go.dev/ref/spec#Floating-point_literals
    func ParseFloat(s string, bitSize int) (float64, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    	cache       *simpleCache
    	apiServerID string
    }
    
    // NewEnvelopeTransformer returns a transformer which implements a KEK-DEK based envelope encryption scheme.
    // It uses envelopeService to encrypt and decrypt DEKs. Respective DEKs (in encrypted form) are prepended to
    // the data items they encrypt.
    func NewEnvelopeTransformer(envelopeService kmsservice.Service, providerName string, stateFunc StateFunc, apiServerID string) value.Transformer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/scanner.go

    	s.bad = !ok
    	s.kind = kind
    }
    
    // next advances the scanner by reading the next token.
    //
    // If a read, source encoding, or lexical error occurs, next calls
    // the installed error handler with the respective error position
    // and message. The error message is guaranteed to be non-empty and
    // never starts with a '/'. The error handler must exist.
    //
    // If the scanner mode includes the comments flag and a comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/values.yaml

        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
    
        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
          # talk to one another. All clusters should be using Istio mTLS and must
          # have a shared root CA for this model to work.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/syscall/js/js.go

    	} else {
    		// allocates on the heap, but exceeding maxStackArgs should be rare
    		argVals = make([]Value, size)
    		argRefs = make([]ref, size)
    	}
    	return
    }
    
    // storeArgs maps input args onto respective Value and ref slices.
    // It can be paired with makeArgSlices to make-and-store JavaScript arg slices.
    func storeArgs(args []any, argValsDst []Value, argRefsDst []ref) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    	// Create the controller
    	logger, tCtx := ktesting.NewTestContext(t)
    	adc := createADC(t, tCtx, fakeKubeClient, informerFactory, plugins)
    
    	// Add existing objects (created by testplugin) to the respective informers
    	pods, err := fakeKubeClient.CoreV1().Pods(v1.NamespaceAll).List(tCtx, metav1.ListOptions{})
    	if err != nil {
    		t.Fatalf("Run failed with error. Expected: <no error> Actual: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

              std::vector<char> x(block_size, 'x');
              EXPECT_EQ(out, x);
            }));
      }
      // The `threads` destructor blocks until the threads can be joined, once their
      // respective reads finish (which happens once they are all concurrently being
      // executed, or 10 seconds have passed).
    }
    
    TEST(RamFileBlockCacheTest, CoalesceConcurrentReads) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:57 UTC 2021
    - 23.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    // someMatchesAllResourceRequests and
    // someMatchesAllNonResourceRequests parameters indicate whether any
    // rule in the collection matches all of the relevant sort of request;
    // these imply the respective returned slice of counterexamples will
    // be empty.  The matchAllResourceRequests and
    // matchAllNonResourceRequests parameters indicate whether the
    // generated rule should match all of the relevant sort.  The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    	return t.str != "" && t.pVariant == 0
    }
    
    // RemakeString is used to update t.str in case lang, script or region changed.
    // It is assumed that pExt and pVariant still point to the start of the
    // respective parts.
    func (t *Tag) RemakeString() {
    	if t.str == "" {
    		return
    	}
    	extra := t.str[t.pVariant:]
    	if t.pVariant > 0 {
    		extra = extra[1:]
    	}
    	if t.equalTags(Und) && strings.HasPrefix(extra, "x-") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/values.yaml

        meshNetworks: {}
        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
          # talk to one another. All clusters should be using Istio mTLS and must
          # have a shared root CA for this model to work.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top