Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 173 for subTable (0.73 sec)

  1. src/crypto/cipher/example_test.go

    func ExampleNewGCM_encrypt() {
    	// Load your secret key from a safe place and reuse it across multiple
    	// Seal/Open calls. (Obviously don't use this example key for anything
    	// real.) If you want to convert a passphrase to a key, use a suitable
    	// package like bcrypt or scrypt.
    	// When decoded the key should be 16 bytes (AES-128) or 32 (AES-256).
    	key, _ := hex.DecodeString("6368616e676520746869732070617373776f726420746f206120736563726574")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 30 16:23:44 UTC 2018
    - 11.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

      ModuleOp module = getOperation();
      // This pass assumes that all functions are suitable for export, i.e., each
      // function has a single tf_executor.graph op and all islands wrap single
      // ops.
      if (failed(tensorflow::VerifyExportSuitable(module))) {
        module.emitOpError() << "not suitable for checking control dependencies";
        return;
      }
      TF::SideEffectAnalysis side_effect_analysis(module);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

    // a certain combination:
    // - no object exists with suitable topology and storage class name
    // - such an object exists, but the capacity is unset
    // - such an object exists, but the capacity is zero
    //
    // The producer of these objects can decide which approach is more suitable.
    //
    // They are consumed by the kube-scheduler when a CSI driver opts into
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. src/net/rpc/server.go

    		method := suitableMethods(reflect.PointerTo(s.typ), false)
    		if len(method) != 0 {
    			str = "rpc.Register: type " + sname + " has no exported methods of suitable type (hint: pass a pointer to value of that type)"
    		} else {
    			str = "rpc.Register: type " + sname + " has no exported methods of suitable type"
    		}
    		log.Print(str)
    		return errors.New(str)
    	}
    
    	if _, dup := server.serviceMap.LoadOrStore(sname, s); dup {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/fields/selector.go

    // object suitable for matching, or panic when an error occur.
    func ParseSelectorOrDie(s string) Selector {
    	selector, err := ParseSelector(s)
    	if err != nil {
    		panic(err)
    	}
    	return selector
    }
    
    // ParseSelector takes a string representing a selector and returns an
    // object suitable for matching, or an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 23 20:40:07 UTC 2020
    - 12.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    \"kubernetes.io/hostname=knode-abc123\"\n\nThe following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero\n\nThe producer of these objects can decide which approach is more suitable.\n\nThey are consumed by the kube-scheduler when a CSI driver opts into capacity-aware scheduling with CSIDriverSpec.StorageCapacity. The scheduler...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1alpha1/types.go

    // a certain combination:
    // - no object exists with suitable topology and storage class name
    // - such an object exists, but the capacity is unset
    // - such an object exists, but the capacity is zero
    //
    // The producer of these objects can decide which approach is more suitable.
    //
    // They are consumed by the kube-scheduler when a CSI driver opts into
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    // 1.0), with -1.0 colored green, 0.0 colored grey, and 1.0 colored
    // red. If isBackground is true, then a light (low-saturation)
    // color is returned (suitable for use as a background color);
    // otherwise, a darker color is returned (suitable for use as a
    // foreground color).
    func dotColor(score float64, isBackground bool) string {
    	// A float between 0.0 and 1.0, indicating the extent to which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  9. src/math/rand/v2/rand.go

    // Copyright 2009 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.
    
    // Package rand implements pseudo-random number generators suitable for tasks
    // such as simulation, but it should not be used for security-sensitive work.
    //
    // Random numbers are generated by a [Source], usually wrapped in a [Rand].
    // Both types should be used by a single goroutine at a time: sharing among
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    \"kubernetes.io/hostname=knode-abc123\"\n\nThe following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero\n\nThe producer of these objects can decide which approach is more suitable.\n\nThey are consumed by the kube-scheduler when a CSI driver opts into capacity-aware scheduling with CSIDriverSpec.StorageCapacity. The scheduler...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
Back to top