Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 134 for conventions (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

            exec().groovy               | "buildSrc/src/main/groovy/test-convention-plugin.gradle"
            javaexec().groovy           | "buildSrc/src/main/groovy/test-convention-plugin.gradle"
            processBuilder().groovy     | "buildSrc/src/main/groovy/test-convention-plugin.gradle"
            stringArrayExecute().groovy | "buildSrc/src/main/groovy/test-convention-plugin.gradle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CheckstylePlugin.java

            taskMapping.map("maxWarnings", (Callable<Integer>) () -> extension.getMaxWarnings());
            task.getConfigDirectory().convention(extension.getConfigDirectory());
            task.getEnableExternalDtdLoad().convention(extension.getEnableExternalDtdLoad());
            task.getIgnoreFailuresProperty().convention(project.provider(() -> extension.isIgnoreFailures()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/provider/HasMultipleValues.java

        /**
         * Specifies the value to use as the convention for this property. The convention is used when no value has been set for this property.
         *
         * @param elements The elements, or {@code null} when the convention is that the property has no value.
         * @return this
         * @since 5.1
         */
        HasMultipleValues<T> convention(@Nullable Iterable<? extends T> elements);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/BuildInitPlugin.java

                    initBuild.getUseDefaults().convention(false);
                    initBuild.getInsecureProtocol().convention(InsecureProtocolOption.WARN);
                    initBuild.getAllowFileOverwrite().convention(false);
                    initBuild.getComments().convention(getCommentsProperty(project).orElse(true));
                });
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:43:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaDebugOptions.java

            this.enabled = objectFactory.property(Boolean.class).convention(false);
            this.host = objectFactory.property(String.class);
            this.port = objectFactory.property(Integer.class).convention(5005);
            this.server = objectFactory.property(Boolean.class).convention(true);
            this.suspend = objectFactory.property(Boolean.class).convention(true);
        }
    
        public DefaultJavaDebugOptions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileCollection.java

         */
        @Incubating
        ConfigurableFileCollection convention(Iterable<?> paths);
    
        /**
         * Specifies the value to use as the convention (default value) to be used when resolving this file collection,
         * if no source paths are explicitly defined.
         *
         * If, at the time this method is invoked, the set of source paths for this collection is empty, the convention will be used
         * to resolve this file collection.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top