Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 883 for dAtA (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

      // Verify that the Conv2D and BiasAdd data formats match. This is necessary
      // for the ops to fuse correctly, the fused Conv2D op has one data format
      // attribute which is shared.
      bool AreFuseCompatible(Conv2DOp conv, BiasAddOp bias_add,
                             PatternRewriter &rewriter) const override {
        // Verify that the data formats match and are valid for fusion.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/security/simple-oauth2.md

        ```Python hl_lines="3  77-79"
        {!> ../../../docs_src/security/tutorial003.py!}
        ```
    
    ### Check the password
    
    At this point we have the user data from our database, but we haven't checked the password.
    
    Let's put that data in the Pydantic `UserInDB` model first.
    
    You should never save plaintext passwords, so, we'll use the (fake) password hashing system.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/authorization_test.go

    }
    
    func (fs *authzFakeStore) List(typ config.GroupVersionKind, namespace string) []config.Config {
    	var configs []config.Config
    	for _, data := range fs.data {
    		if data.typ == typ {
    			if namespace != "" && data.ns == namespace {
    				continue
    			}
    			configs = append(configs, data.cfg)
    		}
    	}
    	return configs
    }
    
    func (fs *authzFakeStore) Delete(_ config.GroupVersionKind, _, _ string, _ *string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/BUILD

            "//tensorflow/core:lib",
            "//tensorflow/core/util/tensor_bundle:byteswaptensor",
        ]),
    )
    
    tf_cc_test(
        name = "reader_test",
        srcs = ["reader_test.cc"],
        data = [
            ":saved_model_test_files",
        ],
        linkstatic = 1,
        deps = [
            ":constants",
            ":metrics",
            ":reader",
            ":tag_constants",
            "//tensorflow/core:lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 05:43:44 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/ztunnelserver.go

    }
    
    func (z *ZtunnelConnection) sendMsgAndWaitForAck(msg *zdsapi.WorkloadRequest, fd *int) (*zdsapi.WorkloadResponse, error) {
    	data, err := proto.Marshal(msg)
    	if err != nil {
    		return nil, err
    	}
    	return z.sendDataAndWaitForAck(data, fd)
    }
    
    func (z *ZtunnelConnection) sendDataAndWaitForAck(data []byte, fd *int) (*zdsapi.WorkloadResponse, error) {
    	var rights []byte
    	if fd != nil {
    		rights = unix.UnixRights(*fd)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. cmd/tier.go

    	config.RLock()
    	defer config.RUnlock()
    	data := make([]byte, 4, config.Msgsize()+4)
    
    	// Initialize the header.
    	binary.LittleEndian.PutUint16(data[0:2], tierConfigFormat)
    	binary.LittleEndian.PutUint16(data[2:4], tierConfigVersion)
    
    	// Marshal the tier config
    	return config.MarshalMsg(data)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

        )
    
        private fun compareResults(
            data: SymbolPointersData,
            testServices: TestServices,
        ) {
            val actual = data.pointers.renderDeclarations()
            testServices.assertions.assertEqualsToTestDataFileSibling(actual)
    
            val actualPretty = data.pointersForPrettyRendering.renderDeclarations()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/syscall/syscall_aix.go

    }
    
    func ptracePoke(pid int, addr uintptr, data []byte) (count int, err error) {
    	n := 0
    	for len(data) > 0 {
    		bsize := len(data)
    		if bsize > 1024 {
    			bsize = 1024
    		}
    		err = ptrace64Ptr(PT_WRITE_BLOCK, int64(pid), int64(addr), bsize, unsafe.Pointer(&data[0]))
    		if err != nil {
    			return 0, err
    		}
    		addr += uintptr(bsize)
    		n += bsize
    		data = data[n:]
    	}
    	return n, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho_combine_dwarf.go

    }
    
    func (r loadCmdReader) ReadAt(offset int64, data interface{}) error {
    	if _, err := r.f.Seek(r.offset+offset, 0); err != nil {
    		return err
    	}
    	return binary.Read(r.f, r.order, data)
    }
    
    func (r loadCmdReader) WriteAt(offset int64, data interface{}) error {
    	if _, err := r.f.Seek(r.offset+offset, 0); err != nil {
    		return err
    	}
    	return binary.Write(r.f, r.order, data)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/crypto/tls/quic_test.go

    			}
    			a, b = b, a
    		case QUICSetReadSecret:
    			a.setReadSecret(e.Level, e.Suite, e.Data)
    		case QUICSetWriteSecret:
    			a.setWriteSecret(e.Level, e.Suite, e.Data)
    		case QUICWriteData:
    			if err := b.conn.HandleData(e.Level, e.Data); err != nil {
    				return err
    			}
    		case QUICTransportParameters:
    			a.gotParams = e.Data
    			if a.gotParams == nil {
    				a.gotParams = []byte{}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top