Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 492 for prepending (0.19 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/versions/versions.go

    //	Lang("bad") = ""
    //	Lang("1.21") = ""
    func Lang(x string) string {
    	v := lang(stripGo(x))
    	if v == "" {
    		return ""
    	}
    	return x[:2+len(v)] // "go"+v without allocation
    }
    
    // Compare returns -1, 0, or +1 depending on whether
    // x < y, x == y, or x > y, interpreted as Go versions.
    // The versions x and y must begin with a "go" prefix: "go1.21" not "1.21".
    // Invalid versions, including the empty string, compare less than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. pkg/controller/controller_utils_test.go

    					Spec:       v1.PodSpec{NodeName: ""},
    					Status:     v1.PodStatus{Phase: v1.PodPending},
    				},
    				{
    					ObjectMeta: metav1.ObjectMeta{Name: "scheduledButPending"},
    					Spec:       v1.PodSpec{NodeName: "bar"},
    					Status:     v1.PodStatus{Phase: v1.PodPending},
    				},
    				{
    					ObjectMeta: metav1.ObjectMeta{Name: "unknownPhase"},
    					Spec:       v1.PodSpec{NodeName: "foo"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

      // Iterate through results of `cluster_func`. For output ops, look for
      // TPUPartitionedOutput ops.
      //
      // Iterate through operands of the terminator. If the preceding op is
      // XlaShardingOp, then the provided sharding configuration is added to the
      // tf_device.ClusterFunc as an attribute and the function as a result
      // attribute.
      for (auto result_and_retval :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/process/ShellScript.groovy

         * The resulting list can be used as an argument for the {@link ProcessBuilder} or Groovy's {@code execute} method.
         * The first element of the list is the command interpreter (sh or cmd depending on the platform).
         * The list also contains an absolute path to the script (which may contain spaces).
         *
         * @return the list of command line elements to start this script.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. tools/build-base-images.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script runs go tests in a package, but each test is run individually. This helps
    # isolate tests that are improperly depending on global state modification of other tests
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    set -ex
    
    toJson () {
            python3 -c '
    import sys, yaml, json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

        }
    
        /**
         * Returns the operation with the given display name. Fails when there is not exactly one such operation.
         *
         * @param displayNames candidate display names (may be different depending on the Gradle version under test)
         */
        Operation operation(String... displayNames) {
            def candidates = operations(displayNames)
            if (candidates.empty) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectCollection.java

                    return Cast.uncheckedCast(provider);
                }
                return null;
            }
    
            @Override
            public void putPending(String name, ProviderInternal<? extends T> provider) {
                delegate.putPending(name, provider);
            }
    
            @Override
            public void removePending(String name) {
                delegate.removePending(name);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/storage/eviction_test.go

    			}},
    			eviction:      &policy.Eviction{ObjectMeta: metav1.ObjectMeta{Name: "t2", Namespace: "default"}, DeleteOptions: metav1.NewDeleteOptions(0)},
    			expectError:   "",
    			podPhase:      api.PodPending,
    			expectDeleted: true,
    			podName:       "t2",
    		},
    		{
    			name: "matching pdbs with no disruptions allowed, pod succeeded",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

        Operation* input_op = input.getDefiningOp();
        auto input_tfr_type =
            signature.getFunctionType().getInputs()[operand.index()];
    
        // There are three cases for the preceding input_op:
    
        // 1. The preceding op can be a tfr.cast op, which will be fused to the
        // current op, so the result op has input with tensor type.
        if (auto cast_op = dyn_cast_or_null<CastOp>(input_op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/caclient/providers/mock/mockcaclient.go

    	}
    	cl.bundle = bundle
    
    	atomic.StoreUint64(&cl.SignInvokeCount, 0)
    	return &cl, nil
    }
    
    func (c *CAClient) Close() {}
    
    // CSRSign returns the certificate or errors depending on the settings.
    func (c *CAClient) CSRSign(csrPEM []byte, certValidTTLInSec int64) ([]string, error) {
    	atomic.AddUint64(&c.SignInvokeCount, 1)
    	signingCert, signingKey, certChain, rootCert := c.bundle.GetAll()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top