Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for myproduct (0.2 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/groovy/buildSrc/src/main/groovy/myproject.java-library-conventions.gradle

    Octavia Togami <******@****.***> 1704473262 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 116 bytes
    - Viewed (0)
  2. src/cmp/cmp_test.go

    		return cmp.Or(
    			strings.Compare(a.Customer, b.Customer),
    			strings.Compare(a.Product, b.Product),
    			cmp.Compare(b.Price, a.Price),
    		)
    	})
    	for _, order := range orders {
    		fmt.Printf("%s %s %.2f\n", order.Product, order.Customer, order.Price)
    	}
    
    	// Output:
    	// foo alice 2.00
    	// foo alice 1.00
    	// bar bob 3.00
    	// foo bob 4.00
    	// bar carol 1.00
    	// baz carol 4.00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/go/types/hilbert_test.go

    // by generating the constant elements of a Hilbert matrix H,
    // its inverse I, and the product P = H*I. The product should
    // be the identity matrix.
    package main
    
    func main() {
    	if !ok {
    		printProduct()
    		return
    	}
    	println("PASS")
    }
    
    `, n, out)
    	g.hilbert(n)
    	g.inverse(n)
    	g.product(n)
    	g.verify(n)
    	g.printProduct(n)
    	g.binomials(2*n - 1)
    	g.factorials(2*n - 1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/feature_request.md

    ---
    name: Feature request
    about: Suggest an idea to improve Istio
    
    ---
    (This is used to request new product features, please visit <https://github.com/istio/istio/discussions> for questions on using Istio)
    
    **Describe the feature request**
    
    **Describe alternatives you've considered**
    
    **Affected product area (please put an X in all that apply)**
    
    [ ] Ambient
    [ ] Docs
    [ ] Dual Stack
    [ ] Installation
    [ ] Networking
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:42:48 UTC 2024
    - 707 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/buildSrc/src/main/kotlin/myproject.java-library-conventions.gradle.kts

    Octavia Togami <******@****.***> 1704473262 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 120 bytes
    - Viewed (0)
  6. src/crypto/internal/boring/LICENSE

     * OF THE POSSIBILITY OF SUCH DAMAGE.
     * ====================================================================
     *
     * This product includes cryptographic software written by Eric Young
     * (******@****.***).  This product includes software written by Tim
     * Hudson (******@****.***).
     *
     */
    
     Original SSLeay License
     -----------------------
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example/app/build.gradle

            jvmTarget = '1.8'
        }
    }
    
    project.afterEvaluate {
        // Grab all build types and product flavors
        def buildTypes = android.buildTypes.collect { type ->
            type.name
        }
        def productFlavors = android.productFlavors.collect { flavor ->
            flavor.name
        }
        // When no product flavors defined, use empty
        if (!productFlavors) productFlavors.add('')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/bug_report.yml

      - type: checkboxes
        id: security-check
        attributes:
          label: Is this the right place to submit this?
          description: |-
            This is used to report product bugs:
            To report a security vulnerability, please visit <https://istio.io/about/security-vulnerabilities>.
            Any crashes are potentially security vulnerabilities and should be treated as such.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 15:17:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/app/build.gradle.kts

            }
        }
        kotlinOptions {
            jvmTarget = "1.8"
        }
    }
    
    project.afterEvaluate {
        // Grab all build types and product flavors
        val buildTypes = android.buildTypes.map { type ->
            type.name
        }
        // When no product flavors defined, use empty
        val productFlavors = android.productFlavors.map { flavor -> flavor.name }
            .takeIf { it.isNotEmpty() }
            ?: listOf("")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/python/testing.py

        real_parameters: All possible combinations of the parameters as list of
        dictionaries.
      """
      real_parameters = []
      for parameters in test_parameters:
        keys = parameters.keys()
        for curr in itertools.product(*parameters.values()):
          real_parameters.append(dict(zip(keys, curr)))
      return real_parameters
    
    
    def get_dir_size(path: str = '.') -> int:
      """Get the total size of files and sub-directories under the path.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top