Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 260 for weights (0.15 sec)

  1. src/cmd/gofmt/gofmt.go

    // (if any) and will cause a nonzero final exit code.
    func (s *sequencer) Add(weight int64, f func(*reporter) error) {
    	if weight < 0 || weight > s.maxWeight {
    		weight = s.maxWeight
    	}
    	if err := s.sem.Acquire(context.TODO(), weight); err != nil {
    		// Change the task from "execute f" to "report err".
    		weight = 0
    		f = func(*reporter) error { return err }
    	}
    
    	r := &reporter{prev: s.prev}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. pilot/pkg/xds/mesh_network_test.go

    				"": {xdstest.LocLbEpInfo{
    					LbEps: []xdstest.LbEpInfo{
    						{Address: "1.2.3.4", Weight: 1},
    						{Address: "2.2.2.2", Weight: 2},
    					},
    					Weight: 3,
    				}},
    				"v1": {xdstest.LocLbEpInfo{
    					LbEps: []xdstest.LbEpInfo{
    						{Address: "1.2.3.4", Weight: 1},
    						{Address: "2.2.2.2", Weight: 1},
    					},
    					Weight: 2,
    				}},
    				"v2": {xdstest.LocLbEpInfo{
    					LbEps: []xdstest.LbEpInfo{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. src/net/lookup_plan9.go

    		if len(f) < 6 {
    			continue
    		}
    		port, _, portOk := dtoi(f[4])
    		priority, _, priorityOk := dtoi(f[3])
    		weight, _, weightOk := dtoi(f[2])
    		if !(portOk && priorityOk && weightOk) {
    			continue
    		}
    		addrs = append(addrs, &SRV{absDomainName(f[5]), uint16(port), uint16(priority), uint16(weight)})
    		cname = absDomainName(f[0])
    	}
    	byPriorityWeight(addrs).sort()
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/v1/default_plugins_test.go

    						{Name: names.PodTopologySpread, Weight: ptr.To[int32](2)},
    						{Name: names.InterPodAffinity, Weight: ptr.To[int32](2)},
    						{Name: names.DefaultPreemption},
    						{Name: names.NodeResourcesBalancedAllocation, Weight: ptr.To[int32](1)},
    						{Name: names.ImageLocality, Weight: ptr.To[int32](1)},
    						{Name: names.DefaultBinder},
    					},
    				},
    			},
    		},
    		{
    			name: "Feature gate DynamicResourceAllocation enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/css/fonts.css

      font-style: italic;
      font-weight: 100;
      src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(https://fonts.gstatic.com/s/roboto/v19/KFOiCnqEu92Fr1Mu51QrEz0dL-vwnYh2eg.woff2) format('woff2');
      unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
    }
    /* cyrillic */
    @font-face {
      font-family: 'Roboto';
      font-style: italic;
      font-weight: 100;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/scheme/scheme_test.go

          resources:
            - name: cpu       # default weight(1) will be set.
            - name: memory    # weight 0 will be replaced by 1.
              weight: 0
            - name: scalar0
              weight: 1
            - name: scalar1   # default weight(1) will be set for scalar1
            - name: scalar2   # weight 0 will be replaced by 1.
              weight: 0
            - name: scalar3
              weight: 2
    `),
    			wantProfiles: []config.KubeSchedulerProfile{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/validation/validation_pluginargs_test.go

    					{
    						Name:   "cpu",
    						Weight: 1,
    					},
    					{
    						Name:   "memory",
    						Weight: 1,
    					},
    				},
    			},
    		},
    		"invalid config": {
    			args: &config.NodeResourcesBalancedAllocationArgs{
    				Resources: []config.ResourceSpec{
    					{
    						Name:   "cpu",
    						Weight: 2,
    					},
    					{
    						Name:   "memory",
    						Weight: 1,
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/css/all.css

        text-decoration: none;
        font-weight: 300
    }
    
    a:hover, a:focus {
        color: #de7d40;
        text-decoration: underline;
        font-weight: 300
    }
    
    a.disabled {
        color: #444;
        text-decoration: none;
        font-weight: 300
    }
    
    a.active {
        color: #de7d40;
        text-decoration: none;
        font-weight: 300
    }
    
    table, th, td, tr {
        padding: .5em
    }
    
    table {
        margin-left: 1em;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    			w = t.FlatValue()
    		}
    		if w == 0 {
    			continue
    		}
    		weight := b.config.FormatValue(w)
    		nodelets += fmt.Sprintf(`N%d_%d [label = "%s" id="N%d_%d" fontsize=8 shape=box3d tooltip="%s"]`+"\n", nodeID, i, t.Name, nodeID, i, weight)
    		nodelets += fmt.Sprintf(`N%d -> N%d_%d [label=" %s" weight=100 tooltip="%s" labeltooltip="%s"]`+"\n", nodeID, nodeID, i, weight, weight, weight)
    		if nts := lnts[t.Name]; nts != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

      BroadcastBatchDimensionsForBatchMatMul(builder, loc, input, weight);
    
      // Both input and weight have the same rank after broadcasting.
      ShapedType weight_shape = mlir::cast<ShapedType>(weight.getType());
      int num_batch_dim = weight_shape.getRank() - 2;
    
      // Transpose and constant-fold the weight if needed.
      if (adj_y.getValue()) {
        SmallVector<int32_t> perm_values(num_batch_dim);
        absl::c_iota(perm_values, 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top