Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,385 for Sarker (0.83 sec)

  1. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/MavenBuildTimestampTest.java

            String formattedTimestamp = timestamp.formattedTimestamp();
            assertTrue(formattedTimestamp.endsWith("Z"), "We expect the UTC marker at the end of the timestamp.");
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowParameters.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.flow;
    
    import org.gradle.api.Incubating;
    
    /**
     * Marker interface for {@link FlowAction dataflow action} parameters.
     *
     * <p>
     * Parameter types should be interfaces, only declaring getters for {@link org.gradle.api.provider.Property}-like objects.
     * Example:
     * </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:51:20 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. src/go/doc/testdata/a0.go

    /* NOTE(bar): 4 of 4 */
    // - this is the last line of note 4
    //
    //
    
    // NOTE(bam): This note which contains a (parenthesized) subphrase
    //            must appear in its entirety.
    
    // NOTE(xxx) The ':' after the marker and uid is optional.
    
    // NOTE(): NO uid - should not show up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/RedirectingGradleMetadataModuleMetadataSource.java

    /**
     * A module metadata source which is a pure performance optimization. Because today in the wild there
     * are very few Gradle metadata sources, this source will first try to get a POM file (or an Ivy file)
     * and if it finds a marker in the POM (Ivy), it will use Gradle metadata instead.
     *
     * It also means that we're going to pay a small price if Gradle metadata is present: we would fetch
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/file/BuildLayoutIntegrationTest.groovy

            outputContains("settings source file: " + buildB.settingsFile.absolutePath + ".")
        }
    
        def "locations are as expected in buildSrc settings"() {
            settingsFile """
            // just a marker file
            """
    
            def buildSrcDir = file("buildSrc")
            def buildSrcSettingsFile = buildSrcDir.file("settings.gradle")
            groovyFile(buildSrcSettingsFile, """
                ${printLocations()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpPluginRepository.groovy

            def pluginMarker = module(pluginId, pluginId + PLUGIN_MARKER_SUFFIX, pluginVersion)
            server.expect(pluginMarker.pomPath, ["GET"], new HttpServer.ActionSupport("plugin marker pom") {
                void handle(HttpServletRequest request, HttpServletResponse response) {
                    ConfigureUtil.configure(markerQueryConfigurer, response)
                }
            })
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. pkg/kube/namespace/filter.go

    	for _, h := range d.handlers {
    		h(added, removed)
    	}
    }
    
    func (d *discoveryNamespacesFilter) Filter(obj any) bool {
    	// When an object is deleted, obj could be a DeletionFinalStateUnknown marker item.
    	ns, ok := extractObjectNamespace(obj)
    	if !ok {
    		return false
    	}
    	if ns == "" {
    		// Cluster scoped resources. Always included
    		return true
    	}
    
    	d.lock.RLock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

         * TransformReplacer throws upon opening a multi-release JAR without the marker resource.
         */
        public enum MarkerResource {
            // The transformed marker resource is an empty file to reduce archive size in the most common case.
            TRANSFORMED(new byte[0]),
            // Not transformed marker resource is a 1-byte file with a single "N" symbol.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

     *
     * Mandatory platform components must be implemented by a platform to fully support the Analysis API in the desired environment. A few
     * platform components are optional, signified by [KotlinOptionalPlatformComponent]. As a marker interface, [KotlinPlatformComponent]
     * makes it easy to find all platform components to implement.
     *
     * The Platform Interface provides a number of default and base implementations which may be specified or extended by a platform
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseTestConfigurationsWithExternalDependenciesIntegrationTest.groovy

                    maven { url "${mavenRepo.uri}" }
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "dependencies in main source set dependency configurations are not marked with test classpath attribute"() {
            given:
            buildFile << """
                dependencies {
                    implementation 'org:lib:1.0'
                }
            """
    
            when:
            run 'eclipse'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top