Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 398 for pread (0.05 sec)

  1. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    			// | P{foo} | P{foo, bar} |        | P{foo} P{bar} |
    			// +--------+-------------+--------+---------------+
    			// For the first constraint (zone): the matching pods spread as 2/2/1/1
    			// For the second constraint (node): the matching pods spread as 0/1/0/1
    			name: "two Constraints on zone and node, with different labelSelectors",
    			pod: st.MakePod().Name("p").Label("foo", "").Label("bar", "").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3InstanceInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "command.execute(new String[] {'FOOBAR=foobar'}, null)", "", "foobar"],
                [fromString(), "command.execute(null, file('$pwd'))", pwd, ""],
                // Spread calls
                [fromString(), "command.execute(*[new String[] {'FOOBAR=foobar'}, file('$pwd')])", pwd, "foobar"],
                [fromString(), "command.execute(*[['FOOBAR=foobar'], file('$pwd')])", pwd, "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/types_pluginargs.go

    // PodTopologySpreadArgs holds arguments used to configure the PodTopologySpread plugin.
    type PodTopologySpreadArgs struct {
    	metav1.TypeMeta
    
    	// DefaultConstraints defines topology spread constraints to be applied to
    	// Pods that don't define any in `pod.spec.topologySpreadConstraints`.
    	// `.defaultConstraints[*].labelSelectors` must be empty, as they are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/scoring.go

    			pod.Labels,
    			v1.ScheduleAnyway,
    		)
    		if err != nil {
    			return fmt.Errorf("obtaining pod's soft topology spread constraints: %w", err)
    		}
    	} else {
    		s.Constraints, err = pl.buildDefaultConstraints(pod, v1.ScheduleAnyway)
    		if err != nil {
    			return fmt.Errorf("setting default soft topology spread constraints: %w", err)
    		}
    	}
    	if len(s.Constraints) == 0 {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

    // TODO(b/112856632): We can, in theory, support Read->Read and Write->Write
    // dependencies.
    //
    // Specifically the result computed by this analysis contains the edge {W, R}
    // iff all of these hold true:
    //
    //   - In the graph (g - {edges from NextIteration to Merge}) there is a path
    //     from W to R.
    //   - IsEdgeSafe(W, R) == False [defined below]
    //   - W != R (note: some resource operations both read from and write to
    //     resource variables).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			// only node-a and node-y are considered, so pods spread as 2/~1~/~0~/3
    			// ps: '~num~' is a markdown symbol to denote a crossline through 'num'
    			// but in this unit test, we don't run NodeAffinity/TaintToleration Predicate, so node-b and node-x are
    			// still expected to be fits;
    			// the fact that node-a fits can prove the underlying logic works
    			name: "incoming pod has nodeAffinity, pods spread as 2/~1~/~0~/3, hence node-a fits",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec3InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "Runtime.getRuntime().exec(command, null, file('$pwd'))", pwd, ""],
                [fromString(), "Runtime.getRuntime().exec(command, null, null)", "", ""],
                // Spread calls
                [fromString(), "Runtime.getRuntime().exec(*[command, new String[] {'FOOBAR=foobar'}, file('$pwd')])", pwd, "foobar"],
                // Typed nulls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3QualifiedStaticInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "ProcessGroovyMethods.execute(command, new String[] {'FOOBAR=foobar'}, null)", "", "foobar"],
                [fromString(), "ProcessGroovyMethods.execute(command, null, file('$pwd'))", pwd, ""],
                // Spread calls
                [fromString(), "ProcessGroovyMethods.execute(*[command, new String[] {'FOOBAR=foobar'}, file('$pwd')])", pwd, "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    // preFilterState computed at PreFilter and used at Filter.
    // It combines TpKeyToCriticalPaths and TpPairToMatchNum to represent:
    // (1) critical paths where the least pods are matched on each spread constraint.
    // (2) number of pods matched on each spread constraint.
    // A nil preFilterState denotes it's not set at all (in PreFilter phase);
    // An empty preFilterState object denotes it's a legit state and is set in PreFilter phase.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (1)
  10. src/time/zoneinfo_read.go

    		size = 8
    	}
    
    	// Transition times.
    	txtimes := dataIO{d.read(n[NTime] * size), false}
    
    	// Time zone indices for transition times.
    	txzones := d.read(n[NTime])
    
    	// Zone info structures
    	zonedata := dataIO{d.read(n[NZone] * 6), false}
    
    	// Time zone abbreviations.
    	abbrev := d.read(n[NChar])
    
    	// Leap-second time pairs
    	d.read(n[NLeap] * (size + 4))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top