Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1131 - 1140 of 3,033 for During (0.06 sec)

  1. build-logic-commons/publishing/src/main/kotlin/gradlebuild/pluginpublish/extension/PluginPublishExtension.kt

    
    abstract class PluginPublishExtension(
        private val gradlePlugin: GradlePluginDevelopmentExtension
    ) {
    
        fun bundledGradlePlugin(name: String, shortDescription: String, pluginId: String, pluginClass: String) {
            gradlePlugin.plugins {
                register(name) {
                    id = pluginId
                    displayName = shortDescription
                    description = shortDescription
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Aug 08 14:54:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DfsImpl.java

         */
        @Override
        public DfsReferralData resolve ( CIFSContext tf, String domain, String root, String path ) throws SmbAuthException {
            return resolve(tf, domain, root, path, 5);
        }
    
    
        private DfsReferralData resolve ( CIFSContext tf, String domain, String root, String path, int depthLimit ) throws SmbAuthException {
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/admin/dict/MappingTests.java

        private static final String NAME_PREFIX = "mappingTest_";
        private static final String API_PATH = "/api/admin/dict/mapping";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
        private static final String DICT_TYPE = "mapping";
    
        private static final String KEY_PROPERTY = "inputs";
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. internal/logger/console.go

    // Logger interface describes the methods that need to be implemented to satisfy the interface requirements.
    type Logger interface {
    	json(msg string, args ...interface{})
    	quiet(msg string, args ...interface{})
    	pretty(msg string, args ...interface{})
    }
    
    func consoleLog(console Logger, msg string, args ...interface{}) {
    	switch {
    	case jsonFlag:
    		// Strip escape control characters from json message
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jul 12 20:51:54 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. test-site/activator-launch-1.3.2.jar

    { private final String envURL; private final String envUser; private final String envPassword; private final String sysHost; private final String sysPort; private final String sysUser; private final String sysPassword; public final String envURL(); public final String envUser(); public final String envPassword(); public final String sysHost(); public final String sysPort(); public final String sysUser(); public final String sysPassword(); public void ProxyProperties(String, String, String, String,...
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        }
    
    
        @Override
        public String getRequestProperty ( String key ) {
            return this.connection.getRequestProperty(key);
        }
    
    
        @Override
        public Map<String, List<String>> getRequestProperties () {
            Map<String, List<String>> map = new HashMap<>();
            for ( Entry<String, List<String>> entry : this.requestProperties.entrySet() ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  7. cmd/config-encrypted_test.go

    			ddata, err := madmin.DecryptData(test.cred.String(), bytes.NewReader(test.edata))
    			if err != nil && test.success {
    				t.Errorf("Expected success, saw failure %v", err)
    			}
    			if err == nil && !test.success {
    				t.Error("Expected failure, saw success")
    			}
    			if test.success {
    				if !bytes.Equal(ddata, data) {
    					t.Errorf("Expected %s, got %s", string(data), string(ddata))
    				}
    			}
    		})
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jun 20 00:53:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultPathTranslator.java

    public class DefaultPathTranslator implements PathTranslator {
    
        @Override
        public String alignToBaseDirectory(String path, File basedir) {
            return alignToBaseDirectory(path, basedir != null ? basedir.toPath() : null);
        }
    
        @Override
        public String alignToBaseDirectory(String path, Path basedir) {
            String result = path;
    
            if (path != null && basedir != null) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. cmd/local-locker_test.go

    func TestLocalLockerUnlock(t *testing.T) {
    	const n = 1000
    	const m = 5
    	wResources := make([][m]string, n)
    	rResources := make([]string, n)
    	wUIDs := make([]string, n)
    	rUIDs := make([]string, 0, n*2)
    	l := newLocker()
    	ctx := context.Background()
    	quorum := 0
    	for i := range wResources {
    		names := [m]string{}
    		for j := range names {
    			names[j] = mustGetUUID()
    		}
    		uid := mustGetUUID()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 24 10:24:01 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. android/guava-testlib/test/com/google/common/testing/anotherpackage/SomeClassThatDoesNotUseNullable.java

    @SuppressWarnings("unused") // For use by NullPointerTester
    public class SomeClassThatDoesNotUseNullable {
    
      void packagePrivateButDoesNotCheckNull(String s) {}
    
      protected void protectedButDoesNotCheckNull(String s) {}
    
      public void publicButDoesNotCheckNull(String s) {}
    
      public static void staticButDoesNotCheckNull(String s) {}
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 1.1K bytes
    - Viewed (0)
Back to top