Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,145 for SIMPLE (0.21 sec)

  1. platforms/documentation/docs/src/snippets/wrapper/simple/groovy/settings.gradle

    rootProject.name = 'simple'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 28 bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/containingDeclarationProvider/FirIdeNormalAnalysisSourceModuleContainingModuleByFileTestGenerated.java

      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
        runTest("analysis/analysis-api/testData/components/containingDeclarationProvider/containingModuleByFile/simple.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 16:00:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/containingDeclarationProvider/FirIdeDependentAnalysisSourceModuleContainingModuleByFileTestGenerated.java

      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
        runTest("analysis/analysis-api/testData/components/containingDeclarationProvider/containingModuleByFile/simple.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 16:00:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/containingDeclarationProvider/FirStandaloneNormalAnalysisSourceModuleContainingModuleByFileTestGenerated.java

      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
        runTest("analysis/analysis-api/testData/components/containingDeclarationProvider/containingModuleByFile/simple.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 16:00:27 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/files/fileCollections/groovy/build.gradle

    import java.nio.file.Paths
    
    // tag::simple-params[]
    FileCollection collection = layout.files('src/file1.txt',
                                      new File('src/file2.txt'),
                                      ['src/file3.csv', 'src/file4.csv'],
                                      Paths.get('src', 'file5.txt'))
    // end::simple-params[]
    
    file('src').mkdirs()
    file('src/dir1').mkdirs()
    file('src/file1.txt').mkdirs()
    file('src2').mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. 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)
Back to top