Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 117 for small7 (0.1 sec)

  1. src/cmd/go/internal/modget/get.go

    	// by module path, so that we only revisit a given pathSet when the
    	// version of some module in its containingPackage list has been determined.
    	//
    	// However, N tends to be small, and most candidate sets will include only one
    	// candidate module (so they will be resolved in the first iteration), so for
    	// now we'll stick to the simple O(N²) approach.
    
    	resolved := 0
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    	}
    
    	pad := int64(cieReserve) + lengthFieldSize - int64(len(d.ldr.Data(fs)))
    
    	if pad < 0 {
    		Exitf("dwarf: cieReserve too small by %d bytes.", -pad)
    	}
    
    	internalExec := d.linkctxt.BuildMode == BuildModeExe && d.linkctxt.IsInternal()
    	addAddrPlus := loader.GenAddAddrPlusFunc(internalExec)
    
    	fsu.AddBytes(zeros[:pad])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			},
    			expected:                [][]candidate{{}},
    			expectedNumFilterCalled: []int32{0},
    		},
    		{
    			name: "medium priority pod is preempted, but lower priority one stays as it is small",
    			registerPlugins: []tf.RegisterPluginFunc{
    				tf.RegisterPluginAsExtensions(noderesources.Name, nodeResourcesFitFunc, "Filter", "PreFilter"),
    			},
    			nodeNames: []string{"node1", "node2"},
    			testPods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. 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)
  5. src/main/webapp/js/admin/bootstrap.min.js

    ss","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},De=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,Ie=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;function...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 58.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top