Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 582 for SIMPLE (0.15 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

     * <p>
     * If a child's simple name already contains the name of its parent, the two prefixes are collapsed to keep names short.
     * For example, an elements with the name segments <code>root:impl:impl-simple</code> would initially get the name
     * <code>root-impl-impl-simple</code> and would then be shortened to <code>root-impl-simple</code>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/dependencies/index.md

    * Share database connections.
    * Enforce security, authentication, role requirements, etc.
    * And many other things...
    
    All these, while minimizing code repetition.
    
    ## First Steps
    
    Let's see a very simple example. It will be so simple that it is not very useful, for now.
    
    But this way we can focus on how the **Dependency Injection** system works.
    
    ### Create a dependency, or "dependable"
    
    Let's first focus on the dependency.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/IncludeDirectivesSerializer.java

            macroFunctionListSerializer.write(encoder, value.getAllMacroFunctions());
        }
    
        private static class ExpressionSerializer implements Serializer<Expression> {
            private static final byte SIMPLE = (byte) 1;
            private static final byte COMPLEX_ONE_ARG = (byte) 2;
            private static final byte COMPLEX_MULTIPLE_ARGS = (byte) 3;
            private static final byte EMPTY_TOKENS = (byte) 4;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/analyzers_test.go

    	},
    	{
    		name: "destinationrule with no cacert, simple at portlevel",
    		inputFiles: []string{
    			"testdata/destinationrule-simple-port.yaml",
    		},
    		analyzer: &destinationrule.CaCertificateAnalyzer{},
    		expected: []message{
    			{msg.NoServerCertificateVerificationPortLevel, "DestinationRule db-tls"},
    		},
    	},
    	{
    		name: "destinationrule with credentialname, simple at destinationlevel, no workloadSelector",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    You can obtain an instance of `ObjectFactory` using the `project.objects` property.
    Here's a simple example demonstrating how to use `ObjectFactory` to create a property and set its value:
    
    ====
    include::sample[dir="snippets/providers/services/kotlin",files="build.gradle.kts[tags=object-factory]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. tests/integration/ambient/waypoint_test.go

    metadata:
      name: disable-hbone
    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: simple-http-waypoint
      environmentVariables:
        ISTIO_META_DISABLE_HBONE_SEND: "true"
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: simple-http-waypoint
      namespace: {{.Namespace}}
      labels:
        istio.io/dataplane-mode: ambient
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    			decoded: nil,
    		},
    		{
    			example: hex("f7"),
    			reject:  "only simple values false, true, and null have a clear analog",
    			fixme:   "the undefined simple value should not successfully decode as nil",
    		},
    		{
    			example: hex("f0"),
    			reject:  "only simple values false, true, and null have a clear analog",
    			fixme:   "simple values other than false, true, and null should be rejected",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.groovy

                sources << source
                return source
            }
        }
    
        /**
         * Fixture for capturing simple test class requirements.  Note that this class should be used only for simple test classes
         * and should not be enhanced to capture complex test classes with arbitrary features.  Complex test classes should be captured
         * with a raw {@link TestSource} fixture.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 14:54:49 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation_test.go

    func TestValidateLabels(t *testing.T) {
    	successCases := []map[string]string{
    		{"simple": "bar"},
    		{"now-with-dashes": "bar"},
    		{"1-starts-with-num": "bar"},
    		{"1234": "bar"},
    		{"simple/simple": "bar"},
    		{"now-with-dashes/simple": "bar"},
    		{"now-with-dashes/now-with-dashes": "bar"},
    		{"now.with.dots/simple": "bar"},
    		{"now-with.dashes-and.dots/simple": "bar"},
    		{"1-num.2-num/3-num": "bar"},
    		{"1234/5678": "bar"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    See the <<#sec:swift_test_filtering_simple_name_pattern,Simple name pattern>> section below for more information about valid filtering pattern.
    
    The following section looks at the specific cases of simple class/method names.
    
    [[sec:swift_test_filtering_simple_name_pattern]]
    === Simple name pattern
    
    Gradle support simple class name, or a class name + method name test filtering.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top