Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 107 for addKind (0.26 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ====
    
    === Blackbox integration testing
    
    For integration tests, you have the option to define the test set itself as additional module.
    You do this similar to how you turn your main sources into a module:
    by adding a `module-info.java` file to the corresponding source set (e.g. `integrationTests/java/module-info.java`).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. src/time/time.go

    // ago that all the times we care about will be positive, and then round
    // to zero and round down coincide. These presentation routines already
    // have to add the zone offset, so adding the translation to the
    // alternate epoch is cheap. For example, having a non-negative time t
    // means that we can write
    //
    //	sec = t % 60
    //
    // instead of
    //
    //	sec = t % 60
    //	if sec < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. configure.py

        question: optional string for how to ask for user input.
        yes_reply: optional string for reply when feature is enabled.
        no_reply: optional string for reply when feature is disabled.
        bazel_config_name: adding config to .bazelrc instead of action_env.
      """
      var = int(
          get_var(environ_cp, var_name, query_item, enabled_by_default, question,
                  yes_reply, no_reply))
    
      if not bazel_config_name:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  4. src/cmd/link/internal/ppc64/asm.go

    	default:
    		return 0, false // Not an abi func
    	}
    	n, e := strconv.Atoi(s[2])
    	if e != nil || n < minReg || n > 31 || r.Add() != 0 {
    		return 0, false // Invalid register number, or non-zero addend. Not an abi func.
    	}
    
    	// tname is a valid relocation to an ABI defined register save/restore function. Re-relocate
    	// them to a go version of these functions in runtime/asm_ppc64x.s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais2.go

    	// N*8 bits of a word, and then bitwise inverts the result.
    	// That is, the text sequence A B C (hex 41 42 43)
    	// encodes as ^uint64(0x42_43_44).
    	// LMS-substrings can never start or end with 0xFF.
    	// Adding 1 ensures the encoded byte sequence never
    	// starts or ends with 0x00, so that present bytes can be
    	// distinguished from zero-padding in the top bits,
    	// so the length need not be separately encoded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Synchronized.java

     *
     * @author Mike Bostock
     * @author Jared Levy
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    /*
     * I have decided not to bother adding @ParametricNullness annotations in this class. Adding them is
     * a lot of busy work, and the annotation matters only when the APIs to be annotated are visible to
     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Synchronized.java

     *
     * @author Mike Bostock
     * @author Jared Levy
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    /*
     * I have decided not to bother adding @ParametricNullness annotations in this class. Adding them is
     * a lot of busy work, and the annotation matters only when the APIs to be annotated are visible to
     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  8. pkg/controller/endpoint/endpoints_controller_test.go

    			client, c := newFakeController(tCtx, 0*time.Second)
    
    			err := c.podStore.Add(tc.pod)
    			if err != nil {
    				t.Errorf("Unexpected error adding pod %v", err)
    			}
    			err = c.serviceStore.Add(tc.service)
    			if err != nil {
    				t.Errorf("Unexpected error adding service %v", err)
    			}
    			err = c.syncService(tCtx, fmt.Sprintf("%s/%s", ns, tc.service.Name))
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

            {input_rank, 2}, rewriter.getIntegerType(64));
        auto zero_i64 = rewriter.create<ConstOp>(
            loc, GetScalarOfType(rewriter.getIntegerType(64), 0));
        // Extends paddings to all dimensions of input by adding 0s to non-block
        // dimensions.
        auto full_paddings = rewriter.create<ConcatV2Op>(
            loc, full_paddings_type, full_paddings_list, zero_i64);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	scenarios := []struct {
    		name                string
    		allowWatchBookmarks bool
    		sendInitialEvents   *bool
    		resourceVersion     string
    		// useCurrentRV if set gets the current RV from the storage
    		// after adding the initial pods which is then used to establish a new watch request
    		useCurrentRV bool
    
    		initialPods                []*example.Pod
    		podsAfterEstablishingWatch []*example.Pod
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top