Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for conventions (0.2 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinApplicationInitIntegrationTest.groovy

            then:
            subprojectDir.file("build.gradle.kts").assertExists()
    
            and:
            targetDir.file("/buildSrc/src/main/kotlin/buildlogic.kotlin-common-conventions.gradle.kts").assertContents(containsString("junit.jupiter"))
    
            when:
            run("build")
    
            then:
            assertTestPassed("org.example.app.MessageUtilsTest", "testGetMessage")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/test/tck-jsr166e/AtomicDoubleTest.java?revision=1.8
     * (Modified to adapt to guava coding conventions)
     */
    
    package com.google.common.util.concurrent;
    
    /** Unit test for {@link AtomicDouble}. */
    public class AtomicDoubleTest extends JSR166TestCase {
    
      private static final double[] VALUES = {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. hack/golangci-hints.yaml

        - linters:
            - forbidigo
          text: should not be used because managedFields was removed
          path: _test.go$
    
        # The Kubernetes naming convention for conversion functions uses underscores
        # and intentionally deviates from normal Go conventions to make those function
        # names more readable. Same for SetDefaults_*.
        #
        # https://github.com/kubernetes/kubernetes/issues/117288#issuecomment-1507028627
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. hack/golangci-strict.yaml

        - linters:
            - forbidigo
          text: should not be used because managedFields was removed
          path: _test.go$
    
        # The Kubernetes naming convention for conversion functions uses underscores
        # and intentionally deviates from normal Go conventions to make those function
        # names more readable. Same for SetDefaults_*.
        #
        # https://github.com/kubernetes/kubernetes/issues/117288#issuecomment-1507028627
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/plugin/software/internal/Convention.java

     * limitations under the License.
     */
    
    package org.gradle.plugin.software.internal;
    
    /**
     * Represents a reusable convention declared for a software type.
     *
     * @param <T> the type of the receiver of the convention
     *
     * @since 8.9
     */
    public interface Convention<T extends ConventionReceiver> {
        void apply(T receiver);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 904 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/conversions.go

    	// given a type explicitly by a constant declaration or conversion,...".
    	if isUntyped(x.typ) {
    		final := T
    		// - For conversions to interfaces, except for untyped nil arguments
    		//   and isTypes2, use the argument's default type.
    		// - For conversions of untyped constants to non-constant types, also
    		//   use the default type (e.g., []byte("foo") should report string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. src/go/types/conversions.go

    // Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
    // Source: ../../cmd/compile/internal/types2/conversions.go
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements typechecking of conversions.
    
    package types
    
    import (
    	"go/constant"
    	. "internal/types/errors"
    	"unicode"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/ztunnel/configdump/connections.go

    		if filter.Direction != "outbound" {
    			for _, c := range wl.Connections.Inbound {
    				fmt.Fprintf(w, "%v\tInbound\t%v\t%v\t%v\n", name, lookupIP(c.ActualDst), lookupIP(c.Src), c.OriginalDst)
    			}
    		}
    		if filter.Direction != "inbound" {
    			for _, c := range wl.Connections.Outbound {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         * provider's value will be returned as the value of the property (when queried).
         *
         * <p>
         * The property's convention tracks the convention provider. Whenever the convention's actual value is
         * needed, the convention provider will be queried anew.
         * </p>
         *
         * <p>
         * This method can't be used to specify that a property does not have a default value. Passing in a {@code null}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderConventionMappingIntegrationTest.groovy

                    conventionMapping.map("foo", { project.objects.mapProperty(String, String).convention([foobar: "foobar"]) })
                    foo.convention([other: "other"])
                }
            """
    
            expect:
            succeeds 'mytask'
        }
    
        def "convention mapping can be used with ListProperty"() {
            buildFile << """
                abstract class MyTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:27:37 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top