Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 112 for small7 (0.25 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    			p = s.Prog(ppc64.AMOVD)
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = 16
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REGTMP
    
    			// Don't adding padding for
    			// alignment with small iteration
    			// counts.
    			if ctr > 3 {
    				p = s.Prog(obj.APCALIGN)
    				p.From.Type = obj.TYPE_CONST
    				p.From.Offset = 16
    			}
    
    			// Generate 16 byte loads and stores.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

      // Add a config_proto attr, to trigger grappler graph rewrites in the current
      // eager runtime.
      if (enable_grappler) {
        tensorflow::ConfigProto config;
        // Do not skip grappler optimization even for small graphs.
        config.mutable_graph_options()
            ->mutable_rewrite_options()
            ->set_min_graph_nodes(-1);
        string serialized_config;
        ASSERT_TRUE(config.SerializeToString(&serialized_config));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    	// during profiling signals or during a crash.
    	//
    	// If neither unwindPrintErrors or unwindSilentErrors are set, unwinding
    	// performs extra consistency checks and throws on any error.
    	//
    	// Note that there are a small number of fatal situations that will throw
    	// regardless of unwindPrintErrors or unwindSilentErrors.
    	unwindPrintErrors unwindFlags = 1 << iota
    
    	// unwindSilentErrors silently ignores errors during unwinding.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/asm5.go

    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/MapMakerInternalMap.java

        int threshold;
    
        /** The per-segment table. */
        @CheckForNull volatile AtomicReferenceArray<E> table;
    
        /**
         * A counter of the number of reads since the last write, used to drain queues on a small
         * fraction of read operations.
         */
        final AtomicInteger readCount = new AtomicInteger();
    
        Segment(MapMakerInternalMap<K, V, E, S> map, int initialCapacity) {
          this.map = map;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"continue":     ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrEntityTooSmall: {
    		Code:           "EntityTooSmall",
    		Description:    "Your proposed upload is smaller than the minimum allowed object size.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrEntityTooLarge: {
    		Code:           "EntityTooLarge",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top