Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 422 for strref (0.17 sec)

  1. tensorflow/cc/experimental/base/tests/tensorhandle_test.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/cc/experimental/base/public/tensorhandle.h"
    
    #include <stddef.h>
    #include <stdint.h>
    
    #include <memory>
    
    #include "tensorflow/c/tf_datatype.h"
    #include "tensorflow/cc/experimental/base/public/runtime.h"
    #include "tensorflow/cc/experimental/base/public/runtime_builder.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:56:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/AbstractZipEntry.java

                }
            });
        }
    
        @Override
        public ZipCompressionMethod getCompressionMethod() {
            switch (entry.getMethod()) {
                case java.util.zip.ZipEntry.STORED:
                    return ZipCompressionMethod.STORED;
                case java.util.zip.ZipEntry.DEFLATED:
                    return ZipCompressionMethod.DEFLATED;
                default:
                    return ZipCompressionMethod.OTHER;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cache/cache.go

    	// day.
    	Close() error
    
    	// OutputFile returns the path on disk where OutputID is stored.
    	//
    	// It's only called after a successful get or put call so it doesn't need
    	// to return an error; it's assumed that if the previous get or put succeeded,
    	// it's already on disk.
    	OutputFile(OutputID) string
    
    	// FuzzDir returns where fuzz files are stored.
    	FuzzDir() string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/finisher/finisher.go

    type ResultFunc func() (runtime.Object, error)
    
    // result stores the return values or panic from a ResultFunc function
    type result struct {
    	// object stores the response returned by the ResultFunc function
    	object runtime.Object
    	// err stores the error returned by the ResultFunc function
    	err error
    	// reason stores the reason from a panic thrown by the ResultFunc function
    	reason interface{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 14:20:33 UTC 2021
    - 6K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/base/public/tensor.h

    ==============================================================================*/
    
    #ifndef TENSORFLOW_CC_EXPERIMENTAL_BASE_PUBLIC_TENSOR_H_
    #define TENSORFLOW_CC_EXPERIMENTAL_BASE_PUBLIC_TENSOR_H_
    
    #include <stddef.h>
    #include <stdint.h>
    
    #include <functional>
    #include <memory>
    #include <vector>
    
    #include "tensorflow/c/tf_datatype.h"
    #include "tensorflow/c/tf_tensor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 28 20:10:33 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-pch-source/pch.h

    #ifndef PCH_H
    #define PCH_H
    #include <stdio.h>
    #include <stdlib.h>
    #include <assert.h>
    #include <math.h>
    #include <stdarg.h>
    #include <signal.h>
    #include <stddef.h>
    #include <errno.h>
    #include <time.h>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 209 bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/atomic_arm.s

    	B	·Load(SB)
    
    TEXT ·Storeint32(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·Storeint64(SB),NOSPLIT,$0-12
    	B	·Store64(SB)
    
    TEXT ·Storeuintptr(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·StorepNoWB(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·StoreRel(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·StoreReluintptr(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·Xaddint32(SB),NOSPLIT,$0-12
    	B	·Xadd(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_amd64.s

    	JMP	·Xchg64(SB)
    
    TEXT ·StorepNoWB(SB), NOSPLIT, $0-16
    	MOVQ	ptr+0(FP), BX
    	MOVQ	val+8(FP), AX
    	XCHGQ	AX, 0(BX)
    	RET
    
    TEXT ·Store(SB), NOSPLIT, $0-12
    	MOVQ	ptr+0(FP), BX
    	MOVL	val+8(FP), AX
    	XCHGL	AX, 0(BX)
    	RET
    
    TEXT ·Store8(SB), NOSPLIT, $0-9
    	MOVQ	ptr+0(FP), BX
    	MOVB	val+8(FP), AX
    	XCHGB	AX, 0(BX)
    	RET
    
    TEXT ·Store64(SB), NOSPLIT, $0-16
    	MOVQ	ptr+0(FP), BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes.go

    // around plaintext length because all stored items are small (less than 2 MB).  To prevent the
    // chance of the block cipher being accidentally re-used, it is not taken in as input.  Instead,
    // a new random key is generated and returned on every invocation of this function.  This key is
    // used as the input to the block cipher.  If the key is stored and retrieved at a later point,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. src/runtime/typekind.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "internal/abi"
    
    // isDirectIface reports whether t is stored directly in an interface value.
    func isDirectIface(t *_type) bool {
    	return t.Kind_&abi.KindDirectIface != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 356 bytes
    - Viewed (0)
Back to top