Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,385 for Sarker (0.13 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveReferenceTest.kt

            val marker = caret.fullTag
            val contexts: List<ResolveTestCaseContext<KtReference?>> = findReferencesAtCaret(file, caret.offset).map { reference ->
                ResolveTestCaseContext(element = reference, context = reference.element, marker = marker)
            }
    
            contexts.ifEmpty {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:01 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/HashSetCodec.kt

                return container
            }
            container.add(element)
        }
        return container
    }
    
    
    private
    object CircularReferenceMarker {
    
        val INSTANCE: Any = Marker.INSTANCE
    
        private
        enum class Marker {
            INSTANCE
        }
    }
    
    
    private
    fun Class<*>.overridesHashCode(): Boolean =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/installation-beacon/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Marker class file used to locate the Gradle distribution base directory"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:54:46 UTC 2023
    - 192 bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/BuildScriptChangesContinuousBuildIntegrationTest.groovy

            given:
            def markerFile = file("input/marker")
            markerFile.text = "original"
    
            file(buildFileName) << """
                tasks.register("myTask") {
                  ${variableDefinition} inputFile = file("input/marker")
                  inputs.files(inputFile)
                  outputs.files("build/marker")
                  doLast {
                    println("value: " + inputFile.${readTextMethod})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/list.go

    	}
    }
    
    func (b *Item) printMarkdown(buf *bytes.Buffer, s mdState) {
    	var marker string
    	if s.bullet == '.' || s.bullet == ')' {
    		marker = fmt.Sprintf("%d%c ", s.num, s.bullet)
    	} else {
    		marker = fmt.Sprintf("%c ", s.bullet)
    	}
    	marker = strings.Repeat(" ", b.width-len(marker)) + marker
    	s.prefix1 = s.prefix + marker
    	s.prefix += strings.Repeat(" ", len(marker))
    	printMarkdownBlocks(b.Blocks, buf, s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool.go

    func (z *erasureServerPools) listObjectsGeneric(ctx context.Context, bucket, prefix, marker, delimiter string, maxKeys int, v1 bool) (loi ListObjectsInfo, err error) {
    	opts := listPathOptions{
    		V1:          v1,
    		Bucket:      bucket,
    		Prefix:      prefix,
    		Separator:   delimiter,
    		Limit:       maxKeysPlusOne(maxKeys, marker != ""),
    		Marker:      marker,
    		InclDeleted: false,
    		AskDisks:    globalAPIConfig.getListQuorum(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  7. src/structs/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package structs defines marker types that can be used as struct fields
    // to modify the properties of a struct.
    //
    // By convention, a marker type should be used as the type of a field
    // named "_", placed at the beginning of a struct type definition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 431 bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/ExternalDependencyInstrumentingArtifactTransform.java

            // We simulate fan-in behaviour:
            // We expect that a transform before this one outputs three artifacts: 1. analysis metadata, 2. the original file and 3. instrumentation marker file.
            // So if the input is analysis metadata we use it and create instrumented artifact, otherwise it's original artifact and we output that.
            File input = getInput().get().getAsFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

            def publication = new MavenNormalizedPublication("pub-name", projectIdentity, "pom", createPomFile(projectIdentity, null, marker), null, emptySet())
    
            and:
            publisher.publish(publication, repository)
    
            then:
            delegate.publish(publication, repository)
    
            where:
            marker << [false, true]
        }
    
        def "validates project coordinates"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/MetaDataParser.java

         */
        String GRADLE_METADATA_MARKER = "do-not-remove: published-with-gradle-metadata";
        /**
         * If the following marker is found in a `pom` file, Gradle (version 6.0 or higher)
         * will look for a `module` file to use it instead of the `pom` file.
         * This marker was introduced to allow library authors to publish Gradle Module Metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top