Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 127 for Honor (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/config_gradle.adoc

    Otherwise, the client VM will fork a new VM to run the actual build in order to honor the different settings.
    ====
    
    Certain tasks, like the `test` task, also fork additional JVM processes.
    You can configure these through the tasks themselves.
    They use `-Xmx512m` by default.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.cc

                remaining_incoming_ctrl_edges[user] == 0) {
              ready.push_back(user);
            }
          }
        }
    
        // Find the "best" operation to emit. We
        // (a) emit the terminator last.
        // (b) honor the priority function (as far as possible).
        // (c) preserve order within the ops of one dialect.
        auto better = [&](Operation* a, Operation* b) {
          if (a->hasTrait<OpTrait::IsTerminator>() !=
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http2/Settings.kt

      operator fun get(id: Int): Int = values[id]
    
      /** Returns the number of settings that have values assigned. */
      fun size(): Int = Integer.bitCount(set)
    
      // TODO: honor this setting.
      fun getEnablePush(defaultValue: Boolean): Boolean {
        val bit = 1 shl ENABLE_PUSH
        return if (bit and set != 0) values[ENABLE_PUSH] == 1 else defaultValue
      }
    
      fun getMaxConcurrentStreams(): Int {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    				MinDomains:         ptr.Deref(c.MinDomains, 1),   // If MinDomains is nil, we treat MinDomains as 1.
    				NodeAffinityPolicy: v1.NodeInclusionPolicyHonor,  // If NodeAffinityPolicy is nil, we treat NodeAffinityPolicy as "Honor".
    				NodeTaintsPolicy:   v1.NodeInclusionPolicyIgnore, // If NodeTaintsPolicy is nil, we treat NodeTaintsPolicy as "Ignore".
    			}
    			if pl.enableNodeInclusionPolicyInPodTopologySpread {
    				if c.NodeAffinityPolicy != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonIntegrationTest.groovy

            when:
            succeeds("runInDaemon")
    
            then:
            optionsVerifier.verifyAllOptions()
    
            and:
            assertWorkerExecuted("runInDaemon")
        }
    
        def "worker daemons honor different executable specified in fork options"() {
            def differentJvm = AvailableJavaHomes.differentJdkWithValidJre
            Assume.assumeNotNull(differentJvm)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. cmd/kube-scheduler/app/options/options.go

    		// If the --config arg is not specified, honor the deprecated as well as leader election CLI args.
    		o.ApplyDeprecated()
    		o.ApplyLeaderElectionTo(o.ComponentConfig)
    		c.ComponentConfig = *o.ComponentConfig
    	} else {
    		cfg, err := LoadConfigFromFile(logger, o.ConfigFile)
    		if err != nil {
    			return err
    		}
    		// If the --config arg is specified, honor the leader election CLI args only.
    		o.ApplyLeaderElectionTo(cfg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. docs/contribute/code_of_conduct.md

    has been harmed or offended, it is our responsibility to listen carefully and respectfully, and do
    our best to right the wrong.
    
    Although this list cannot be exhaustive, we explicitly honor diversity in age, culture, ethnicity,
    gender identity or expression, language, national origin, political beliefs, profession, race,
    religion, sexual orientation, socioeconomic status, and technical ability. We will not tolerate
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  8. internal/config/scanner/scanner.go

    		return cfg, fmt.Errorf("unknown value: '%s'", idleSpeed)
    	}
    
    	// Stick to loading deprecated config/env if they are already set, and the Speed value
    	// has not been changed from its "default" value, if it has been changed honor new settings.
    	if kvs.GetWithDefault(Speed, DefaultKVS) == "default" {
    		if kvs.Get(Delay) != "" && kvs.Get(MaxWait) != "" {
    			if err = lookupDeprecatedScannerConfig(kvs, &cfg); err != nil {
    				return cfg, err
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    		},
    		{
    			// Honor extended resource if the pod requests.
    			// For both nodes: cpuScore and memScore are 50.
    			// In terms of extended resource score:
    			// - node1 get: 2 / 4 * 100 = 50
    			// - node2 get: 2 / 10 * 100 = 20
    			// So the final scores are:
    			// - node1: (50 + 50 + 50) / 3 = 50
    			// - node2: (50 + 50 + 20) / 3 = 40
    			name: "honor extended resource if the pod request",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    					{key: "node", value: "node-b"}: 2,
    					{key: "node", value: "node-x"}: 1,
    				},
    			},
    			enableNodeInclusionPolicy: true,
    		},
    		{
    			name: "two node inclusion Constraints, zone: honor/honor, node: honor/ignore",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, &honorPolicy, nil).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
Back to top