Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 162 for Element (0.19 sec)

  1. src/text/template/exec_test.go

    	W0     W
    	W1, W2 *W
    	// Slices
    	SI      []int
    	SICap   []int
    	SIEmpty []int
    	SB      []bool
    	// Arrays
    	AI [3]int
    	// Maps
    	MSI      map[string]int
    	MSIone   map[string]int // one element, for deterministic output
    	MSIEmpty map[string]int
    	MXI      map[any]int
    	MII      map[int]int
    	MI32S    map[int32]string
    	MI64S    map[int64]string
    	MUI32S   map[uint32]string
    	MUI64S   map[uint64]string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Each nested input in the iterable is assigned a name, which by default is the dollar sign followed by the index in the iterable, e.g. `$2`.
    If an element of the iterable implements `link:{javadocPath}/org/gradle/api/Named.html[Named]`, then the name is used as property name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/math_grad.cc

      // If the input contains a zero, the division is impossible but
      // if we take the calculation that gave the first gradient
      // (3 * 5 * 6)/3 is equal to 5 * 6
      // the trick will be to cumprod the elements on the axis without
      // the element at the current position (3 in the example above).
      // We will take as example:
      // [
      //   [
      //     [3.0, 4.0],
      //     [5.0, 6.0],
      //     [7.0, 8.0]
      //   ],
      //   [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/MapsTest.java

          throws Exception {
        // Only start measuring table size after the first element inserted, to
        // deal with empty-map optimization.
        map1.put(0, null);
    
        int initialBuckets = bucketsOf(map1);
    
        for (int i = 1; i < size; i++) {
          map1.put(i, null);
        }
        assertWithMessage("table size after adding " + size + " elements")
            .that(bucketsOf(map1))
            .isEqualTo(initialBuckets);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    the<SourceSetContainer>()["main"].srcDir("src/core/java")
    ----
    
    The snippet above also demonstrates one way of configuring the elements of a project extension that is a container.
    
    ==== Elements in project-extension containers
    
    Container-based project extensions, such as `SourceSetContainer`, also allow you to configure the elements held by them.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. internal/bucket/lifecycle/lifecycle_test.go

    		                          </Rule>
    		                          </LifecycleConfiguration>`,
    			expectedParsingErr:    nil,
    			expectedValidationErr: nil,
    		},
    		{ // Using ExpiredObjectAllVersions element with an object locked bucket
    			inputConfig: `<LifecycleConfiguration>
                                            <Rule>
                                              <ID>ExpiredObjectAllVersions with object locking</ID>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

            --invalid-tag-background-color: #ffe6e6;
            --invalid-tag-text-color: #000000;
        }
    }
    /*
     * Styles for individual HTML elements.
     *
     * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular
     * HTML element throughout the page.
     */
    body {
        background-color:var(--body-background-color);
        color:var(--body-text-color);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      func.return %0 : tensor<?x?x?x10xf32>
    }
    
    // Verify SpaceToBatchND with input tensor of element type f16. This test case is derived from 'fourdim_space_to_batch_nd'. It checks the output
    // tensor shape and element type in a few lines in the resulting lowering.
    // CHECK-LABEL: space_to_batch_nd_element_type_f16
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/types.go

    	//
    	// Equality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1].
    	// Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:
    	//   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
    	//     non-intersecting elements in `Y` are appended, retaining their partial order.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Referencing tasks and domain objects by `"name"()` in Kotlin DSL
    
    In Kotlin DSL, it is possible to reference a task or other domain object by its name using the `"name"()` notation.
    
    There are several ways to look up an element in a container by name:
    ```
    tasks {
        "wrapper"() // 1 - returns TaskProvider<Task>
        "wrapper"(Wrapper::class) // 2 - returns TaskProvider<Wrapper>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top