Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 102 for startm (0.49 sec)

  1. src/net/http/server.go

    )
    
    func (c *conn) setState(nc net.Conn, state ConnState, runHook bool) {
    	srv := c.server
    	switch state {
    	case StateNew:
    		srv.trackConn(c, true)
    	case StateHijacked, StateClosed:
    		srv.trackConn(c, false)
    	}
    	if state > 0xff || state < 0 {
    		panic("internal error")
    	}
    	packedState := uint64(time.Now().Unix()<<8) | uint64(state)
    	c.curState.Store(packedState)
    	if !runHook {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    			// so that reconciler can clean up volume when needed. However, volume resize failed,
    			// we should not mark the volume as mounted to avoid pod starts using it.
    			// Considering the above situations, we mark volume as uncertain here so that reconciler will trigger
    			// volume tear down when pod is deleted, and also makes sure pod will not start using it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            if (attr.list().s_size() > 0) {
              auto start = flex_builder->StartVector(key);
              for (const std::string& v : attr.list().s()) {
                flex_builder->Add(v);
              }
              flex_builder->EndVector(start, /*typed=*/true, /*fixed=*/false);
            } else if (attr.list().i_size() > 0) {
              auto start = flex_builder->StartVector(key);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. src/crypto/x509/verify_test.go

    		roots:         []string{startComRoot},
    		currentTime:   1302726541,
    
    		// The StartCom root is not trusted by Windows when the default
    		// ServerAuth EKU is requested.
    		systemSkip: true,
    
    		expectedChains: [][]string{
    			{"dnssec-exp", "StartCom Class 1", "StartCom Certification Authority"},
    		},
    	},
    	{
    		name:          "dnssec-exp/AnyEKU",
    		leaf:          dnssecExpLeaf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. pkg/apis/apps/validation/validation_test.go

    		},
    	}, {
    		name: "invalid ordinals.start",
    		set: mkStatefulSet(&validPodTemplate,
    			tweakReplicas(3),
    			tweakOrdinalsStart(-2),
    		),
    		errs: field.ErrorList{
    			field.Invalid(field.NewPath("spec", "ordinals.start"), nil, ""),
    		},
    	},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Started data update process. */
        public static final String SUCCESS_started_data_update = "{success.started_data_update}";
    
        /** The key of the message: Started reindexing. */
        public static final String SUCCESS_reindex_started = "{success.reindex_started}";
    
        /** The key of the message: Bulk process is started. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    					ContainerID: emptyContainerID,
    				}},
    			},
    		},
    		// For terminated container:
    		// * If there is no recent start error record, State should be Terminated, LastTerminationState should be retrieved from
    		// second latest terminated status;
    		// * If there is recent start error record, State should be Waiting, LastTerminationState should be retrieved from latest
    		// terminated status;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    namespace {
    
    // Compute the length of a range (1-D) tensor given `start`, `limit`, `delta`.
    // Template parameter `FloatOrInt` must be standard C integer or floating-point
    // types.
    template <typename FloatOrInt>
    int GetLengthOfRange(FloatOrInt start, FloatOrInt limit, FloatOrInt delta) {
      // Refer to the implementation in
      // tensorflow/lite/kernels/range.cc.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {})).ts
    
    	var mu sync.Mutex
    	var start, done bool
    	trace := &httptrace.ClientTrace{
    		TLSHandshakeStart: func() {
    			mu.Lock()
    			defer mu.Unlock()
    			start = true
    		},
    		TLSHandshakeDone: func(s tls.ConnectionState, err error) {
    			mu.Lock()
    			defer mu.Unlock()
    			done = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //	testfunc        testing functions
    //	vcs             controlling version control with GOVCS
    //
    // Use "go help <topic>" for more information about that topic.
    //
    // # Start a bug report
    //
    // Usage:
    //
    //	go bug
    //
    // Bug opens the default browser and starts a new bug report.
    // The report includes useful system information.
    //
    // # Compile packages and dependencies
    //
    // Usage:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top