Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for addSources (0.14 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild/kotlin/tasks/ParameterNamesIndex.kt

            JavaProjectBuilder(OrderedClassLibraryBuilder().apply { appendClassLoader(loader) })
    
        private
        fun JavaProjectBuilder.sequenceOfJavaSourcesFrom(sources: Set<File>) =
            sources.asSequence().mapNotNull { addSource(it) }
    
        private
        fun isolatedClassLoaderFor(classpath: Set<File>) =
            classLoaderFactory.createIsolatedClassLoader(identityPath.path, DefaultClassPath.of(classpath)) as URLClassLoader
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/process/internal/AbstractWorkerProcessIntegrationSpec.groovy

            def classesDir = tmpDir.createDir("classes/$className")
            def compilationUnit = new CompilationUnit(new GroovyClassLoader(getClass().classLoader))
            compilationUnit.addSource(className, classText)
    
            def configuration = new CompilerConfiguration()
            configuration.setTargetDirectory(classesDir)
    
            compilationUnit.setConfiguration(configuration)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/log/slog/text_handler.go

    //
    // If the Record's level is zero, the level is omitted.
    // Otherwise, the key is "level"
    // and the value of [Level.String] is output.
    //
    // If the AddSource option is set and source information is available,
    // the key is "source" and the value is output as FILE:LINE.
    //
    // The message's key is "msg".
    //
    // To modify these or other attributes, or remove them from the output, use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. pkg/config/analysis/local/analyze_test.go

    }
    
    func TestAddInMemorySource(t *testing.T) {
    	g := NewWithT(t)
    
    	sa := NewSourceAnalyzer(blankCombinedAnalyzer, "", "", nil)
    
    	src := model.NewFakeStore()
    	sa.AddSource(dfCache{ConfigStore: src})
    	assert.Equal(t, sa.meshCfg, mesh.DefaultMeshConfig()) // Base default meshcfg
    	g.Expect(sa.meshNetworks.Networks).To(HaveLen(0))
    	g.Expect(sa.stores).To(HaveLen(1))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/log/slog/json_handler.go

    // and the value is output as with json.Marshal.
    //
    // If the Record's level is zero, the level is omitted.
    // Otherwise, the key is "level"
    // and the value of [Level.String] is output.
    //
    // If the AddSource option is set and source information is available,
    // the key is "source", and the value is a record of type [Source].
    //
    // The message's key is "msg".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:18:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top