Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 530 for SIMPLE (0.15 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

        }
    
        protected TypeOf() {
            this.type = captureTypeArgument();
        }
    
        /**
         * Queries whether this object represents a simple (non-composite) type, not an array and not a generic type.
         *
         * @return true if this object represents a simple type.
         */
        public boolean isSimple() {
            return type.isClass()
                && !rawClass().isArray();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationIndex.kt

        /**
         * Allows quickly finding [KtClassOrObject]s which have a given simple name as a supertype. The map may contain local classes as well.
         */
        internal val classesBySupertypeName: MutableMap<Name, MutableSet<KtClassOrObject>> = mutableMapOf()
    
        /**
         * Maps a simple name `N` to type aliases `A` in whose definition `N` occurs as the topmost user type, which is a prerequisite for other
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  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. pilot/pkg/networking/core/cluster_tls_test.go

    					t.Fatalf("expected alpn list %v; got %v", util.ALPNInMeshH2WithMxc, got)
    				}
    			},
    		},
    		{
    			name:                       "user specified simple tls",
    			mtlsCtx:                    userSupplied,
    			discoveryType:              cluster.Cluster_EDS,
    			tls:                        simpleTLSSettingsWithCerts,
    			expectTransportSocket:      true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/destinationrule/ca-certificates.go

    // CaCertificateAnalyzer checks if CaCertificate is set in case mode is SIMPLE/MUTUAL
    type CaCertificateAnalyzer struct{}
    
    var _ analysis.Analyzer = &CaCertificateAnalyzer{}
    
    func (c *CaCertificateAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:        "destinationrule.CaCertificateAnalyzer",
    		Description: "Checks if caCertificates is set when TLS mode is SIMPLE/MUTUAL",
    		Inputs: []config.GroupVersionKind{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. 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)
  8. docs/en/docs/tutorial/dependencies/sub-dependencies.md

    Apart from all the fancy words used here, the **Dependency Injection** system is quite simple.
    
    Just functions that look the same as the *path operation functions*.
    
    But still, it is very powerful, and allows you to declare arbitrarily deeply nested dependency "graphs" (trees).
    
    !!! tip
        All this might not seem as useful with these simple examples.
    
        But you will see how useful it is in the chapters about **security**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/scopeProvider/Fe10IdeNormalAnalysisSourceModulePackageScopeTestGenerated.java

      public void testLibrary() {
        runTest("analysis/analysis-api/testData/components/scopeProvider/packageScope/library.kt");
      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
        runTest("analysis/analysis-api/testData/components/scopeProvider/packageScope/simple.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 23 10:55:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/scopeProvider/FirIdeNormalAnalysisSourceModulePackageScopeTestGenerated.java

      public void testLibrary() {
        runTest("analysis/analysis-api/testData/components/scopeProvider/packageScope/library.kt");
      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
        runTest("analysis/analysis-api/testData/components/scopeProvider/packageScope/simple.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 23 10:55:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top