Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,385 for Sarker (0.17 sec)

  1. src/packaging/rpm/packaging.properties

    # Properties used to build to the RPM package
    #
    
    # Environment file
    packaging.env.file=/etc/sysconfig/fess
    
    # Default configuration directory and file to use in bin/plugin script
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=rpm
    
    # Custom header for package scripts
    packaging.scripts.header=
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 420 bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

    public class DefaultJdkCacheDirectory implements JdkCacheDirectory {
    
        private static final Logger LOGGER = LoggerFactory.getLogger(DefaultJdkCacheDirectory.class);
        /**
         * Marker file used by Gradle 8.8 and earlier to indicate that a JDK has been provisioned. This is a flaky marker, as it may appear
         * before the JDK is fully provisioned, causing faulty detection of the JDK. It is replaced by {@value #MARKER_FILE}.
         */
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/ClasspathElementTransformTest.groovy

                this.factoryMaker = factoryMaker
            }
    
            ClasspathElementTransformFactory createFactory(ClasspathBuilder builder, ClasspathWalker walker) {
                return factoryMaker.apply(builder, walker)
            }
    
            @Override
            String toString() {
                return super.toString().toLowerCase(Locale.ENGLISH)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. cmd/api-resources_test.go

    			prefix:       "photos/",
    			marker:       "test",
    			delimiter:    SlashSeparator,
    			maxKeys:      100,
    			encodingType: "gzip",
    		},
    		{
    			values: url.Values{
    				"prefix":        []string{"photos/"},
    				"marker":        []string{"test"},
    				"delimiter":     []string{SlashSeparator},
    				"encoding-type": []string{"gzip"},
    			},
    			prefix:       "photos/",
    			marker:       "test",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  5. src/image/jpeg/writer.go

    	}
    }
    
    // writeMarkerHeader writes the header for a marker with the given length.
    func (e *encoder) writeMarkerHeader(marker uint8, markerlen int) {
    	e.buf[0] = 0xff
    	e.buf[1] = marker
    	e.buf[2] = uint8(markerlen >> 8)
    	e.buf[3] = uint8(markerlen & 0xff)
    	e.write(e.buf[:4])
    }
    
    // writeDQT writes the Define Quantization Table marker.
    func (e *encoder) writeDQT() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

        def "detects no changes when no files are in the project"() {
            given:
            def markerFile = file("input/marker")
            buildFile << """
                task myTask {
                  def inputFile = file("input/marker")
                  inputs.files inputFile
                  outputs.files "build/marker"
                  doLast {
                    println "exists: " + inputFile.exists()
                  }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. internal/http/headers.go

    	// Reports number of drives currently healing
    	MinIOHealingDrives = "x-minio-healing-drives"
    
    	// Header indicates if the delete marker should be preserved by client
    	MinIOSourceDeleteMarker = "x-minio-source-deletemarker"
    
    	// Header indicates if the delete marker version needs to be purged.
    	MinIOSourceDeleteMarkerDelete = "x-minio-source-deletemarker-delete"
    
    	// Header indicates permanent delete replication status.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/types/FilterableBytecodeInterceptor.java

        /**
         * A marker interface that indicates that a class is used for bytecode upgrades.
         */
        interface BytecodeUpgradeInterceptor extends FilterableBytecodeInterceptor {
            @Override
            default BytecodeInterceptorType getType() {
                return BytecodeInterceptorType.BYTECODE_UPGRADE;
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:55:59 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/obj6_test.go

    			input_insns = append(input_insns, input_insn)
    			r.marker_to_input[marker] = append(r.marker_to_input[marker], normalize(input_insn))
    		}
    		for _, expected_insn := range strings.Split(parts[1], ";") {
    			r.marker_to_expected[marker] = append(r.marker_to_expected[marker], normalize(expected_insn))
    		}
    		marker++
    	}
    	r.input = "TEXT ·foo(SB),$0\n" + strings.Join(input_insns, "\n") + "\n"
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ThreadSafe.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.concurrent;
    
    /**
     * A marker interface to indicate that the implementing class is thread-safe.
     */
    public interface ThreadSafe {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 776 bytes
    - Viewed (0)
Back to top