Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 325 for Sarker (0.12 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/AdditionalDataSpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    /**
     * Marker interface for additional data that can be attached to a {@link Problem}.
     */
    public interface AdditionalDataSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 791 bytes
    - Viewed (0)
  2. cmd/metacache-set.go

    }
    
    // findFirstPart will find the part with 0 being the first that corresponds to the marker in the options.
    // io.ErrUnexpectedEOF is returned if the place containing the marker hasn't been scanned yet.
    // io.EOF indicates the marker is beyond the end of the stream and does not exist.
    func (o *listPathOptions) findFirstPart(fi FileInfo) (int, error) {
    	search := o.Marker
    	if search == "" {
    		search = o.Prefix
    	}
    	if search == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. src/go/doc/reader.go

    			}
    		}
    	}
    	return nil
    }
    
    var (
    	noteMarker    = `([A-Z][A-Z]+)\(([^)]+)\):?`                // MARKER(uid), MARKER at least 2 chars, uid at least 1 char
    	noteMarkerRx  = lazyregexp.New(`^[ \t]*` + noteMarker)      // MARKER(uid) at text start
    	noteCommentRx = lazyregexp.New(`^/[/*][ \t]*` + noteMarker) // MARKER(uid) at comment start
    )
    
    // clean replaces each sequence of space, \r, or \t characters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

            then: "suitable JDK gets auto-provisioned"
            javaClassFile("Foo.class").assertExists()
            assertJdkWasDownloaded()
    
            when: "the marker file of the auto-provisioned JDK is deleted, making the JDK not detectable"
            //delete marker file to make the previously downloaded installation undetectable
            def markerFile = findMarkerFile(executer.gradleUserHomeDir.file("jdks"))
            markerFile.delete()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. cmd/api-response.go

    	// is true), you can use the key name in this field as marker in the subsequent
    	// request to get next set of objects. Server lists objects in alphabetical
    	// order Note: This element is returned only if you have delimiter request parameter
    	// specified. If response does not include the NextMaker and it is truncated,
    	// you can use the value of the last Key in the response as the marker in the
    	// subsequent request to get the next set of object keys.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/markers/KtPossibleMemberSymbol.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.symbols.markers
    
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbol
    
    /**
     * A marker interface for symbols which could potentially be members of some class.
     *
     * @see org.jetbrains.kotlin.analysis.api.components.KaTypeProviderMixIn.getDispatchReceiverType
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 636 bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/exec/BuildExecutor.java

     */
    
    package org.gradle.launcher.exec;
    
    import org.gradle.initialization.BuildRequestContext;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Marker interface that can be used to obtain the action executor responsible for actually running builds.
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top