Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 121 for Stopped (3.44 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	// should be delivered to the watcher can be created before it will
    	// block the implementation and as a result force the watcher to be
    	// closed (as otherwise events would have to be dropped).
    	// For now, this number is smallest for Cacher and it equals 21 for it.
    	totalPods := 21
    	for i := 0; i < totalPods; i++ {
    		out := &example.Pod{}
    		pod := &example.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	// with random data before the first server handshake.
    	//
    	// Deprecated: if this field is left at zero, session ticket keys will be
    	// automatically rotated every day and dropped after seven days. For
    	// customizing the rotation schedule or synchronizing servers that are
    	// terminating connections for the same host, use SetSessionTicketKeys.
    	SessionTicketKey [32]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

        fragile and rarely-used.
     *  New: Don't fall back to common name (CN) verification for hostnames. This
        behavior was deprecated with RFC 2818 in May 2000 and was recently dropped
        from major web browsers.
     *  New: Honor the `Retry-After` response header. HTTP 503 (Unavailable)
        responses are retried automatically if this header is present and its delay
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    	// saved state does not include the state of phi ops in the block.
    	startRegs [][]startReg
    
    	// startRegsMask is a mask of the registers in startRegs[curBlock.ID].
    	// Registers dropped from startRegsMask are later synchronoized back to
    	// startRegs by dropping from there as well.
    	startRegsMask regMask
    
    	// spillLive[blockid] is the set of live spills at the end of each block
    	spillLive [][]ID
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * * [h2 with prior knowledge(cleartext only)][rfc_7540_34]
         *
         * **This is an evolving set.** Future releases include support for transitional
         * protocols. The http/1.1 transport will never be dropped.
         *
         * If multiple protocols are specified, [ALPN][alpn] will be used to negotiate a transport.
         * Protocol negotiation is only attempted for HTTPS URLs.
         *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

            // EmptyTensorList -> TensorListPushBack -> TensorListPopBack -> Op
            //                                                  |
            //                                        (Discard popped list)
            //
            // Would have been reduced to "Const -> Op" without this filter.
            // However since we are only allowed to specify the filter at the "Node"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    		}
    
    		// Set a default filter chain. This allows us to avoid issues where
    		// traffic starts to match a filter chain but then doesn't match latter criteria, leading to
    		// dropped requests. See https://github.com/istio/istio/issues/26079 for details.
    		// If there are multiple filter chains and a match all chain, move it to DefaultFilterChain
    		// This ensures it will always be used as the fallback.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    				var unused bool
    				if ld.requirements.pruning == unpruned {
    					// m is unused if it was dropped from the module graph entirely. If it
    					// was only demoted from direct to indirect, it may still be in use via
    					// a transitive import.
    					unused = mg.Selected(m.Path) == "none"
    				} else {
    					// m is unused if it was dropped from the roots. If it is still present
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller_test.go

    	assert.Len(t, result, 2)
    	for _, epSlice := range result {
    		if epSlice.Name == "epSlice1" {
    			t.Errorf("Expected EndpointSlice marked for deletion to be dropped.")
    		}
    	}
    
    	// We don't use endpointSlices and instead check manually for equality, because
    	// `dropEndpointSlicesPendingDeletion` mutates the slice it receives, so it's easy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

            return failure();
          }
    
          start_indices[i + 1] = crop_start;
          slice_sizes[i + 1] -= crop_start + crop_end;
    
          if (slice_sizes[i + 1] < 0) {
            op.emitOpError() << "Cropped size must be non-negative: start: "
                             << crop_start << " end: " << crop_end << " size "
                             << reshaped_permuted_shape[1 + i];
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top