Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 233 for for3 (0.07 sec)

  1. src/net/http/serve_test.go

    func TestServeMuxHandlerRedirects(t *testing.T) {
    	setParallel(t)
    	mux := NewServeMux()
    	for _, e := range serveMuxRegister {
    		mux.Handle(e.pattern, e.h)
    	}
    
    	for _, tt := range serveMuxTests2 {
    		tries := 1 // expect at most 1 redirection if redirOk is true.
    		turl := tt.url
    		for {
    			u, e := url.Parse(turl)
    			if e != nil {
    				t.Fatal(e)
    			}
    			r := &Request{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "kind": {
                "default": "",
                "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
                "type": "string"
              },
              "name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  3. samples/bookinfo/src/reviews/reviews-application/src/main/webapp/index.html

      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.
    -->
    <html>
    <body>
        <h1>Welcome to your Liberty Application</h1>
        <p>Thanks for generating this project using the app accelerator.  Please see below for some extra information on each of the technologies you chose</p>
        <!-- 
      Copyright (c) 2016 IBM Corp.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 196.5K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    	// only valid until the next Scan/Close. But the TODO is that
    	// for a lot of drivers, this copy will be unnecessary. We
    	// should provide an optional interface for drivers to
    	// implement to say, "don't worry, the []bytes that I return
    	// from Next will not be modified again." (for instance, if
    	// they were obtained from the network anyway) But for now we
    	// don't care.
    	defer r.rows.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    		}
    	}
    
    	// Assume that of all the types we saw during the tests,
    	// if there wasn't an explicit entry for a conversion between
    	// a pair of types, then it's not to be allowed. This checks for
    	// things like 'int64' converting to '*int'.
    	for t1 := range all {
    		for t2 := range all {
    			expectOK := t1 == t2 || canConvert[[2]Type{t1, t2}] || t2.Kind() == Interface && t2.NumMethod() == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal_test.go

    	go hpaController.Run(ctx, 5)
    
    	tc.Lock()
    	shouldWait := tc.verifyEvents
    	tc.Unlock()
    
    	if shouldWait {
    		// We need to wait for events to be broadcasted (sleep for longer than record.sleepDuration).
    		timeoutTime := time.Now().Add(2 * time.Second)
    		for now := time.Now(); timeoutTime.After(now); now = time.Now() {
    			sleepUntil := timeoutTime.Sub(now)
    			select {
    			case <-tc.processed:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    const (
    	loadBalancerWidth = 16
    
    	// labelNodeRolePrefix is a label prefix for node roles
    	// It's copied over to here until it's merged in core: https://github.com/kubernetes/kubernetes/pull/39112
    	labelNodeRolePrefix = "node-role.kubernetes.io/"
    
    	// nodeLabelRole specifies the role of a node
    	nodeLabelRole = "kubernetes.io/role"
    )
    
    // AddHandlers adds print handlers for default Kubernetes types dealing with internal versions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Get input and output tensor indices for the subgraph.
      std::vector<int32_t> inputs, outputs;
      for (auto arg : bb.getArguments()) {
        inputs.push_back(tensor_index_map[arg]);
      }
      for (auto result : bb.getTerminator()->getOperands()) {
        outputs.push_back(tensor_index_map[result]);
      }
      for (const auto& [from, to] : control_edges) {
        for (int what : {from, to}) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_control_test.go

    		}
    		if err := test.validateUpdate(set, pods); err != nil {
    			for i := range pods {
    				t.Log(pods[i].Name)
    			}
    			t.Fatalf("%s: %s", test.name, err)
    
    		}
    		claims, err = om.claimsLister.PersistentVolumeClaims(set.Namespace).List(selector)
    		if err != nil {
    			t.Fatalf("%s: %s", test.name, err)
    		}
    		for _, claim := range claims {
    			for _, ref := range claim.GetOwnerReferences() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  10. cmd/metrics-v2.go

    		VariableLabels:       make(map[string]string, len(m.VariableLabels)),
    		Histogram:            make(map[string]uint64, len(m.Histogram)),
    	}
    	for k, v := range m.StaticLabels {
    		metric.StaticLabels[k] = v
    	}
    	for k, v := range m.VariableLabels {
    		metric.VariableLabels[k] = v
    	}
    	for k, v := range m.Histogram {
    		metric.Histogram[k] = v
    	}
    	return metric
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
Back to top