Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,456 for layers (0.12 sec)

  1. src/crypto/tls/ech.go

    // picking a config. This can be somewhat lax because even if we pick a
    // valid-looking name, the DNS layer will later reject it anyway.
    func validDNSName(name string) bool {
    	if len(name) > 253 {
    		return false
    	}
    	labels := strings.Split(name, ".")
    	if len(labels) <= 1 {
    		return false
    	}
    	for _, l := range labels {
    		labelLen := len(l)
    		if labelLen == 0 {
    			return false
    		}
    		for i, r := range l {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libexport/load.h

      // Retrieves the object graph from the SavedModel.
      //
      // For now, we're returning the object graph directly (i.e. the parsed proto)
      // rather than adding abstraction on top.  We may later find we would like an
      // intermediate abstraction layer to make traversal easier, but for now the
      // extra complexity doesn't seem justified.  Regardless of what we choose,
      // that logic should live outside this class; this class should continue to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. pkg/registry/core/persistentvolumeclaim/storage/storage.go

    	case *api.PersistentVolumeClaim:
    		r.defaultOnReadPvc(s)
    	case *api.PersistentVolumeClaimList:
    		r.defaultOnReadPvcList(s)
    	default:
    		// This was not an object we can default.  This is not an error, as the
    		// caching layer can pass through here, too.
    	}
    }
    
    // defaultOnReadPvcList defaults a PersistentVolumeClaimList.
    func (r *REST) defaultOnReadPvcList(pvcList *api.PersistentVolumeClaimList) {
    	if pvcList == nil {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  4. cmd/server-main_test.go

    	obj, err := newObjectLayer(ctx, mustGetPoolEndpoints(0, disks...))
    	if err != nil {
    		t.Fatal("Unexpected object layer initialization error", err)
    	}
    
    	_, ok := obj.(*erasureServerPools)
    	if !ok {
    		t.Fatal("Unexpected object layer detected", reflect.TypeOf(obj))
    	}
    
    	// Tests for Erasure object layer initialization.
    
    	// Create temporary backend for the test server.
    	nDisks = 16
    	disks, err = getRandomDisks(nDisks)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/software_architecture.puml

    database "External Repository" {
      [Spring Boot\nFramework] as SpringBoot
      [Android\nFramework] as Android
    }
    
    package "Application Layer" {
      [server-application]
      [android-app]
    }
    
    package "Business Logic Layer" {
      [user-feature]
      [admin-feature]
    }
    
    package "Domain Model Layer" {
      [domain-model] <-right- [state]
    }
    
    [server-application] -down-> [user-feature]
    [server-application] -down-> [admin-feature]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 886 bytes
    - Viewed (0)
  6. docs/contribute/concurrency.md

    ### Threads
    
    #### Application's calling thread
    
    The application-layer must block on writing I/O. We can't return from a write until we've pushed its bytes onto the socket. Otherwise, if the write fails we are unable to deliver its IOException to the application. We would have told the application layer that the write succeeded, but it didn't!
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  7. cmd/benchmark-utils_test.go

    	defer removeRoots(disks)
    
    	// uses *testing.B and the object Layer to run the benchmark.
    	runPutObjectPartBenchmark(b, objLayer, objSize)
    }
    
    // creates Erasure/FS backend setup, obtains the object layer and calls the runPutObjectBenchmark function.
    func benchmarkPutObject(b *testing.B, instanceType string, objSize int) {
    	// create a temp Erasure/FS backend.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 23 15:46:00 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/lstm_utils.h

    // containing FuncOp as input with arguments specifying the input, weight,
    // projection, bias and layer norm scale. The weight, projection, bias and
    // layer norm scale all need to be RankedTensorType.
    // This class overrides the layer norm coefficient setters from the base class.
    class ConvertLayerNormalizedLSTMCellSimpleToFusedLSTM
        : public ConvertLSTMCellSimpleToFusedLSTM {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. cmd/object-api-common.go

    	deletedBucketsPrefix = ".deleted"
    
    	// ETag (hex encoded md5sum) of empty string.
    	emptyETag = "d41d8cd98f00b204e9800998ecf8427e"
    )
    
    // Global object layer mutex, used for safely updating object layer.
    var globalObjLayerMutex sync.RWMutex
    
    // Global object layer, only accessed by globalObjectAPI.
    var globalObjectAPI ObjectLayer
    
    type storageOpts struct {
    	cleanUp     bool
    	healthCheck bool
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. pkg/test/framework/label/labels_test.go

    	tests := []struct {
    		filter   string
    		labels   Set
    		expected bool
    		err      bool
    	}{
    		{filter: "", labels: nil, expected: true},
    		{filter: "", labels: NewSet(Postsubmit), expected: true},
    		{filter: "", labels: NewSet(Postsubmit, CustomSetup), expected: true},
    		{filter: "$requires.kube", labels: NewSet(Postsubmit, CustomSetup), err: true},
    		{filter: "zoo", labels: NewSet(Postsubmit, CustomSetup), expected: true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 18 17:08:05 UTC 2021
    - 3.2K bytes
    - Viewed (0)
Back to top