Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for Stopped (0.77 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tests/migrate_test.go

    		t.Fatal("should found renamed table")
    	}
    
    	DB.Migrator().DropTable("new_table_structs")
    
    	if DB.Migrator().HasTable(&NewTableStruct{}) {
    		t.Fatal("should not found dropped table")
    	}
    }
    
    func TestMigrateWithQuotedIndex(t *testing.T) {
    	if DB.Dialector.Name() != "mysql" {
    		t.Skip()
    	}
    
    	type QuotedIndexStruct struct {
    		gorm.Model
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			initPVCs:        []*v1.PersistentVolumeClaim{provisionedPVC},
    			apiPVCs:         []*v1.PersistentVolumeClaim{provisionedPVC},
    			shouldFail:      true,
    		},
    		"provisioning-pvc-selected-node-dropped": {
    			bindings:        []*BindingInfo{},
    			provisionedPVCs: []*v1.PersistentVolumeClaim{addProvisionAnn(provisionedPVC)},
    			initPVCs:        []*v1.PersistentVolumeClaim{provisionedPVC},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ppc64/asm.go

    	ts := ldr.LookupOrCreateSym("runtime.elf_"+s[1], 0)
    	r.SetSym(ts)
    	r.SetAdd(int64((n - minReg) * offMul))
    	firstUse = !ldr.AttrReachable(ts)
    	if firstUse {
    		// This function only becomes reachable now. It has been dropped from
    		// the text section (it was unreachable until now), it needs included.
    		ldr.SetAttrReachable(ts, true)
    	}
    	return ts, firstUse
    }
    
    func gentext(ctxt *ld.Link, ldr *loader.Loader) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top