Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for wbMove (0.22 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    	}, v1.ResourceList{
    		v1.ResourceCPU:    *(resource.NewQuantity(cpu, resource.DecimalSI)),
    		v1.ResourceMemory: *(resource.NewQuantity(mem, resource.DecimalSI)),
    	})
    
    	// create several nodes which cannot schedule the above pod
    	var nodes []*v1.Node
    	var objects []runtime.Object
    	for i := 0; i < 100; i++ {
    		uid := fmt.Sprintf("node%v", i)
    		node := v1.Node{
    			ObjectMeta: metav1.ObjectMeta{Name: uid, UID: types.UID(uid)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller_test.go

    		oldPod.Status.Conditions = []v1.PodCondition{{Type: v1.PodReady, Status: v1.ConditionTrue}}
    		manager.podStore.Add(oldPod)
    
    		// mark the last old pod as deleted, which should trigger a creation above surge
    		if i == 4 {
    			thirty := int64(30)
    			timestamp := metav1.Time{Time: time.Unix(1+thirty, 0)}
    			oldPod.DeletionGracePeriodSeconds = &thirty
    			oldPod.DeletionTimestamp = &timestamp
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	if err != nil {
    		t.Fatalf("Get: %v", err)
    	}
    	defer res.Body.Close()
    
    	// Just a sanity check that we at least get the response. The real
    	// test here is that the "defer afterTest" above doesn't find any
    	// leaked goroutines.
    	if got, want := res.Header.Get("Foo"), "Bar"; got != want {
    		t.Errorf("Foo header = %q; want %q", got, want)
    	}
    }
    
    type closerFunc func() error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		rw.Write(res)
    	})
    	ln := &oneConnListener{conn: conn}
    	go Serve(ln, handler)
    	<-conn.closec
    	if b.N != handled {
    		b.Errorf("b.N=%d but handled %d", b.N, handled)
    	}
    }
    
    // same as above, but representing the most simple possible request
    // and handler. Notably: the handler does not call rw.Header().
    func BenchmarkServerFakeConnWithKeepAliveLite(b *testing.B) {
    	b.ReportAllocs()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                  permutation));
          reverse_filter_in = filter_transposed;
        }
    
        // Lets hard-code the reverse indexes to be {0, 1} as the expectation is
        // that the kernel is always in HWOI format, with the above code.
        mhlo::ReverseOp filter = rewriter.create<mhlo::ReverseOp>(
            conv_op.getLoc(), reverse_filter_in, rewriter.getI64TensorAttr({0, 1}));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    		for routeIndex, routePrefix := range matchHTTPRoutes {
    			for rIndex := routeIndex + 1; rIndex < len(matchHTTPRoutes); rIndex++ {
    				// exclude the duplicate-match cases which have been validated above
    				if strings.Compare(matchHTTPRoutes[rIndex].Prefix, routePrefix.Prefix) == 0 {
    					continue
    				}
    				// Validate former prefix match does not cover the latter one.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/asm7.go

    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

    before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version)....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
Back to top