Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 127 for Honor (0.04 sec)

  1. 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)
  2. src/encoding/json/indent.go

    // characters inside string literals changed to \u003c, \u003e, \u0026, \u2028, \u2029
    // so that the JSON will be safe to embed inside HTML <script> tags.
    // For historical reasons, web browsers don't honor standard HTML
    // escaping within <script> tags, so an alternative JSON encoding must be used.
    func HTMLEscape(dst *bytes.Buffer, src []byte) {
    	dst.Grow(len(src))
    	dst.Write(appendHTMLEscape(dst.AvailableBuffer(), src))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http/HttpHeaders.kt

        responseCode != HTTP_NOT_MODIFIED
      ) {
        return true
      }
    
      // If the Content-Length or Transfer-Encoding headers disagree with the response code, the
      // response is malformed. For best compatibility, we honor the headers.
      if (headersContentLength() != -1L ||
        "chunked".equals(header("Transfer-Encoding"), ignoreCase = true)
      ) {
        return true
      }
    
      return false
    }
    
    @Deprecated(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

    )
    
    
    internal
    fun jvmGetterSignatureFor(propertyName: String, desc: String): JvmMethodSignature =
        // Accessors honor the kotlin property jvm interop convention.
        // The only difference with JavaBean 1.01 is to prefer `get` over `is` for boolean properties.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/least_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: (10 - 2) / 10 * 100 = 80
    			// So the final scores are:
    			// - node1: (50 + 50 + 50) / 3 = 50
    			// - node2: (50 + 50 + 80) / 3 = 60
    			name: "honor extended resource if the pod requests",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/deleted_kinds.go

    }
    
    func (e *resourceExpirationEvaluator) shouldServe(gv schema.GroupVersion, versioner runtime.ObjectVersioner, resourceServingInfo rest.Storage) bool {
    	internalPtr := resourceServingInfo.New()
    
    	target := gv
    	// honor storage that overrides group version (used for things like scale subresources)
    	if versionProvider, ok := resourceServingInfo.(rest.GroupVersionKindProvider); ok {
    		target = versionProvider.GroupVersionKind(target).GroupVersion()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 03:02:49 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/split_into_island_per_op_pass.cc

            "fetch_op");
        signalPassFailure();
        return;
      }
    
      tf_executor::IslandOp island_op =
          dyn_cast<tf_executor::IslandOp>(graph_op.GetBody().front());
    
      // We don't need to honor *any* control deps that are already placed on
      // islands. Drop them now in this pass - a following pass will use side
      // effect analysis to completely explain and apply correct control deps.
      island_op.getControl().dropAllUses();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. internal/http/server.go

    		if atomic.LoadUint32(&srv.inShutdown) != 0 {
    			// To indicate disable keep-alive, server is shutting down.
    			w.Header().Set("Connection", "close")
    
    			// Add 1 minute retry header, incase-client wants to honor it
    			w.Header().Set(RetryAfter, "60")
    
    			w.WriteHeader(http.StatusServiceUnavailable)
    			w.Write([]byte(http.ErrServerClosed.Error()))
    			return
    		}
    
    		atomic.AddInt32(&srv.requestCount, 1)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 09 21:25:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_1x.md

     * Fix: Support SPDY header blocks with trailing bytes.
     * Fix: Allow `;` as separator for `Cache-Control` header.
     * Fix: Correct bug where HTTPS POST requests were always automatically buffered.
     * Fix: Honor read timeout when parsing SPDY headers.
    
    
    ## Version 1.2.1
    
    _2013-08-23_
    
     * Resolve issue with 'jar-with-dependencies' artifact creation.
     * Fix: Support empty SPDY header values.
    
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    		attrWithOverride := &attrWithResourceOverride{Attributes: attr}
    		equivalents := o.GetEquivalentResourceMapper().EquivalentResourcesFor(attr.GetResource(), attr.GetSubresource())
    		// honor earlier rules first
    	OuterLoop:
    		for _, r := range h.GetRules() {
    			// see if the rule matches any of the equivalent resources
    			for _, equivalent := range equivalents {
    				if equivalent == attr.GetResource() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top