Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for START (0.05 sec)

  1. cmd/metrics-v2.go

    	}
    }
    
    func getMinIOProcessStartTimeMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: processSubsystem,
    		Name:      startTime,
    		Help:      "Start time for MinIO process per node, time in seconds since Unix epoc",
    		Type:      gaugeMetric,
    	}
    }
    
    func getMinIOProcessUptimeMD() MetricDescription {
    	return MetricDescription{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    			response <- ""
    			return
    		}
    		response <- string(body)
    	}
    
    	// Start a request. The server will block on getting conn.RemoteAddr.
    	response1c := make(chan string, 1)
    	go fetch(1, response1c)
    
    	// Wait for the server to accept it; grab the connection.
    	conn1 := <-conns
    
    	// Start another request and grab its connection
    	response2c := make(chan string, 1)
    	go fetch(2, response2c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

            operand_type.cloneWith({static_cast<int64_t>(1)}, i64_type);
    
        SmallVector<Value> start_indices(rank);
        for (auto [i, start_index] : llvm::enumerate(op.getStartIndices())) {
          // Start indices should be casted from tensor<i64> to tensor<1xi64>.
          auto cast = rewriter.create<TFL::BitcastOp>(
              op->getLoc(), single_element_type, start_index);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/internal/obj/arm64/asm7.go

    			if cmp(j, i) {
    				xcmp[i][j] = true
    			}
    		}
    	}
    
    	sort.Sort(ocmp(optab))
    	for i := 0; i < len(optab); i++ {
    		as, start := optab[i].as, i
    		for ; i < len(optab)-1; i++ {
    			if optab[i+1].as != as {
    				break
    			}
    		}
    		t := optab[start : i+1]
    		oprangeset(as, t)
    		switch as {
    		default:
    			ctxt.Diag("unknown op in build: %v", as)
    			ctxt.DiagFlush()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_control_test.go

    	simpleSetFn := func() *apps.StatefulSet {
    		statefulSet := newStatefulSet(3)
    		statefulSet.Spec.Ordinals = &apps.StatefulSetOrdinals{Start: int32(2)}
    		return statefulSet
    	}
    
    	testCases := []struct {
    		fn  func(*testing.T, *apps.StatefulSet, invariantFunc)
    		obj func() *apps.StatefulSet
    	}{
    		{CreatesPodsWithStartOrdinal, simpleSetFn},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    					Value: "8081",
    				},
    				{
    					Name:  "KUBERNETES_PORT_8081_TCP_ADDR",
    					Value: "1.2.3.1",
    				},
    			},
    		},
    		{
    			name:               "configmap allow prefix to start with a digital",
    			ns:                 "test1",
    			enableServiceLinks: &falseValue,
    			enableRelaxedEnvironmentVariableValidation: true,
    			container: &v1.Container{
    				EnvFrom: []v1.EnvFromSource{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    			return
    		}
    		controllers[e.Regarding.Name] = e.ReportingController
    		wg.Done()
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer stopFn()
    
    	// Run scheduler.
    	informerFactory.Start(ctx.Done())
    	informerFactory.WaitForCacheSync(ctx.Done())
    	if err = sched.WaitForHandlersSync(ctx); err != nil {
    		t.Fatalf("Handlers failed to sync: %v: ", err)
    	}
    	go sched.Run(ctx)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. src/net/http/server.go

    	// copy method.
    	rf, ok := w.conn.rwc.(io.ReaderFrom)
    	if !ok {
    		return io.CopyBuffer(writerOnly{w}, src, buf)
    	}
    
    	// Copy the first sniffLen bytes before switching to ReadFrom.
    	// This ensures we don't start writing the response before the
    	// source is available (see golang.org/issue/5660) and provides
    	// enough bytes to perform Content-Type sniffing when required.
    	if !w.cw.wroteHeader {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    			}
    		case 2:
    		}
    	}
    	db := newTestDBConnector(t, &fakeConnector{waiter: waiter}, "people")
    	defer closeDB(t, db)
    
    	db.SetMaxOpenConns(max)
    
    	// First saturate the connection pool.
    	// Then start new requests for a connection that is canceled after it is requested.
    
    	state = 1
    	for i := 0; i < max; i++ {
    		go func() {
    			rows, err := db.Query("SELECT|people|name,photo|")
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top