Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for small7 (0.67 sec)

  1. tensorflow/c/c_api.h

    // TF_AttrMetadata.list_size and `storage` would be at least
    // TF_AttrMetadata.total_size, obtained from TF_OperationGetAttrMetadata(oper,
    // attr_name).
    //
    // Fails if storage_size is too small to hold the requested number of strings.
    TF_CAPI_EXPORT extern void TF_OperationGetAttrStringList(
        TF_Operation* oper, const char* attr_name, void** values, size_t* lengths,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    	MOVD	$0, (R1)  // 3f0000f9
    	MOVW	$0, (R1)  // 3f0000b9
    	MOVWU	$0, (R1)  // 3f0000b9
    	MOVH	$0, (R1)  // 3f000079
    	MOVHU	$0, (R1)  // 3f000079
    	MOVB	$0, (R1)  // 3f000039
    	MOVBU	$0, (R1)  // 3f000039
    
    // small offset fits into instructions
    	MOVB	R1, 1(R2) // 41040039
    	MOVH	R1, 1(R2) // 41100078
    	MOVH	R1, 2(R2) // 41040079
    	MOVW	R1, 1(R2) // 411000b8
    	MOVW	R1, 4(R2) // 410400b9
    	MOVD	R1, 1(R2) // 411000f8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    // func call(stackArgsType *_type, f *FuncVal, stackArgs *byte, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs).
    // we don't have variable-sized frames, so we use a small number
    // of constant-sized-frame functions to encode a few bits of size in the pc.
    // Caution: ugly multiline assembly macros in your future!
    
    #define DISPATCH(NAME,MAXSIZE)		\
    	CMPQ	CX, $MAXSIZE;		\
    	JA	3(PC);			\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			if kubecontainer.ShouldContainerBeRestarted(&container, pod, podStatus) {
    				klog.V(3).InfoS("Container of pod is not in the desired state and shall be started", "containerName", container.Name, "pod", klog.KObj(pod))
    				changes.ContainersToStart = append(changes.ContainersToStart, idx)
    				if containerStatus != nil && containerStatus.State == kubecontainer.ContainerStateUnknown {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // streaming; see the GTEST_MESSAGE_ macro below.
      void operator=(const Message& message) const;
    
     private:
      // We put our data in a struct so that the size of the AssertHelper class can
      // be as small as possible.  This is important because gcc is incapable of
      // re-using stack space even for temporary variables, so every EXPECT_EQ
      // reserves stack space for another AssertHelper.
      struct AssertHelperData {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.assertUnorderedEvent(t, s.podXdsName("waypoint-ns-pod"), s.svcXdsName("waypoint-ns"))
    }
    
    // TODO(nmittler): Consider splitting this into multiple, smaller tests.
    func TestAmbientIndex_Policy(t *testing.T) {
    	s := newAmbientTestServer(t, testC, testNW)
    	setupPolicyTest(t, s)
    
    	selectorPolicyName := "selector"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // size of a static array:
    //
    //   GTEST_COMPILE_ASSERT_(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES,
    //                         content_type_names_incorrect_size);
    //
    // or to make sure a struct is smaller than a certain size:
    //
    //   GTEST_COMPILE_ASSERT_(sizeof(foo) < 128, foo_too_large);
    //
    // The second argument to the macro is the name of the variable. If
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    		// Second, in the Windows process listing during go test,
    		// the test shows up as test.test.exe, not pkgname.test.exe.
    		// That second one is a drawback, but it seems a small
    		// price to pay for the test running at all.
    		// If maintaining the list of bad words is too onerous,
    		// we could just do this always on Windows.
    		for _, bad := range windowsBadWords {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // streaming; see the GTEST_MESSAGE_ macro below.
      void operator=(const Message& message) const;
    
     private:
      // We put our data in a struct so that the size of the AssertHelper class can
      // be as small as possible.  This is important because gcc is incapable of
      // re-using stack space even for temporary variables, so every EXPECT_EQ
      // reserves stack space for another AssertHelper.
      struct AssertHelperData {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Store {t} ptr val mem) && t.Size() == 2 => (MOVHstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 1 => (MOVBstore ptr val mem)
    
    // Lowering moves
    
    // Load and store for small copies.
    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBZload src mem) mem)
    (Move [2] dst src mem) => (MOVHstore dst (MOVHZload src mem) mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top